diff options
Diffstat (limited to 'world/map/npc/024-1/eomie.txt')
-rw-r--r-- | world/map/npc/024-1/eomie.txt | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/world/map/npc/024-1/eomie.txt b/world/map/npc/024-1/eomie.txt index bc785914..4de0e9c9 100644 --- a/world/map/npc/024-1/eomie.txt +++ b/world/map/npc/024-1/eomie.txt @@ -45,8 +45,10 @@ L_MakeGrass: "Ok, I will be back soon.", L_End, "I changed my mind, forget about it.", L_End; - if(countitem("GrassSeed") < 5) goto L_EasterNotEnough; - if(countitem("GrassSeed") >= 5) goto L_EasterEnough; + if(countitem("GrassSeed") < 5) + goto L_EasterNotEnough; + if(countitem("GrassSeed") >= 5) + goto L_EasterEnough; close; L_EasterNotEnough: @@ -58,8 +60,11 @@ L_EasterNotEnough: L_EasterEnough: getinventorylist; - if (@inventorylist_count == 100 && countitem("GrassSeed") > 10) goto L_EasterTooMany; - if(countitem("GrassSeed") < 5) goto L_EasterNotEnough; + if (@inventorylist_count == 100 + && countitem("GrassSeed") > 10) + goto L_EasterTooMany; + if(countitem("GrassSeed") < 5) + goto L_EasterNotEnough; delitem "GrassSeed", 5; getitem "GrassLiner", 1; set QUEST_Easter11, 6; @@ -86,5 +91,4 @@ L_SeeBunny: L_End: close; - } |