diff options
author | toni <toni@toni-EP45-UD3L.(none)> | 2011-01-20 19:44:22 -0200 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-21 15:28:45 +0100 |
commit | d0603586efb31d1913c9ed227adff03f8c4fc921 (patch) | |
tree | a8b0912597690cfed95633fdbe5d08333fd1bcaf /npc/027-2_Caretakers_House/testnpcs.txt | |
parent | 28dbb752b0ed0404d009dc3554bd1ceac659669d (diff) | |
download | serverdata-d0603586efb31d1913c9ed227adff03f8c4fc921.tar.gz serverdata-d0603586efb31d1913c9ed227adff03f8c4fc921.tar.bz2 serverdata-d0603586efb31d1913c9ed227adff03f8c4fc921.tar.xz serverdata-d0603586efb31d1913c9ed227adff03f8c4fc921.zip |
Simple dialogues for Drunker and Ghost Drunker
Diffstat (limited to 'npc/027-2_Caretakers_House/testnpcs.txt')
-rwxr-xr-x | npc/027-2_Caretakers_House/testnpcs.txt | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/npc/027-2_Caretakers_House/testnpcs.txt b/npc/027-2_Caretakers_House/testnpcs.txt index 62f8c956..bd787711 100755 --- a/npc/027-2_Caretakers_House/testnpcs.txt +++ b/npc/027-2_Caretakers_House/testnpcs.txt @@ -30,7 +30,28 @@ }
027-2.gat,77,40,0 script Drunker 308,{
+ set @drunker, rand(4);
+ if (@drunker == 0) goto L_0;
+ if (@drunker == 1) goto L_1;
+ if (@drunker == 2) goto L_2;
+ if (@drunker == 3) goto L_3;
end;
+L_0:
+ mes "[Ghost Drunker]";
+ mes "\"zzzZZZzzz...\"";
+ close;
+L_1:
+ mes "[Ghost Drunker]";
+ mes "\"Ish that a Zzombee?...\"";
+ close;
+L_2:
+ mes "[Ghost Drunker]";
+ mes "\"Auuu... Hiccup... Don't byte mee... \"";
+ close;
+L_3:
+ mes "[Ghost Drunker]";
+ mes "\"Moar Bearr...Pleash!\"";
+ close;
}
027-2.gat,103,22,0 script Barman 310,{
@@ -42,7 +63,9 @@ }
027-2.gat,110,23,0 script Ghost Drunker 312,{
- end;
+ mes "[Ghost Drunker]";
+ mes "\"Ohh... My head is killing me! I have to stop drinking too much or I will lose my job... But being a waiter... oh I can't resist a drink or two!\"";
+ close;
}
027-2.gat,107,29,0 script Golbenez 307,{
|