1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// TMW2 Script
// Author:
// Jesusalva
// Sign of great danger
005-1,37,90,0 script #SignSaxso NPC_NO_SPRITE,{
mes ".:: "+l("DANGER")+" ::.";
mesc l("Saxso's Official Residence.");
mesc l("DO NOT ENTER.");
mes "";
mesc l("-- Zegas, the Mayoress");
tutmes l("In some dungeons etc., there might be a monster much, much stronger than all other monsters on the area. These are the optional miniboss."), l("Optional Miniboss");
tutmes l("Defeating is entirely optional. They usually give more experience than the average, but are much stronger and dangerous."), l("Optional Miniboss");
tutmes l("Usually they have a few rare drops. The miniboss of Candor may drop a rare key, which you can use to open a certain chest..."), l("Optional Miniboss");
tutmes l("(Protip: Always use %s before engaging a different monster!)", b("@monsterinfo")), l("Optional Miniboss");
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
|