summaryrefslogtreecommitdiff
path: root/npc/debugroom/tester.txt
blob: 5efaf21089d05fe6e231ae866c1b00126eb0c7b2 (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
24
//testing server instant level and item NPC

debugroom.gat,25,23,0	script	Tester#Out	134,{

	mes "[Tester]";
	mes "\"Explenation.... \"";
	menu
		"Warp back to Tulimshar", L_Yes,
		"Set save point here", L_Do_Save,
		"Nevemind.", L_No;
	close;


L_Yes:
    warp "001-1.gat",28,74;
	close;
L_Do_Save:
	savepoint "debugroom.gat",25,25;
	close;
L_Nvm:
	mes "[Tester]";
	mes "\"Okay.\"";
	close;
}