summaryrefslogtreecommitdiff
path: root/doc/sample/npc_test_npctimer2.txt
blob: 6c5d139f03aa01703166215484cfb7ee5ea32e7c (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
//===== Hercules Script =======================================
//= Sample: Attached NPC Timers
//===== By: ==================================================
//= Hercules Dev Team
//===== Current Version: =====================================
//= 20121003
//===== Description: ========================================= 
//= Demonstrates attached NPC timer commands.
//============================================================

prontera,156,183,0	script	NPCtimerTest::npctimerX0000	116,{
	mes "What would you like to know?";
	select("Tell me my level.");
	mes "I need time to think...";
	initnpctimer;
	attachnpctimer;
	close;

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