ok i just got done with this tell me if theirs any errors i just tested it it worked for me post any bugs plz ok here we go
ok in
add this
ok now search for
in Character.cs
in it add this
ok thats it try it out tell me if u find a bug
plz poast if u want me to keep Releaseing
Code:
[COLOR="Red"]This skill Will Summon Your Team To You If You Are The Team Leader;[/COLOR]
Code:
public static void DefineSkills()
Code:
//Summon
SkillAttributes[1060] = new ushort[1][];
SkillAttributes[1060][0] = new ushort[6] { 7, 0, 0, 0, 0, 0 };
SkillsDone.Add(1060, 0);
Code:
if (SkillAttributes[0] == 7)
in it add this
Code:
if (SkillId == 1060)
{
foreach (Character Member in MyClient.MyChar.Team)
{
Member.Teleport(MyClient.MyChar.LocMap, MyClient.MyChar.LocX, MyClient.MyChar.LocY);
XpList = false;
XPActivated = DateTime.Now;
MyClient.SendPacket(General.MyPackets.Vital(UID, 26, GetStat()));
break;
}
}
plz poast if u want me to keep Releaseing