diff options
Diffstat (limited to 'npc/000-2-1/chest.txt')
-rw-r--r-- | npc/000-2-1/chest.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/000-2-1/chest.txt b/npc/000-2-1/chest.txt index 50ff9aa1..f8f739ee 100644 --- a/npc/000-2-1/chest.txt +++ b/npc/000-2-1/chest.txt @@ -11,7 +11,7 @@ // 2 Has the clothes. 000-2-1,51,37,0 script Chest 417,{ - set .@q, getq(ShipQuests_Arpan); + .@q = getq(ShipQuests_Arpan); if (.@q == 0) goto L_Talk; if (getnpcdir ("") == 4) goto L_Give; @@ -23,8 +23,8 @@ L_Give: if (.@q > 1) goto L_Quit; - set .@item, 1300; - set .@count, 2; + .@item = 1300; + .@count = 2; inventoryplace 1300, 2; setq ShipQuests_Arpan, 2; |