diff options
Diffstat (limited to 'npc/002-1/chefgado.txt')
-rw-r--r-- | npc/002-1/chefgado.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/002-1/chefgado.txt b/npc/002-1/chefgado.txt index ad600782d..336da42aa 100644 --- a/npc/002-1/chefgado.txt +++ b/npc/002-1/chefgado.txt @@ -11,9 +11,11 @@ // ShipQuests_Nard 002-1,27,28,0 script Chef Gado NPC_CHEF_GADO,{ - .@q = getq(ShipQuests_ChefGado); + .@q = getq(ShipQuests_Knife); .@n = getq(ShipQuests_Nard); + if (!.@q) goto L_Knife; + mesn; .@r = rand(3); if (.@r == 0) mesq l("What are you doing in my kitchen?! Get out, it's not a place for kids!"); @@ -22,6 +24,11 @@ close; +L_Knife: + mesn; + mesq l("I hate sea water, it always make knifes rusty. I already have a stockpile of rusty knifes on the other room."); + close; + OnInit: .sex = G_MALE; .distance = 2; |