From bafe9ca1ceaac5554b4716b7b5b4911c3f40a51d Mon Sep 17 00:00:00 2001 From: euphyy Date: Wed, 3 Oct 2012 23:13:33 +0000 Subject: * Standardization of doc\sample\ folder. * Deleted doc\sample\PCLoginEvent.txt, which contained outdated information. * Follow-up r16812, fixed file encoding. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16813 54d463be-8e91-2dee-dedb-b68131a5f0ec --- doc/sample/npc_test_skill.txt | 35 ++++++++++++++++++++++------------- 1 file changed, 22 insertions(+), 13 deletions(-) (limited to 'doc/sample/npc_test_skill.txt') diff --git a/doc/sample/npc_test_skill.txt b/doc/sample/npc_test_skill.txt index 8d7d88dfe..99eaa9f37 100644 --- a/doc/sample/npc_test_skill.txt +++ b/doc/sample/npc_test_skill.txt @@ -1,4 +1,12 @@ -// Giving skills to characters via an NPC +//===== rAthena Script ======================================= +//= Sample: Skill +//===== By: ================================================== +//= rAthena Dev Team +//===== Current Version: ===================================== +//= 20121003 +//===== Description: ========================================= +//= Demonstrates the 'skill' command. +//============================================================ // skill ,{,}; // flag=0 Grants the skill permanently @@ -9,16 +17,17 @@ prontera,157,182,0 script Skills 116,{ mes "What skill would you like?"; - menu "First Aid",L_GETSKILL142,"Play Dead",L_GETSKILL143,"Heal",L_GETSKILL28,"None",L_YAME; -L_GETSKILL142: - skill 142,1,0; // Permanently gives player level 1 First Aid - close; -L_GETSKILL143: - skill 143,1,0; // Permanently gives player level 1 Play Dead - close; -L_GETSKILL28: - skill 28,3,1; // Temporarily gives player level 3 Heal - close; -L_YAME: - close; + switch(select("First Aid:Play Dead:Heal:None")) { + case 1: + skill 142,1,0; // Permanently gives player level 1 First Aid + close; + case 2: + skill 143,1,0; // Permanently gives player level 1 Play Dead + close; + case 3: + skill 28,3,1; // Temporarily gives player level 3 Heal + close; + case 4: + close; + } } -- cgit v1.2.3-60-g2f50