Jump to content
  • 0

Healer Just For Guild Member


syndrome93

Question


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  09/08/13
  • Last Seen:  

hello.. i want to request healer script for a member guild...

 

its mean other guild can click the healer npc.. thx before :D

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  


if( getguildname( getcharid(2) ) == "Fratenity" ){

// percentheal 100,100;

}

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

hello.. i want to request healer script for a member guild...

 

its mean other guild can click the healer npc.. thx before :D

 

the healr will heal any player who is in a guild or only to a specific guild players?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  09/08/13
  • Last Seen:  

 

hello.. i want to request healer script for a member guild...

 

its mean other guild can click the healer npc.. thx before :D

 

the healr will heal any player who is in a guild or only to a specific guild players?

 

 

heal any player who is in a guild :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

map,x,y,4	script	Guild Heal	100,{
if (getcharid(2)) {
specialeffect2 313; percentheal 100,100;
end;
}
mes "You need to belong a Guild to be healed.";
close;
end;
}

try that (:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  09/08/13
  • Last Seen:  

map,x,y,4	script	Guild Heal	100,{
if (getcharid(2)) {
specialeffect2 313; percentheal 100,100;
end;
}
mes "You need to belong a Guild to be healed.";
close;
end;
}

try that (:

 

for example : name guild for healer is fraternity

how i set to healer buff only fraternity guild?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

map,x,y,4	script	Guild Heal	100,{
if (getcharid(2) == GuildIDToBeHealed) {
specialeffect2 313; percentheal 100,100;
end;
}
mes "You need to belong to the Guild <guild name> to be healed.";
close;
end;
}

tested and working

 

you can check the ID fo the guilds by entering to your sql database, the tab table guild, there you will find all IDs of the guilds in the game so, you only put there the guild id you want to be healed (:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  127
  • Topics Per Day:  0.03
  • Content Count:  1445
  • Reputation:   163
  • Joined:  08/17/13
  • Last Seen:  

hello.. i want to request healer script for a member guild...

 

its mean other guild can click the healer npc.. thx before :D

Emistry's answer is the best for your needs o:

 

how did i miss getguildname @_@ /slur

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.00
  • Content Count:  36
  • Reputation:   0
  • Joined:  09/08/13
  • Last Seen:  

if( getguildname( getcharid(2) ) == "Fratenity" ){
    // percentheal 100,100;
}

ITS work's THX SIR EMISTRY

 

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...