summaryrefslogblamecommitdiff
path: root/doc/sample/npc_test_skill.txt
blob: 1168014ea4d64b5f6b96fbe0396aa56904d34228 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                               







                                                               
 





                                              
 

                                             












                                                                             
 
//===== Hercules Script =======================================
//= Sample: Skill
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 20121003
//===== Description: ========================================= 
//= Demonstrates the 'skill' command.
//============================================================

// skill <skill id>,<level>{,<flag>};
//	flag=0 Grants the skill permanently
//	flag=1 Grants the skill temporarily
//	flag=2 Level bonus, stackable
// If flag is undefined, it defaults to 1
// View db/(pre-)re/skill_db.txt for skill IDs

prontera,157,182,0	script	Skills	116,{
	mes "What skill would you like?";
	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;
	}
}