Question 1 - What is code for adding duration for this npc? i want this npc have duration of 1 minit.
Question 2 - for change heal lv is percentheal 100,100;< ? Lv 1 = 10,10?
//===== rAthena Script =======================================
//= Healer
//===== By: ==================================================
//= rAthena Dev Team
//===== Current Version: =====================================
//= 3.2
//===== Compatible With: =====================================
//= rAthena SVN
//===== Description: =========================================
//= Healer NPC Which Heals For Free
//===== Additional Comments: =================================
//=
//============================================================
- script healer -1,{
callfunc "F_ClearGarbage",0;
mes "[Healer]";
mes "I have amazing healing powers!!";
mes "You look like a person who needs them";
mes "Want some?";
next;
switch(select("Heal:No thanks")) {
case 1:
percentheal 100,100;
mes "[Healer]";
mes "Wonderfull, You are now healed!.";
mes "Have fun adventuring!!";
break;
case 2:
mes "[Healer]";
mes "Alright, come back if you need a heal.";
break;
}
close;
}
Question
manabeast
Question 1 - What is code for adding duration for this npc? i want this npc have duration of 1 minit.
Question 2 - for change heal lv is percentheal 100,100;< ? Lv 1 = 10,10?
Edited by manabeast4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.