Help Unable to find Tame/pet related settings on Zircon

Play Now

Mizuki

LOMCN n00bie
Jan 15, 2026
6
1
3
Could someone point me towards where in the zircon solution the data pertaining to Electric Shock - Tamed Mobs - The amount of tamed mobs that are permissable and how many levels the mobs can be trained to before they max out?

Or is it not in the Zircon solution at all?

Cheers
Noel
 

Mizuki

LOMCN n00bie
Jan 15, 2026
6
1
3
think I may have found it actually sorry for the premature post - Im very new to visual studio ya see so it's all a bit alien to me :)


if (ob.Level > Player.Level + 2 || !ob.MonsterInfo.CanTame) return;

if (SEnvir.Random.Next(Player.Level + 20 + Magic.Level * 5) <= ob.Level + 10)
{
if (SEnvir.Random.Next(5) > 0 && ob.PetOwner == null)
{
ob.RageTime = SEnvir.Now.AddSeconds(SEnvir.Random.Next(20) + 10);
ob.Target = null;
}
return;
}

if (Player.Pets.Count >= 3) return;

if (SEnvir.Random.Next(4) > 0) return;

if (SEnvir.Random.Next(20) == 0)
 
Upvote 0