blob: eb663bf746a65b48f6660d18479bc3c41471f23b (
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
|
// TMW2 Script.
// Author:
// Jesusalva
// Description:
// Random Sign nobody bothers reading.
// I just got lazy. Maybe I'll sell these two houses for 1000000 GP each... :drolls:
019-2,95,108,0 script Sign#019295108 NPC_NO_SPRITE,{
if (!$NIVALIS_LIBDATE) {
mesc l("WARNING: Nivalis is currently under siege from the Monster King himself."), 3;
next;
mesc l("The Alliance Advanced Outposts are closed for maintenance. Group in front of the town entrance!");
} else {
mesc l("Welcome to Nivalis, the frozen town.");
mesc l("The Alliance Advanced Outposts have been abandoned and locked after the Liberation day.");
}
close;
OnInit:
.sex = G_OTHER;
.distance = 3;
end;
}
|