blob: 336da42aabd7f23bb1e6d58332ef19c4b22c22fc (
plain) (
tree)
|
|
// Evol scripts.
// Authors:
// Hal9000
// Qwerty Dragon
// Jesusalva
// Description:
// La Johanne Chef.
// The cook may need help with something.
// Variable:
// ShipQuests_ChefGado
// ShipQuests_Nard
002-1,27,28,0 script Chef Gado NPC_CHEF_GADO,{
.@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!");
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;
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;
end;
}
|