|
@@ -2019,18 +2019,17 @@ if npc_QW['A113'] = 1: $stat_msg += '<br>You owe Vadim Bely <<belgangpay>> <b><b
|
|
|
|
|
|
!!------------------ Gadukino chores and such -------------------
|
|
|
if display_bb = 1:
|
|
|
- if boletus + bilberry > 0:
|
|
|
- if boletus + bilberry >= 10:
|
|
|
- $stat_msg +='<br><font color = Olive>You have a full basket. </font> '
|
|
|
+ if boletus + boletus_cooked + bilberry > 0:
|
|
|
+ $stat_msg += '<br> '
|
|
|
+ if boletus + boletus_cooked + bilberry >= 5:
|
|
|
+ $stat_msg +='<br><font color = Olive>Your basket is full and you cannot carry more. </font> '
|
|
|
else
|
|
|
- $stat_msg +='<br><font color = Olive>In Your basket: </font>'
|
|
|
+ $stat_msg +='<br><font color = Olive>Your basket is partially full. </font>'
|
|
|
end
|
|
|
- if hour > 6 and (month < 6 or month > 9) and boletus + bilberry > 0:
|
|
|
- boletus = 0 & bilberry = 0
|
|
|
- '<br>You throw away your mushrooms and berries.'
|
|
|
- end
|
|
|
- if boletus > 0:$stat_msg +='Mushrooms: <b><<boletus>></b> kg. '
|
|
|
- if bilberry > 0:$stat_msg +='Berries: <b><<bilberry>></b> kg. '
|
|
|
+ $stat_msg += '<br><font color = Olive>(Click numbers to throw away one a time) </font>'
|
|
|
+ if boletus > 0:$stat_msg +='<br><font color = Olive>Mushrooms: <a href="exec:boletus -= 1 & gs ''stat''"><b><<boletus>></b></a> kg. </font>'
|
|
|
+ if boletus_cooked > 0:$stat_msg +='<br><font color = Olive>Cooked Mushrooms: <a href="exec:boletus_cooked -= 1 & gs ''stat''"><b><<boletus_cooked>></b></a> kg. </font>'
|
|
|
+ if bilberry > 0:$stat_msg +='<br><font color = Olive>Berries: <a href="exec:bilberry -= 1 & gs ''stat''"><b><<bilberry>></b></a> kg. </font>'
|
|
|
end
|
|
|
end
|
|
|
|