Assasin constantly recasting bladeshield

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
			}

maybe this state isn’t well read on that d2 server.
try to remove that, and see what is happening.
those lines should be

			if (force) {
				Skill.cast(277, 0); // Blade Shield	
			}