// Evol scripts. // Authors: // 4144 // Reid // Description: // A box with clothes for new players. // Variable: // ShipQuests_Arpan // Values: // 1 Talked to Arpan and needs to get clothes. // 2 Has the clothes. // Size = 2 000-2-1,51,37,0 script Chest 317,{ set @q, getq(ShipQuests_Arpan); 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; set @item, 1300; set @count, 2; callfunc "InventoryPlace", 1300, 2; setq ShipQuests_Arpan, 2; getitem "CreasedShirt", 1; getitem "CreasedShorts", 1; npctalk3 l("You take the clothes from the chest."); goto L_Quit; OnTimer220: stopnpctimer; if (getnpcdir ("") == 2) setnpcdir 4; if (getnpcdir ("") == 6) setnpcdir 0; end; L_Talk: npctalk3 l("You should talk to Magic Arpan first."); close; L_Quit: setnpcdir 6; initnpctimer; startnpctimer; close; }