diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-16 09:36:41 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-16 09:36:41 +0000 |
commit | 051a0461b6251535c5c3019ae8e5c1fbe1347a66 (patch) | |
tree | 3ce334e21eb4e04476ccafa2f192b986ca003152 /npc/001-2_Tulimshar | |
parent | 81f9673228ea0a9fcfc364ede5ce4e705d51b771 (diff) | |
download | serverdata-051a0461b6251535c5c3019ae8e5c1fbe1347a66.tar.gz serverdata-051a0461b6251535c5c3019ae8e5c1fbe1347a66.tar.bz2 serverdata-051a0461b6251535c5c3019ae8e5c1fbe1347a66.tar.xz serverdata-051a0461b6251535c5c3019ae8e5c1fbe1347a66.zip |
Make sure no script just ends
Diffstat (limited to 'npc/001-2_Tulimshar')
-rw-r--r-- | npc/001-2_Tulimshar/casino.txt | 5 | ||||
-rw-r--r-- | npc/001-2_Tulimshar/omar.txt | 1 | ||||
-rw-r--r-- | npc/001-2_Tulimshar/shops.txt | 1 | ||||
-rw-r--r-- | npc/001-2_Tulimshar/troupe_leader.txt | 1 |
4 files changed, 7 insertions, 1 deletions
diff --git a/npc/001-2_Tulimshar/casino.txt b/npc/001-2_Tulimshar/casino.txt index b5da3933..bc07cab8 100644 --- a/npc/001-2_Tulimshar/casino.txt +++ b/npc/001-2_Tulimshar/casino.txt @@ -8,14 +8,17 @@ 001-2.gat,37,65,0 script Slot1 127,{ callfunc "SlotMachine"; + close; } 001-2.gat,39,65,0 script Slot2 127,{ callfunc "SlotMachine"; + close; } 001-2.gat,41,65,0 script Slot3 127,{ callfunc "SlotMachine"; + close; } 001-2.gat,32,67,0 shop MoneyChanger 124,503:10 @@ -90,7 +93,7 @@ L_Ace: menu "Yes", L_Another, "No", L_End; - + close; } 001-2.gat,22,69,0 script Roulette 107,{ diff --git a/npc/001-2_Tulimshar/omar.txt b/npc/001-2_Tulimshar/omar.txt index 009e7b5d..a495dd0a 100644 --- a/npc/001-2_Tulimshar/omar.txt +++ b/npc/001-2_Tulimshar/omar.txt @@ -3,4 +3,5 @@ 001-2.gat,70,60,0 script Omar 162,{ mes "[Omar]"; mes "\"Welcome to my humble abode.\""; + close; } diff --git a/npc/001-2_Tulimshar/shops.txt b/npc/001-2_Tulimshar/shops.txt index 479969cd..e607dd97 100644 --- a/npc/001-2_Tulimshar/shops.txt +++ b/npc/001-2_Tulimshar/shops.txt @@ -6,4 +6,5 @@ set @npcName$, "Rebecca the Inn Keeper"; set @cost, 100; callfunc "Inn"; + close; } diff --git a/npc/001-2_Tulimshar/troupe_leader.txt b/npc/001-2_Tulimshar/troupe_leader.txt index d5c8bbfd..92ab46ef 100644 --- a/npc/001-2_Tulimshar/troupe_leader.txt +++ b/npc/001-2_Tulimshar/troupe_leader.txt @@ -47,4 +47,5 @@ L_NohMask_TooMany: next; mes "[Troupe Leader]"; mes "\"Except, you don't seem to have any room for it. I'll hold onto it for you until you do have room.\""; + close; } |