diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 13:33:57 -0300 |
commit | cf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch) | |
tree | f9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/026-2/testnpcs.txt | |
parent | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff) | |
download | serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2 serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip |
Override
Diffstat (limited to 'npc/026-2/testnpcs.txt')
-rwxr-xr-x | npc/026-2/testnpcs.txt | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/npc/026-2/testnpcs.txt b/npc/026-2/testnpcs.txt new file mode 100755 index 00000000..b6001cc5 --- /dev/null +++ b/npc/026-2/testnpcs.txt @@ -0,0 +1,57 @@ + +026-2,64,32,0 script Lovers NPC303,{ + mes "You see a man and a woman holding each other very tight."; + next; + mes "They are kissing and whispering things to each other you can't hear."; + next; + mes "Now the woman giggles. They don't notice you."; + next; + mes "Maybe it's better not to bother them."; + close; +} + +026-2,34,59,0 script Archibald NPC306,{ + mes "[Archibald]"; + mes "\"Me need to prepare the food. Me helping the chef cook.\""; + next; + mes "\"Person doesn't disturb me when me is making the food\""; + close; +} + +026-2,41,30,0 script Darnel NPC308,{ + @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 "[Darnel]"; + mes "\"zzzZZZzzz...\""; + goto L_close; +L_1: + mes "[Darnel]"; + mes "\"Ish that a Zzombee?...\""; + goto L_close; +L_2: + mes "[Darnel]"; + mes "\"Auuu... Hiccup... Don't byte mee... \""; + goto L_close; +L_3: + mes "[Darnel]"; + mes "\"Moar Bearr...Pleash!\""; + goto L_close; + +L_close: + @drunker = 0; + close; +} + +026-2,33,29,0 script Nigel NPC312,{ + mes "[Nigel]"; + 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; +} + |