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
|
//testing server instant level and item NPC
debugroom.gat,30,25,0 script gy-inn-test 307,{
mes "[Tester]";
mes "\"This is to test out the reaper quest and the gy-inn. The recommended level for this quest is 95+ \"";
menu
"Spec me up to lvl95 with gear.", L_Spec,
"Take me to the graveyard inn.", L_Inn,
"Take me to the crypt.", L_Cryp,
"Take me to the reaper.", L_Reap,
"Nevemind.", L_Nvm;
close;
L_Spec:
set baselevel, 90;
getitem "WarlordHelmet", 1;
getitem "WarlordPlate", 1;
getitem "JeansChaps", 1;
getitem "LeatherGloves", 1;
getitem "FurBoots", 1;
getitem "SteelShield", 1;
getitem "Setzer", 1;
getitem "ForestBow", 1;
getitem "IronArrow", 2000;
mes "[Tester]";
mes "\"Here you go! Enjoy your testing experience.\"";
close;
L_Inn:
warp "027-2.gat",104,41;
close;
L_Cryp:
warp "027-3.gat",41,70;
close;
L_Reap:
monster "027-4.gat",40,55,"Reaper Quest",1111,1,"Reaper::OnDead";
warp "027-4.gat",40,30;
close;
L_Nvm:
mes "[Tester]";
mes "\"Okay.\"";
close;
}
|