Behaviordb.Pets error
so im trying to mkae pets heal and when i write the code about it it comes up as a error
the red is the error coming up and idk why it tells me thath
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(800, new PetHealHpMp());
));
}
}