diff options
Diffstat (limited to 'npc/000-2-1/arpan.txt')
-rw-r--r-- | npc/000-2-1/arpan.txt | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/npc/000-2-1/arpan.txt b/npc/000-2-1/arpan.txt index 40bf53ac..8bc60a4c 100644 --- a/npc/000-2-1/arpan.txt +++ b/npc/000-2-1/arpan.txt @@ -18,27 +18,27 @@ // Gender = 1 000-2-1,49,36,0 script LeftDoorCheck 32767,0,0,{ - set @q, getq(ShipQuests_Arpan); - if (@q == 0) doevent "Magic Arpan::OnTalk"; + set .@q, getq(ShipQuests_Arpan); + if (.@q == 0) doevent "Magic Arpan::OnTalk"; close; } // Gender = 1 000-2-1,54,36,0 script RightDoorCheck 32767,0,0,{ - set @q, getq(ShipQuests_Arpan); - if (@q == 0) doevent "Magic Arpan::OnTalk"; + set .@q, getq(ShipQuests_Arpan); + if (.@q == 0) doevent "Magic Arpan::OnTalk"; close; } // Gender = 1 000-2-1,47,32,0 script LeftBarrierCheck 32767,0,2,{ - set @q, getq(ShipQuests_Arpan); - if (@q > 2) close; - if (@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; - if (@q == 2) goto L_Equip; - if (@q == 1) goto L_GetCloth; + set .@q, getq(ShipQuests_Arpan); + if (.@q > 2) close; + if (.@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; + if (.@q == 2) goto L_Equip; + if (.@q == 1) goto L_GetCloth; doevent "Magic Arpan::OnClothNotTaken"; @@ -62,11 +62,11 @@ L_EquipDone: // Gender = 1 000-2-1,56,32,0 script RightBarrierCheck 32767,0,2,{ - set @q, getq(ShipQuests_Arpan); - if (@q > 2) close; - if (@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; - if (@q == 2) goto L_Equip; - if (@q == 1) goto L_GetCloth; + set .@q, getq(ShipQuests_Arpan); + if (.@q > 2) close; + if (.@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; + if (.@q == 2) goto L_Equip; + if (.@q == 1) goto L_GetCloth; doevent "Magic Arpan::OnClothNotTaken"; @@ -91,14 +91,14 @@ L_EquipDone: // Size = 5 // Gender = 1 000-2-1,49,33,0 script Magic Arpan 407,{ - set @q, getq(ShipQuests_Arpan); - set @q_julia, getq(ShipQuests_Julia); - if (@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; + set .@q, getq(ShipQuests_Arpan); + set .@q_julia, getq(ShipQuests_Julia); + if (.@q == 2 && getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200) goto L_EquipDone; OnTalk: mesn; - if (@q > 0) goto L_Menu; + if (.@q > 0) goto L_Menu; mesq lg("Yeye, you are really lucky to be alive. You are in good enough shape for walking, do you remember what happened?"); next; @@ -136,7 +136,7 @@ L_Story: mes ""; mesq lg("You were yaying sleeping for quite some time there, our shipkeeper, Julia, was here with you, she did her best to heal your injuries."); next; - if (@q_julia == 0) setq ShipQuests_Julia, 1; + if (.@q_julia == 0) setq ShipQuests_Julia, 1; mesq lg("Yaya, you should go see her! She'll be happy to see you."); next; mesq lg("Also, we took your yayed clothes, as they were... Yeyeye... In a bad shape. Go check the chest near your bed, there are some other ones inside."); @@ -147,15 +147,15 @@ L_Story: L_Menu: mesq l("What yeye could I do for you today?"); next; - set @equipped, getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200; + set .@equipped, getequipid(equip_torso) == 1300 && getequipid(equip_legs) == 2200; menu lg("Could you tell me where I am?"), L_Where, lg("Where can I find Julia?"), L_Julia, l("Who are you?"), L_Who, rif(getq(ShipQuests_ArpanMoney) == 0, l("Where are my old clothes?")), L_WhereOldClothes, - rif(!@equipped, lg("What should I do after taking these clothes?")), L_WhatCloth, - rif(!@equipped, l("Thank you, I'll take them and put them on.")), -, + rif(!.@equipped, lg("What should I do after taking these clothes?")), L_WhatCloth, + rif(!.@equipped, l("Thank you, I'll take them and put them on.")), -, l("Nothing, sorry."), -; closedialog; @@ -203,7 +203,7 @@ L_WhereOldClothes: next; setq ShipQuests_ArpanMoney, 1; - set @q, getq(ShipQuests_Arpan); + set .@q, getq(ShipQuests_Arpan); set Zeny, Zeny+10; message strcharinfo(0), l("You receive @@ E!", 10); |