
* Deleted doc\sample\PCLoginEvent.txt, which contained outdated information. * Follow-up r16812, fixed file encoding. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16813 54d463be-8e91-2dee-dedb-b68131a5f0ec
23 lines
717 B
Plaintext
23 lines
717 B
Plaintext
//===== rAthena Script =======================================
|
|
//= Sample: Attached NPC Timers
|
|
//===== By: ==================================================
|
|
//= rAthena 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;
|
|
} |