diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-03-29 20:27:12 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-03-29 20:27:12 -0400 |
commit | f685228678108c67faea77432126f87389103dab (patch) | |
tree | 13ade69e9105c0809dbd6c688ba107d2232ac7f6 | |
parent | 9e7f46ac732851c1359a15837c82ebf67ea2be39 (diff) | |
download | serverdata-f685228678108c67faea77432126f87389103dab.tar.gz serverdata-f685228678108c67faea77432126f87389103dab.tar.bz2 serverdata-f685228678108c67faea77432126f87389103dab.tar.xz serverdata-f685228678108c67faea77432126f87389103dab.zip |
don't abuse `close` in the tutorial
-rw-r--r-- | world/map/npc/029-2/sorfina.txt | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/world/map/npc/029-2/sorfina.txt b/world/map/npc/029-2/sorfina.txt index 9d2d4bb3..8919bade 100644 --- a/world/map/npc/029-2/sorfina.txt +++ b/world/map/npc/029-2/sorfina.txt @@ -389,27 +389,21 @@ L_Block: { if (TUT_var == 0) goto L_KnockBack; - goto L_Close; + end; L_KnockBack: message strcharinfo(0), "Server : ##BPlease Accept the Game rules"; warp "029-2", 22, 24; - goto L_Close; - -L_Close: - close; + end; } 029-2,24,24,0|script|#GameRules4|32767,0,1 { if (TUT_var == 0) goto L_KnockBack; - goto L_Close; + end; L_KnockBack: message strcharinfo(0), "Server : ##BPlease Accept the Game rules"; warp "029-2", 22, 24; - goto L_Close; - -L_Close: - close; + end; } |