rathena/doc/sample/npc_test_npctimer2.txt
Euphy 4f81f045ca * Removed SVN references from readme files.
* Replaced "Current Version" field with "Last Updated" when a date is provided.
* Added Magic Candy (12596) and Spark Candy (14586) to Renewal item_delay database.

Signed-off-by: Euphy <euphy.raliel@rathena.org>
2013-11-12 13:35:45 -05:00

23 lines
717 B
Plaintext

//===== rAthena Script =======================================
//= Sample: Attached NPC Timers
//===== By: ==================================================
//= rAthena Dev Team
//===== Last Updated: ========================================
//= 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;
}