did u fix database problem?
did u fix socket problem?
did u fix angels?
did u fix npc problem?
what is the "fixed guildwar"?
btw. my pkers to jail thing, dont work ;)
fix:
search for (in character.cs):
Code:
public void Revive(bool Tele)
remove:
Code:
General.Blackname();
Search for:
Code:
public bool GetHitDie(uint Damage)
find:
under put:
under the whole code put:
Code:
public void GetJailed() //For sending pkers in jail
{
if (PKPoints >= 100)
{
World.SendMsgToAll(Name + " have killed to much and been send to jail.", "SYSTEM", 2000);
Teleport(6000, 55, 55);
}
else if (PKPoints >= 30)
{
Random C = new Random();
int Nr = C.Next(1, 3);
if (Nr == 1)
{
World.SendMsgToAll(Name + " was captured, but got away from jail. Guard: We will get you!!", "SYSTEM", 2000);
}
if (Nr == 2)
{
World.SendMsgToAll(Name + " have killed to much and been send to jail.", "SYSTEM", 2000);
Teleport(6000, 55, 55);
}
if (Nr == 3)
{
World.SendMsgToAll(Name + " was captured, but got away from jail. Guard: We will get you!!", "SYSTEM", 2000);
}
}
}
Now in general.cs find:
Code:
public static void Blackname()
delete the whole code!