Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
can someone write me a script to kill the council members in durance of hate level 3?[COLOR="Silver"]
---------- Post added at 03:18 PM ---------- Previous post was at 03:15 PM ----------
[/COLOR]id also like a script to kill the uniques or whatever they are called in andys chamber
Posts: 15
Threads: 2
Joined: Jan 2011
Reputation:
0
I'm surprised that you don't want a script to make your breakfast and do u a blowjob at the same time..
Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
lol, id write it myself, but im not that good at it, i can look thru n edit, but idk how to add completely new things to a script. my diablo script as a similar thing. its clear specials from entrance.
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
modulah Wrote:I'm surprised that you don't want a script to make your breakfast and do u a blowjob at the same time.. uncalled for man[COLOR="Silver"]
---------- Post added at 05:03 PM ---------- Previous post was at 04:16 PM ----------
[/COLOR] chrtylee Wrote:can someone write me a script to kill the council members in durance of hate level 3?
---------- Post added at 03:18 PM ---------- Previous post was at 03:15 PM ----------
id also like a script to kill the uniques or whatever they are called in andys chamber ok here is the meph council script credit to captco
1:navigate to D2NT\scripts\NTBot\bots\NTMephisto.NTJand delete everything in it(make backup copy first)
2: paste this script into the ntj
Code: [COLOR=DarkOrange]function NTMain()
{
Include("libs/common/NTCommon.ntl");
NTC_IncludeLibs();
NTC_IncludeConfig("NTBot/char_configs");
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(101))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeWaypoint()");
return;
}
NTP_DoPrecast(true);
if(!NTM_MoveToStair(me.areaid, 102))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
return;
}
if(!NTM_TakeStair(102))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
return;
}
if(!NTTMGR_CheckSafe(NTConfig_CheckSelfSafe, NTConfig_CheckMercSafe))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTMGR_CheckSafe()");
return;
}
if(!NTM_MoveTo(me.areaid, 17564, 8069))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveTo()");
return;
}
NTC_Delay(200);
if(me.classid != NTC_CHAR_CLASS_PALADIN && me.classid != NTC_CHAR_CLASS_BARBARIAN)
NTM_MoveTo(me.areaid, 17573, 8071);
if(!NTA_KillMonster(242))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTA_KillMonster()");
return;
}
if(NTConfig_ClearPosition)
NTA_ClearPosition();
NTSI_PickItems();
if(NTConfig_OpenChest)
{
var _chest;
if(NTM_MoveTo(me.areaid, 17520, 8063))
NTA_ClearPosition(30, true);
_chest = NTC_FindUnit(NTC_UNIT_OBJECT, GetLocaleString(3260), 1);
if(_chest)
{
do
{
if(_chest.x == 17513 && _chest.y == 8063)
{
if(NTC_OpenChest(_chest))
NTSI_PickItems();
break;
}
} while(_chest.GetNext());
}
}
if(NTConfig_KillCouncilMembers)
{
//bottom council members
NTM_MoveTo(me.areaid, 17651, 8066);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17630, 8069);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17625, 8048);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17647, 8040);
NTA_ClearPosition();
NTSI_PickItems();
//left-side council member
NTM_MoveTo(me.areaid, 17610, 8124);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17603, 8138);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17623, 8138);
NTA_ClearPosition();
NTSI_PickItems();
//right-side council member
NTM_MoveTo(me.areaid, 17609, 8022);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17616, 8006);
NTA_ClearPosition();
NTSI_PickItems();
NTM_MoveTo(me.areaid, 17592, 8015);
NTA_ClearPosition();
NTSI_PickItems();
}
NTC_SendMsgToScript("NTBotGame.ntj", "SCRIPT_END");
}[/COLOR]
next go to D2NT\scripts\NTBot\char_configs\"your character Config File"
and find Code: [COLOR=YellowGreen]NTConfig_Script.push("NTMephisto.ntj");[/COLOR]
and replace it with this line
Code: [COLOR=YellowGreen]NTConfig_Script.push("NTMephisto.ntj"); NTConfig_KillCouncilMembers = true;[/COLOR]
ok thats it for the meph council code
********************************************************************************
next is the andariel check corpses code(and more)(credit to AbsoluteZero02
1:find the plain NTConfig file located D2NT\scripts\NTBot\char_configs
2:add this next script under KillRakanishu(After you make a backup)
Code: [COLOR=Orange]var NTConfig_ClearAndyLair;
var NTConfig_ClearCatacombs;
var NTConfig_BoneAshExtension;
var NTConfig_CheckCorpses;[/COLOR]
3: in your own character config located D2NT\scripts\NTBot\char_configs\"your character Config File" change the Andariel line to this (after you make a backup) Code: [COLOR=Olive]NTConfig_Script.push("NTAndariel.ntj"); NTConfig_BoneAshExtension = false; NTConfig_ClearCatacombs = false; NTConfig_ClearAndyLair =true; NTConfig_CheckCorpses = true;[/COLOR]
4:add this function to the bottom of your NTAttack file located D2NT31_NTBot42\D2NT\scripts\libs\common (after you make a backup) Code: [COLOR=DarkOrange]function NTR_OpenItAIO(range)
{
var _orgx, _orgy;
var _target;
var _distance;
var _objlen;
var _pickobjects = [ 54, 55, 56, 57, 58, 174, 175, 159, 155, 104, 105, 106, 107, 203, 204, 205, 89, 274];
_orgx = me.x;
_orgy = me.y;
_target = NTR_GetChest();
if(_target){
do
{
if(_target && GetDistance(_orgx, _orgy, _target.x, _target.y) <= range)
{
if(NTC_OpenChest(_target))
NTSI_PickItems();
}
}while(_target.GetNext());
}
_objlen = _pickobjects.length
for (var i = 0; i < _objlen; i++){
_target = NTR_GetObj(_pickobjects[i]);
if(_target){
do
{
if(_target && GetDistance(_orgx, _orgy, _target.x, _target.y) <= range)
{
if(NTM_MoveTo(me.areaid, _target.x, _target.y))
{
if(NTC_DoClick(NTC_CLICK_LDOWN, NTC_SHIFT_NONE, _target))
{
Delay(200);
NTSI_PickItems();
}
}
}
}while(_target.GetNext());
}
}
return true;
}
function NTR_GetChest()
{
var _chest;
_chest = NTC_FindUnit(NTC_UNIT_OBJECT, "chest");
if(_chest)
{
return _chest;
}
return null;
}
function NTR_GetObj(num)
{
var _chest;
_chest = NTC_FindUnit(NTC_UNIT_OBJECT, num);
if(_chest)
{
return _chest;
}
return null;
}[/COLOR]
5:open up Andariel.ntj located D2NT31_NTBot42\D2NT\scripts\NTBot\bots (make a backup copy) and delete everything replace it with this script Code: [COLOR=YellowGreen]function NTMain()
{
Include("libs/common/NTCommon.ntl");
NTC_IncludeLibs();
NTC_IncludeConfig("NTBot/char_configs");
NT_LoadConfig();
NTSI_LoadNIPFiles("NTBot/item_configs");
NTA_Initialize();
NTTownin();
if(NTConfig_BoneAshExtension)
{
if(!NTM_TakeWaypoint(32))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeWaypoint()");
return;
}
NTBoneAsh();
}
else
{
if(!NTM_TakeWaypoint(35))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeWaypoint()");
return;
}
}
NTP_DoPrecast(true);
NTCatacombs();
NTSafeCheckin();
NTKillAndy();
NTC_PingDelay(2000);
NTSI_PickItems();
if(NTConfig_ClearAndyLair)
{
if(!NTA_ClearLevel())
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTA_ClearActLevel()");
return;
}
}
if(NTConfig_CheckCorpses)
NTAndyCorpses();
NTC_SendMsgToScript("NTBotGame.ntj", "SCRIPT_END");
}
function NTTownin()
{
if(!NTTM_CheckAct())
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_CheckAct()");
return;
}
NTTMGR_TownManager();
if(!NTTM_TownMove("waypoint"))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTM_TownMove()");
return;
}
}
function NTSafeCheckin()
{
if(!NTTMGR_CheckSafe(NTConfig_CheckSelfSafe, NTConfig_CheckMercSafe))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTTMGR_CheckSafe()");
return;
}
}
function NTBoneAsh()
{
if(!NTM_MoveTo(33, 20032, 4897))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveTo()");
return;
}
NTSafeCheckin();
if(!NTA_KillMonster(GetLocaleString(2878)))
{
if(NTConfig_ClearPosition)
NTA_ClearPosition();
NTSI_PickItems();
}
if(!NTM_MoveToPresetUnit(33, NTC_UNIT_TILE, 15))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToPresetUnit()");
return;
}
if(!NTM_TakeStair(34))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
return;
}
}
function NTCatacombs()
{
for(var i = 1 ; i < 4 ; i++)
{
var NTStepDone;
if(!NTConfig_BoneAshExtension && !NTConfig_ClearCatacombs && !NTStepDone)
{
i++;
}
if(!NTConfig_BoneAshExtension && NTConfig_ClearCatacombs)
{
if(!NTStepDone)
{
i--;
}
}
if(NTConfig_ClearCatacombs && NTStepDone)
{
if(!NTA_ClearLevel())
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTA_ClearActLevel()");
return;
}
}
if(!NTM_MoveToStair(me.areaid, 34+i))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveToStair()");
return;
}
if(!NTM_TakeStair(34+i))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_TakeStair()");
return;
}
NTStepDone = true;
}
}
function NTKillAndy()
{
if(!NTM_MoveTo(me.areaid, 22532, 9553))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTM_MoveTo()");
return;
}
if(!NTA_KillMonster(156))
{
NTC_SendMsgToScript("NTBotGame.ntj", "NTA_KillMonster()");
return;
}
}
function NTAndyCorpses()
{
NTM_MoveTo(me.areaid, 22537, 9592);
NTR_OpenItAIO(15);
NTM_MoveTo(me.areaid, 22514, 9584);
NTR_OpenItAIO(15);
NTM_MoveTo(me.areaid, 22555, 9592);
NTR_OpenItAIO(15);
NTM_MoveTo(me.areaid, 22535, 9510);
NTR_OpenItAIO(15);
NTM_MoveTo(me.areaid, 22544, 9514);
}[/COLOR]
setup your character configs and have fun mf'ing
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
is there a guide for writing ur own script? i wanna set my smiter to do ubers n trist. but idk if its possible to set him to stand in fire til fade procs. or set him to run since he cant tele. if any one can help me write a script for doing this, as well as cubing the keys n org set, id appreciate it greatly
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
did you try the meph and Andy scripts?
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
ya, so far they work, tho occasionally my guy has a problem using waypoints, n he walks retarded in town. looks like he arguing with himself abt what direction to go
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
chrtylee Wrote:ya, so far they work, tho occasionally my guy has a problem using waypoints, n he walks retarded in town. looks like he arguing with himself abt what direction to go yeah that part is a little buggy,but I think its for the different functions like killing boneash, clearing the whole catacombs, ect,
the wp problem is usually caused by lag
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Posts: 9
Threads: 1
Joined: Jan 2011
Reputation:
0
chrtylee Wrote:lol, id write it myself, but im not that good at it, i can look thru n edit, but idk how to add completely new things to a script. my diablo script as a similar thing. its clear specials from entrance.
Any chance I could get my hands on the Chaos Sanc script that clears specials from the entrance?
Also, I will try the Andy and Meph Scripts when I get home. Looks like good stuff.
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
here is the link for the chaos script
http://www.blizzsector.co/f16/d2nt-multi...58162.html
the chaos script is in our stickies btw
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Posts: 9
Threads: 1
Joined: Jan 2011
Reputation:
0
Haha I thought I was using that script which is why I asked. Obviously I failed to overwrite the original script. thanks jammer.
Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
Jammer74 Wrote:yeah that part is a little buggy,but I think its for the different functions like killing boneash, clearing the whole catacombs, ect,
the wp problem is usually caused by lag
ya i get a take waypoint fail almost everytime tho, but only for a2
Posts: 452
Threads: 30
Joined: Jun 2005
Reputation:
0
chrtylee Wrote:ya i get a take waypoint fail almost everytime tho, but only for a2 silly question but do you have all the act 2 wp's?Because this script shouldn't affect act 2 at all,only act 1 and act 3
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Posts: 34
Threads: 11
Joined: Nov 2010
Reputation:
0
i have the ones i need. summoner duriel n rada. it usually only happens during act changes, sometimes he also doesnt fill the tp tome. which results in him failing to open the cow portal
|