fix juice script

This commit is contained in:
darkfire006 2023-08-06 00:04:39 -05:00
parent 4e23c9f9da
commit 28070fa083
1 changed files with 4 additions and 4 deletions

View File

@ -8,19 +8,19 @@ version=2
@text.show(Please select your~first berry.) @text.show(Please select your~first berry.)
@item.select(plants,2000-2066) @item.select(plants,2000-2066)
:if:<item.selected>=-1 :if:<inventory.selected>=-1
@text.show(Come again soon!) @text.show(Come again soon!)
:end :end
:endif :endif
@storage.set(integer,berry1,<item.selected>) @storage.set(integer,berry1,<inventory.selected>)
@text.show(Please select your~second berry.) @text.show(Please select your~second berry.)
@item.select(plants,2000-2066) @item.select(plants,2000-2066)
:if:<item.selected>=-1 :if:<inventory.selected>=-1
@text.show(Come again soon!) @text.show(Come again soon!)
:end :end
:endif :endif
@storage.set(integer,berry2,<item.selected>) @storage.set(integer,berry2,<inventory.selected>)
@storage.set(string,drink,fail) @storage.set(string,drink,fail)
@storage.set(integer,value,-1) @storage.set(integer,value,-1)