I have the taming leveling systems working on the shard i was just wondering if theres something i can change to allow me to breed 2 pets of my own? RIght now you need to have a fellow tamer to breed with. Also how do i set the xp gain for leveling to gain on hit and not just kills?( so they could train on a training dummy)
 
Not looking at scripts right now, but it sounds like both changes would be in BaseCreature.cs.

For the breeding part, check the targeting method connected to the context menu option for breeding, and it probably has an exclusion for if you are the owner of the target creature. Just comment out that exclusion.

For the training part, there is a gain call in the "OnDeath" method in BaseCreature. Just move that to the "OnHit" method.
 
Back