diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-21 23:39:24 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-21 23:39:24 -0300 |
commit | 3dfa4990c798047866db4c7e0c195af310326a92 (patch) | |
tree | 225b07672313c6df01b822490c016426ccac9233 /npc/002-1 | |
parent | 992f0b449a3cb58dcf0f08cd965ba2d095abbc89 (diff) | |
download | serverdata-3dfa4990c798047866db4c7e0c195af310326a92.tar.gz serverdata-3dfa4990c798047866db4c7e0c195af310326a92.tar.bz2 serverdata-3dfa4990c798047866db4c7e0c195af310326a92.tar.xz serverdata-3dfa4990c798047866db4c7e0c195af310326a92.zip |
Chef Gado hints about rusty knife
Diffstat (limited to 'npc/002-1')
-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; |