diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-21 16:04:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-21 16:04:32 +0300 |
commit | 66a7953e6f6b4d7951c306e1d305ab3b904f557a (patch) | |
tree | d96f9df4db7a506277b5659aa6165e0efa7b1700 /npc/001-1 | |
parent | efb1c01272dc109188f1a4559db05a73405a7d38 (diff) | |
download | serverdata-66a7953e6f6b4d7951c306e1d305ab3b904f557a.tar.gz serverdata-66a7953e6f6b4d7951c306e1d305ab3b904f557a.tar.bz2 serverdata-66a7953e6f6b4d7951c306e1d305ab3b904f557a.tar.xz serverdata-66a7953e6f6b4d7951c306e1d305ab3b904f557a.zip |
Replace temp variables into scope temp variables.
Diffstat (limited to 'npc/001-1')
-rw-r--r-- | npc/001-1/cookiemaster.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/001-1/cookiemaster.txt b/npc/001-1/cookiemaster.txt index a7bd8775..9b527694 100644 --- a/npc/001-1/cookiemaster.txt +++ b/npc/001-1/cookiemaster.txt @@ -177,8 +177,8 @@ L_Reward: next; mesq l("Anyway, here, have a cookie!"); - set @item, 517; - set @count, 1; + set .@item, 517; + set .@count, 1; callfunc "InventoryPlace", 517, 1; setq GeneraL_Cookies, 1; @@ -242,8 +242,8 @@ L_LostCookie: mesq l("This is the last one. If you use it again out of clumsiness, I will take your flesh as the main ingredient for my cookie recipe."); next; - set @item, 517; - set @count, 1; + set .@item, 517; + set .@count, 1; callfunc "InventoryPlace", 517, 1; getitem "DeliciousCookie", 1; |