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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// TMW-2 Script
// Author: Crazyfefe, Jesusalva
// Desc: Originally a Tmw script. See also: npc/functions/mobpoint.txt
001-1,123,85,0 script Aidan NPC_PLAYER,{
mesn l("Aidan, the Monster Guide");
if (#MAX_MPP)
mesq l("You currently have @@ Mob Points. Thus far you have collected @@/@@ Mob Points.", #Mobpt, #MPQUEST, #MAX_MPP);
else
mesq l("Players from the old server can port their accounts on our website and start collecting Monster Points.");
select
l("Information"),
menuaction(l("Quit"));
if (@menu == 2)
close;
mes "";
mesn;
mesq l("This world existed on a different place and with a different place a few eternities ago.");
next;
mesn;
mesq l("It so happens, some people among us are reincarnations from people who were on that previous world!");
next;
mesn;
mesq l("This means when they kill monsters, they get some weird Mob Points.");
next;
mesn;
mesq l("Nobody knows for sure what a Mob Point is, but Ishi can make some nice stuff from it.");
next;
mesn;
mesq l("Also, they can only collect as much Mob Points according to their past appearance strength.");
close;
OnInit:
.@npcId = getnpcid(0, .name$);
setunitdata(.@npcId, UDT_HEADMIDDLE, LegionCopperArmor);
setunitdata(.@npcId, UDT_HEADBOTTOM, BrownTrousers);
setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins); // Boots
setunitdata(.@npcId, UDT_HAIRSTYLE, 3);
setunitdata(.@npcId, UDT_HAIRCOLOR, 3);
.sex = G_MALE;
.distance = 5;
end;
}
|