This is for Blizz Sorc only!
Go to your D2NT folder, >Scripts > NTBot > Bots and right click and make a new text document... name it NTAndyGlitch.ntj
After you have made the file, copy/paste the code below to it..
Once you have copy/pasted and save that file, go to your D2NT folder again > Scripts Folder > NTBot > char_config ; Then open your character config and add this line:
NTConfig_Script.push("NTAndyGlitch.ntj");
Remember to add the quotes ( // ) if you don't want to use it..
function NTMain()
{
Include("libs/common/NTCommon.ntl");
NTC_IncludeLibs();
NTC_IncludeConfig("NTBot/char_configs");
var i;
var _attackpos = [22574, 9612,
22561, 9627,
22550, 9642,
22541, 9653,
22524, 9640,
22524, 9629,
22502, 9577,
22512, 9587,
22534, 9607,
22565, 9593,
22548, 9583];
NT_LoadConfig();
NTSI_LoadNIPFiles("NTBot/item_configs");
NTA_Initialize();
if(!NTTM_CheckAct())
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_CheckAct()");
return;
}
NTTMGR_TownManager();
if(!NTTM_TownMove("waypoint"))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_TownMove()");
return;
}
if(!NTM_TakeWaypoint(35))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeWaypoint()");
return;
}
NTP_DoPrecast();
for(var i = 0 ; i < 2 ; i++)
{
if(!NTM_MoveToStair(me.areaid, 36+i))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
return;
}
if(!NTM_TakeStair(36+i))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
return;
}
}
NTP_DoPrecast();
for(i = 0 ; i < _attackpos.length ; i += 2)
{
NTM_MoveTo(me.areaid, _attackpos[i], _attackpos[i+1]);
NTA_ClearPosition(20);
NTSI_PickItems();
}
NTTMGR_CheckSafe(NTConfig_CheckSelfSafe);
NTC_Delay(500);
NTM_MoveTo(me.areaid, 22550, 9560);
NTC_Delay(1250);
NTM_MoveTo(me.areaid, 22550, 9588);
NTC_Delay(1750);
NTM_MoveTo(me.areaid, 22545, 9612);
NTC_Delay(2000);
var _andy;
_andy = NTC_FindUnit(NTC_UNIT_MONSTER, 156, 5);
while(_andy && _andy.hp > 0) {
for(i= 0 ; i < 5 ; i ++) {
NTC_Delay(2000);
NTC_CastSkill(59, NTC_HAND_RIGHT, 22545, 9612);
}
NTM_MoveTo(me.areaid, 22550, 9588);
NTC_CastSkill(59, NTC_HAND_RIGHT, 22550, 9560);
NTM_MoveTo(me.areaid, 22550, 9560);
NTC_Delay(500);
NTM_MoveTo(me.areaid, 22545, 9612);
}
NTM_MoveTo(me.areaid, 22543, 9602);
NTSI_PickItems();
NTC_SendMsgToScript("NTBotGame.ntj", "SCRIPT_END");
}