summaryrefslogtreecommitdiff
path: root/npc/003-2-1/demure.txt
blob: 8dd2e76581a02384889df28b3f351e2a4984d5e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// TMW2 Script
// Author:
//    Crazyfefe
//    Jesusalva

003-2-1,51,41,0	script	Demure GM	NPC_HIDDEN,{
    // Let's try without freeloop
    mesn any("NotSoBot", "Demure");
    if (rand(1,5) <= 2)
        mes "Blame Saulc";

    .@mx=rand(6,12);
	for (.@i = 0; .@i < .@mx; ++.@i) {
        mes "leave Complaints";
        if (rand(1,5) == 3)
            mes "";
        if (.@i == 10) {
            next;
            mesn any("NotSoBot", "Demure");
            mes any("leave Complaints", "Blame Saulc");
        }
	}
    if (rand(1,5) >= 4)
        mes "Blame Saulc";
    close;

OnInit:
    .distance=5;
    end;
}