blob: 56408b9b7df1557665b4009c9ec4162afe06a9f6 (
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
25
|
//testing server instant level and item NPC
001-1.gat,21,25,0 script Mr. Invisible#todebug 127,{
L_Debug:
mes "[Mr. Invisible]";
mes "\"Do you want to go to the debug room?\"";
menu
"Send me there right away!", L_Go,
"Debug room? What's that?", L_Explain,
"No way, I'm staying right here.", -;
mes "[Mr. Invisible]";
mes "\"If you want to go later on just talk to me again.\"";
close;
L_Go:
warp "debugroom.gat",25,25;
mes "Welcome to the dbug room. Help test everything!";
close;
L_Explain:
mes "[Mr. Invisible]";
mes "\"Its a room full of de bugs.\"";
next;
goto L_Debug;
}
|