Goto chat.cs and search for
Code:
/recall
Code:
#region Set Player stats
if (Cmd[0] == "/setstats400")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str = 400;
C.Vit = 400;
C.Agi = 400;
C.Spi = 400;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
if (Cmd[0] == "/setstatsarcher")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str = 68;
C.Vit = 34;
C.Agi = 235;
C.Spi = 0;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
if (Cmd[0] == "/setstatswarrior")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str = 225;
C.Vit = 47;
C.Agi = 65;
C.Spi = 0;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
if (Cmd[0] == "/setstatsninja")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str = 34;
C.Vit = 50;
C.Agi = 253;
C.Spi = 0;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
if (Cmd[0] == "/setstatstrojan")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str =170;
C.Vit = 100;
C.Agi = 65;
C.Spi = 0;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
if (Cmd[0] == "/setstatstao")
{
if (GC.AuthInfo.Status == "[PM]")
{
Game.Character C = Game.World.CharacterFromName(Cmd[1]);
if (C != null)
C.Str = 0;
C.Vit = 47;
C.Agi = 65;
C.Spi = 225;
C.StatPoints = 0; // Change this to how many extra stat points you want to give the player
}
}
#endregion
Hit F6 and enjoy.
Almost forgot to use this command
/setstatsarcher playername
/setstatstrojan playername
etc
If this helped hit the Thanks button. Dredits to -Java- Without him wouldnt have thought to do this






