hi im using the bot for assassin char in private server now, the bot is constatly cast bladeshield every time, I would like to know if there are a line that I can add in precast.js to cast bladeshield once after every 200 seconds?
case 6: // Assassin
if (Config.UseFade && (!me.getState(159) || force)) {
Skill.cast(267, 0); // Fade
}
if (Config.UseVenom && (!me.getState(31) || force)) {
Skill.cast(278, 0); // Venom
}
if (!me.getState(158) || force) {
Skill.cast(277, 0); // Blade Shield
}
if (!Config.UseFade && Config.UseBoS && (!me.getState(157) || force)) {
Skill.cast(258, 0); // Burst of Speed
}