diff options
Diffstat (limited to 'npc/000-2-1/chest.txt')
-rw-r--r-- | npc/000-2-1/chest.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/000-2-1/chest.txt b/npc/000-2-1/chest.txt index e409fa7d..6071157f 100644 --- a/npc/000-2-1/chest.txt +++ b/npc/000-2-1/chest.txt @@ -13,16 +13,16 @@ 000-2-1.gat,51,37,0 script Chest 317;2,{ set @q, getq(ShipQuests_Arpan); - if (@q == 0) goto l_Talk; - if (getnpcdir ("") == 4) goto l_Give; + if (@q == 0) goto L_Talk; + if (getnpcdir ("") == 4) goto L_Give; setnpcdir 2; initnpctimer; startnpctimer; close; -l_Give: - if (@q > 1) goto l_Quit; +L_Give: + if (@q > 1) goto L_Quit; set @item, 1300; set @count, 2; callfunc "InventoryPlace", 1300, 2; @@ -31,7 +31,7 @@ l_Give: getitem "CreasedShirt", 1; getitem "CreasedShorts", 1; npctalk3 l("You take the clothes from the chest."); - goto l_Quit; + goto L_Quit; OnTimer220: stopnpctimer; @@ -39,12 +39,12 @@ OnTimer220: if (getnpcdir ("") == 6) setnpcdir 0; end; -l_Talk: +L_Talk: npctalk3 l("You should talk to Magic Arpan first."); close; -l_Quit: +L_Quit: setnpcdir 6; initnpctimer; startnpctimer; |