You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
719 B
Plaintext
24 lines
719 B
Plaintext
4 months ago
|
//===== rAthena Script =======================================
|
||
|
//= Sample: Attached NPC Timers
|
||
|
//===== By: ==================================================
|
||
|
//= rAthena Dev Team
|
||
|
//===== Last Updated: ========================================
|
||
|
//= 20180831
|
||
|
//===== Description: =========================================
|
||
|
//= Demonstrates attached NPC timer commands.
|
||
|
//============================================================
|
||
|
|
||
|
prontera,156,186,0 script NPCtimerTest::npctimer2X0000 116,{
|
||
|
mes "What would you like to know?";
|
||
|
select("Tell me my level.");
|
||
|
mes "I need time to think...";
|
||
|
attachnpctimer;
|
||
|
initnpctimer;
|
||
|
close;
|
||
|
|
||
|
OnTimer5000:
|
||
|
mes "Ah, your level is " + readparam(11) + "!";
|
||
|
detachnpctimer;
|
||
|
close;
|
||
|
}
|