blob: 4ee1d67b125e63455aac74f9c66208315fa8dc98 (
plain) (
tree)
|
|
// TMW2 Script
// Author:
// Crazyfefe
// Jesusalva
005-1,66,62,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;
}
|