ive tried and tried to make pets heal on club559's source
but it still wont work can someone send me the code or something ?
this is the code i have:
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using wServer.realm;
using wServer.logic.attack;
using wServer.logic.movement;
using wServer.logic.loot;
using wServer.logic.taunt;
using wServer.logic.cond;

namespace wServer.logic
{
partial class BehaviorDb
{

static _ Pets = Behav()
.InitMany(0x1600, 0x1641, Behaves("Pet",
If.Instance(new PetBehaves(), PetChasing.Instance(8, 10, 3),
Cooldown.Instance(2400, new NexusHealHp()

))
));
}
}