Bonesaw Breaker // Special Chest (TC84, MLVL86 in Glacial Trail) Fix:
Since his TC/MLVL is not that bad and a special chest is at the same place i added this script to my paladin:
Problem was the random maps: like 1 time on 3 or 4 the paladin was teleporting at the right side of a column (blocking hammers cast) and was unable to kill Bonesaw Breaker, especially when physical immune (even merc was not able to fix it) so the pala was drinking all pots or/and chicken, all bad.
Fix below will make hammerdin teleport at the chest position and casting hammers for like 3 seconds; Bonesaw Breaker will move out from its original position and problem will be fixed.
1/ Open scripts\NTBot\bots\NTGlacialTrail.ntj for text editing
2/ search for "CheckSafe()" and add the part of code like exposed below:
NTC_SendMsgToScript("NTBotGame.ntj", "NTTMGR_CheckSafe()");
return;
}
// ========================ADD THIS=========================================
if(me.classid == NTC_CHAR_CLASS_PALADIN && NTConfig_AttackSkill[3] == 112)
{
var _chest;
_chest = NTC_GetSpecialChest();
if(_chest)
{
NTM_MoveTo(_chest.areaid, _chest.x+1, _chest.y);
_starttick = GetTickCount();
while(GetTickCount()-_starttick < 3000)
{
if(NTConfig_AttackSkill[4] > 0)
NTC_PutSkill(NTConfig_AttackSkill[4], NTC_HAND_RIGHT);
NTC_CastSkill(NTConfig_AttackSkill[3], 2);
}
}
}
// ========================ADD THIS=========================================
if(!NTA_KillMonster(GetLocaleString(22502)))
Only add what is between the "===ADD THIS====" it's ok you get it ?

Now it's all fine.
