How To Edit Hp of Pole & Gates In GW

11/18/2010 19:46 sohaib#1
Hello, I have a conquer private server 5165
could someone of you guys tell me how/where to edit the HP(life) of Gates and Pole in Guild War

because players in my server have like 300k atk , and only one player can kill the pole in 10sec

Thank you for reading and sorry for disturbance! ;)
11/19/2010 13:18 sohaib#2
Where are you guys???? i'm sure that some1 know how to do it
11/19/2010 15:16 teroareboss1#3
in GuildWars.cs

change CurHp and MaxHp, were you see

ThePole = new Pole();
ThePole.EntityID = 6700;
ThePole.Mesh = 1137;
ThePole.CurHP = 20000000;
ThePole.MaxHP = 20000000;
ThePole.Loc = new Location();
ThePole.Loc.Map = 1038;
ThePole.Loc.X = 84;
ThePole.Loc.Y = 99;

TheLeftGate = new Gate();
TheLeftGate.EntityID = 6701;
TheLeftGate.Opened = false;
TheLeftGate.MaxHP = 10000000;
TheLeftGate.CurHP = 10000000;
TheLeftGate.Loc = new Location();
TheLeftGate.Loc.Map = 1038;
TheLeftGate.Loc.X = 163;
TheLeftGate.Loc.Y = 210;
TheLeftGate.ReSpawn();

TheRightGate = new Gate();
TheRightGate.EntityID = 6702;
TheRightGate.Opened = false;
TheRightGate.MaxHP = 10000000;
TheRightGate.CurHP = 10000000;
TheRightGate.Loc = new Location();
TheRightGate.Loc.Map = 1038;
TheRightGate.Loc.X = 222;
TheRightGate.Loc.Y = 177;
TheRightGate.ReSpawn();
11/19/2010 18:22 sohaib#4
Thank you very much it worked , +Thanks ; )