Jump to content
  • 0

NPC Healer doesn't appear


Sketch

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  11/08/14
  • Last Seen:  

[sOLVED]

This NPC doesn't appear

- script Healer -1,{
.@Price = 10000; // Zeny required for heal
.@Buffs = 1; // Also buff players? (1: yes / 0: no)
.@Delay = 5; // Heal delay, in seconds
if (@HD > gettimetick(2))
end;
if (.@Price) {
message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny.";
if (Zeny < .@Price)
end;
if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2)
end;
Zeny -= .@Price;
}
specialeffect2 EF_HEAL2;
percentheal 100,100;
if (.@Buffs) {
specialeffect2 EF_INCAGILITY;
sc_start SC_INCREASEAGI,240000,10;
specialeffect2 EF_BLESSING;
sc_start SC_BLESSING,240000,10;
}
if (.@Delay)
@HD = gettimetick(2) + .@Delay;
end;
}
// Duplicates
//============================================================
cave,111,63,5 duplicate(Healer) Healer#cav 909;

can you help? :/

Edited by Sketch
Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  50
  • Reputation:   4
  • Joined:  12/12/13
  • Last Seen:  

This NPC doesn't appear

- script Healer -1,{
.@Price = 10000; // Zeny required for heal
.@Buffs = 1; // Also buff players? (1: yes / 0: no)
.@Delay = 5; // Heal delay, in seconds
if (@HD > gettimetick(2))
end;
if (.@Price) {
message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny.";
if (Zeny < .@Price)
end;
if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2)
end;
Zeny -= .@Price;
}
specialeffect2 EF_HEAL2;
percentheal 100,100;
if (.@Buffs) {
specialeffect2 EF_INCAGILITY;
sc_start SC_INCREASEAGI,240000,10;
specialeffect2 EF_BLESSING;
sc_start SC_BLESSING,240000,10;
}
if (.@Delay)
@HD = gettimetick(2) + .@Delay;
end;
}
// Duplicates
//============================================================
cave,111,63,5 duplicate(Healer) Healer#cav 909;
can you help? :/

Since im on a phone it's hard to tell if you have tabs in your headers? And is there an error in your map server relating to the healer?

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  11/08/14
  • Last Seen:  

 

This NPC doesn't appear

- script Healer -1,{
.@Price = 10000; // Zeny required for heal
.@Buffs = 1; // Also buff players? (1: yes / 0: no)
.@Delay = 5; // Heal delay, in seconds
if (@HD > gettimetick(2))
end;
if (.@Price) {
message strcharinfo(0), "Healing costs " + callfunc("F_InsertComma",.@Price) + " Zeny.";
if (Zeny < .@Price)
end;
if (select("^0055FFHeal^000000:^777777Cancel^000000") == 2)
end;
Zeny -= .@Price;
}
specialeffect2 EF_HEAL2;
percentheal 100,100;
if (.@Buffs) {
specialeffect2 EF_INCAGILITY;
sc_start SC_INCREASEAGI,240000,10;
specialeffect2 EF_BLESSING;
sc_start SC_BLESSING,240000,10;
}
if (.@Delay)
@HD = gettimetick(2) + .@Delay;
end;
}
// Duplicates
//============================================================
cave,111,63,5 duplicate(Healer) Healer#cav 909;
can you help? :/

Since im on a phone it's hard to tell if you have tabs in your headers? And is there an error in your map server relating to the healer?

 

 

I have solved the NPC.. thank you again for your answer! ^^ appreciated !

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...