summaryrefslogblamecommitdiff
path: root/doc/sample/npc_test_npctimer2.txt
blob: 8ff8be57571c3dff4f82da22003bba125fdf2a89 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
                                                                     













                                                 
 
prontera,156,183,0	script	NPCtimerTest::npctimerX0000	116,{
L_INIT:
	mes "What would you like to know?";
	menu "Tell me my level",L_WAIT;

L_WAIT:
	mes "I need time to think...";
	initnpctimer;
	attachnpctimer;
	close;

OnTimer5000:
	mes "Ah, your level is " + readparam(11);
	detachnpctimer;
	close;
}