diff options
author | Ridley <ridley8819@gmail.com> | 2017-03-05 13:37:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 13:37:46 +0100 |
commit | 3b11e33a39087ccf7c4e669c885230623f1594f7 (patch) | |
tree | 02862088f68a5f43a23fe705db8d573a2ff6b61d | |
parent | ce74d8c119facb51a0da92ef965c3dd78994b68f (diff) | |
parent | 53af897914d66daa39f45a7015d0b752824b0140 (diff) | |
download | hercules-3b11e33a39087ccf7c4e669c885230623f1594f7.tar.gz hercules-3b11e33a39087ccf7c4e669c885230623f1594f7.tar.bz2 hercules-3b11e33a39087ccf7c4e669c885230623f1594f7.tar.xz hercules-3b11e33a39087ccf7c4e669c885230623f1594f7.zip |
Merge pull request #1609 from Asheraf/var
add geffenia_warp var to the clear function.
-rw-r--r-- | npc/quests/the_sign_quest.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/npc/quests/the_sign_quest.txt b/npc/quests/the_sign_quest.txt index 2102efaf0..cf593eaae 100644 --- a/npc/quests/the_sign_quest.txt +++ b/npc/quests/the_sign_quest.txt @@ -12249,6 +12249,7 @@ OnInit: end; OnTouch: + callfunc("F_UpdateSignVars"); .@geffenia_warp = rand(1,4); if (.@geffenia_warp == 1) warp "gefenia01",58,169; else if (.@geffenia_warp == 2) warp "gefenia02",116,115; @@ -12644,6 +12645,7 @@ function script F_UpdateSignVars { Sign_Branch2B = 0; serinring = 0; signmetzhour = 0; + geffenia_warp = 0; } return; } |