summaryrefslogtreecommitdiff
path: root/npc/quests
diff options
context:
space:
mode:
authorAsheraf <acheraf1998@gmail.com>2017-03-04 18:37:36 +0000
committerAsheraf <acheraf1998@gmail.com>2017-03-04 18:37:36 +0000
commit1b708585b7c2ce3f093a2b352fd5a37ad0cef79a (patch)
tree425b26eb42f00e25f573a1cdc4d8320cebb0fba8 /npc/quests
parente96e272e27ecac376fda6cbf524f7975b209f323 (diff)
downloadhercules-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')
-rw-r--r--npc/quests/the_sign_quest.txt10
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;