[Fab] PetMax command!
This command just maxes your pet level :3 Put it in admincommands.cs
Code:
internal class PetMaxCommand : Command
{
public PetMaxCommand()
: base("petmax", 1)
{
}
protected override bool Process(Player player, RealmTime time, string[] args)
{
Item feed = player.Manager.GameData.Items[0x9d4];
for (int i = 0; i < 50; i++)
{
player.Pet.Feed(feed);
player.Pet.UpdateCount++;
}
return true;
}
}

