diff options
author | Asheraf <acheraf1998@gmail.com> | 2017-03-04 18:37:36 +0000 |
---|---|---|
committer | Asheraf <acheraf1998@gmail.com> | 2017-03-04 18:37:36 +0000 |
commit | 1b708585b7c2ce3f093a2b352fd5a37ad0cef79a (patch) | |
tree | 425b26eb42f00e25f573a1cdc4d8320cebb0fba8 /npc/quests/the_sign_quest.txt | |
parent | e96e272e27ecac376fda6cbf524f7975b209f323 (diff) | |
download | hercules-1b708585b7c2ce3f093a2b352fd5a37ad0cef79a.tar.gz hercules-1b708585b7c2ce3f093a2b352fd5a37ad0cef79a.tar.bz2 hercules-1b708585b7c2ce3f093a2b352fd5a37ad0cef79a.tar.xz hercules-1b708585b7c2ce3f093a2b352fd5a37ad0cef79a.zip |
Change variable type on the sign quest
credit rathena/rathena@800f22b77bb63c2305d05956de8fbe5db0327ded
Diffstat (limited to 'npc/quests/the_sign_quest.txt')
-rw-r--r-- | npc/quests/the_sign_quest.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/quests/the_sign_quest.txt b/npc/quests/the_sign_quest.txt index dd3750543..2102efaf0 100644 --- a/npc/quests/the_sign_quest.txt +++ b/npc/quests/the_sign_quest.txt @@ -12249,11 +12249,11 @@ OnInit: end; OnTouch: - geffenia_warp = rand(1,4); - if (geffenia_warp == 1) warp "gefenia01",58,169; - else if (geffenia_warp == 2) warp "gefenia02",116,115; - else if (geffenia_warp == 3) warp "gefenia03",130,206; - else if (geffenia_warp == 4) warp "gefenia04",133,88; + .@geffenia_warp = rand(1,4); + if (.@geffenia_warp == 1) warp "gefenia01",58,169; + else if (.@geffenia_warp == 2) warp "gefenia02",116,115; + else if (.@geffenia_warp == 3) warp "gefenia03",130,206; + else if (.@geffenia_warp == 4) warp "gefenia04",133,88; else warp "geffen",116,115; end; |