diff options
Diffstat (limited to 'npc/000-2-1/chefgado.txt')
-rw-r--r-- | npc/000-2-1/chefgado.txt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index 530a59f4..8c7817e5 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -19,21 +19,21 @@ // Size = 2 // Gender = 1 000-2-1,27,28,0 script Chef Gado 418,{ - set @q, getq(ShipQuests_ChefGado); - set @n, getq(ShipQuests_Nard); - if (@q == 1) goto L_QuestAccepted; - if (@q == 2) goto L_PoisonAccepted; - if (@q == 3) goto L_PoisonJulia; - if (@q == 4) goto L_QuestComplete; - if (@q == 5 && countitemcolor("PoisonedDish") > 0) goto L_Aborting; - if (@q > 4) goto L_QuestAborted; - if (@n == 3) goto L_QuestStart; - - mesn; - set @r, rand(3); - if (@r == 0) mesq l("What are you doing in my kitchen?! Get out, it's not a place for kids!"); - if (@r == 1) mesq l("Where is the damn salt?! Give me the salt, I know you have it!"); - if (@r == 2) mesq l("Are you going to stand here all day long? Do the dishes or go away."); + set .@q, getq(ShipQuests_ChefGado); + set .@n, getq(ShipQuests_Nard); + if (.@q == 1) goto L_QuestAccepted; + if (.@q == 2) goto L_PoisonAccepted; + if (.@q == 3) goto L_PoisonJulia; + if (.@q == 4) goto L_QuestComplete; + if (.@q == 5 && countitemcolor("PoisonedDish") > 0) goto L_Aborting; + if (.@q > 4) goto L_QuestAborted; + if (.@n == 3) goto L_QuestStart; + + mesn; + set .@r, rand(3); + if (.@r == 0) mesq l("What are you doing in my kitchen?! Get out, it's not a place for kids!"); + if (.@r == 1) mesq l("Where is the damn salt?! Give me the salt, I know you have it!"); + if (.@r == 2) mesq l("Are you going to stand here all day long? Do the dishes or go away."); close; |