Author Topic: Is there a Classic sorc rush script somewhere?  (Read 1312 times)

Offline ToddOwO

  • Newbie
  • *
  • Join Date: Aug 2010
  • Posts: 5
  • Reputation 0
  • I <3 PureKaoz.com
    • View Profile
Is there a Classic sorc rush script somewhere?
« on: September 07, 2010, 06:00:43 PM »
link or opinions thanks pk ^_^

PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Is there a Classic sorc rush script somewhere?
« on: September 07, 2010, 06:00:43 PM »

Offline TheFreak

  • Just like an admin ;)
  • AFK Admins
  • PK Pro
  • *****
  • Join Date: May 2010
  • Posts: 372
  • Reputation 1
  • I rap and write javascript mutha fucka!
    • View Profile
Re: Is there a Classic sorc rush script somewhere?
« Reply #1 on: September 07, 2010, 07:50:00 PM »
Use tha PK rush bot.


My New function:

function AlbertEinstein()
{
If (A = success in life)
A = x + y + z;
x = Work;
y = Play;
z = Keeping your mouth shut;
}

"Right after the Sam-Frodo suckfest, right before the credits roll, Sam fuckin' flat-out brick's in Frodo's mouth"

PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Re: Is there a Classic sorc rush script somewhere?
« Reply #1 on: September 07, 2010, 07:50:00 PM »

Offline ToddOwO

  • Newbie
  • *
  • Join Date: Aug 2010
  • Posts: 5
  • Reputation 0
  • I <3 PureKaoz.com
    • View Profile
Re: Is there a Classic sorc rush script somewhere?
« Reply #2 on: September 08, 2010, 10:00:03 PM »
I get an error when classic bot joins game.
scripts/NTBot/NTBot/NTBotGame.ntj (22) : NTLoadConfig not defined
Code: [Select]

var CurScriptIndex = 0;
var LastScript = false;

var CloneDiabloString;
var CloneDiabloNotify = false;

// Provalone Edit //
Include("libs/common/NTExp.ntl");
NTE_InitializeStats();
//

function NTMain()
{
Delay(1000);

//Print("?c4[+] NTBot 4.1 [+]");

Include("libs/common/NTCommon.ntl");
NTC_IncludeLibs();
NTC_IncludeConfig("NTBot/char_configs");

[b] NT_LoadConfig();[/b]
NTSI_LoadNIPFiles("NTBot/item_configs");

if(NTConfig_StartDelay > 0);
NTC_Delay(NTConfig_StartDelay);

SetUIState(0x0A, true);

NTT_GetCorpses();

if(NTConfig_Script.length > 0)
{
NTCU_InitCubing();

NTT_ClearInventory();
NTT_ClearBelt();

Load("NTBot/tools/NTToolsThread.ntj");

if(NTConfig_CheckCloneDiablo)
{
CloneDiabloString = GetLocaleString(11005);
RegisterEvent(EVENT_GAMEMSG, NT_GameMsgEvents);
}

RegisterEvent(EVENT_KEYDOWN, NT_KeyEvents);
RegisterEvent(EVENT_SCRIPTMSG, NT_ScriptMsgEvents);

Load("NTBot/bots/" + NTConfig_Script[CurScriptIndex]);
SetStatusText("Running " + NTConfig_Script[CurScriptIndex]);

while(!LastScript || CloneDiabloNotify)
{
NTC_Delay(500);
}
}

// Provalone Edit
NTE_ComputeStats(false);
//
ExitGame();
}

function NT_GameMsgEvents(msg, type)
{
if(type == 4 && msg.indexOf(CloneDiabloString) != -1)
{
CloneDiabloNotify = true;

NTC_SendLogToOOG(NTC_LOG_COMMON, "?c4" + CloneDiabloString);
SetStatusText(CloneDiabloString);

me.maxgametime = 0;

NTC_StopScript(NTConfig_Script[CurScriptIndex]);
NTC_Delay(500);

NTTM_CheckAct();
}
}

function NT_KeyEvents(keycode)
{
var _script;

switch(keycode)
{
case 19:
_script = NTC_FindScript(NTConfig_Script[CurScriptIndex]);
if(_script)
{
if(_script.running)
{
_script.Stop();

NTC_Delay(300);
ClickMap(NTC_CLICK_LUP, NTC_SHIFT_NONE, null);

SetStatusText("Stopped " + NTConfig_Script[CurScriptIndex]);
}
else
{
Load("NTBot/bots/" + NTConfig_Script[CurScriptIndex]);
SetStatusText("Running " + NTConfig_Script[CurScriptIndex]);
}
}
break;
case 34:
_script = NTC_FindScript(NTConfig_Script[CurScriptIndex]);

if(_script.running)
{
_script.Stop();
SetStatusText("Stopped " + NTConfig_Script[CurScriptIndex]);
}
else if(++CurScriptIndex < NTConfig_Script.length)
SetStatusText("Skipped to " + NTConfig_Script[CurScriptIndex]);
else if(++CurScriptIndex >= NTConfig_Script.length)
{
CurScriptIndex = 0
SetStatusText("Skipped to " + NTConfig_Script[CurScriptIndex]);
}
break;

}

}

function NT_ScriptMsgEvents(msg)
{
var _area;

switch(msg)
{
case "SCRIPT_END":
if(++CurScriptIndex < NTConfig_Script.length)
{
NTTM_CheckAct();
Load("NTBot/bots/" + NTConfig_Script[CurScriptIndex]);
SetStatusText("Running " + NTConfig_Script[CurScriptIndex]);
}
else{
LastScript = true;
}

break;
default:
Print("?c1" + NTConfig_Script[CurScriptIndex] + " : " + msg + " failed");

_area = GetArea();

if(_area)
NTC_SendLogToOOG(NTC_LOG_COMMON, "?E00000" + NTConfig_Script[CurScriptIndex] + " : " + msg + " failed (" + _area.name + ")");
else
NTC_SendLogToOOG(NTC_LOG_COMMON, "?E00000" + NTConfig_Script[CurScriptIndex] + " : " + msg + " failed (unknown area)");

if(++CurScriptIndex < NTConfig_Script.length)
{
NTTM_CheckAct();
Load("NTBot/bots/" + NTConfig_Script[CurScriptIndex]);
SetStatusText("Running " + NTConfig_Script[CurScriptIndex]);
}
else
LastScript = true;
break;
}
}
« Last Edit: September 08, 2010, 10:02:05 PM by cooptheking »

cooptheking

  • Guest
Re: Is there a Classic sorc rush script somewhere?
« Reply #3 on: September 08, 2010, 10:07:06 PM »
Sounds like a problem with your character configuration.
is it named (NTConfig_Paladin.ntj
OR NTConfig_Paladin_YourNameHere.ntj

PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Re: Is there a Classic sorc rush script somewhere?
« Reply #3 on: September 08, 2010, 10:07:06 PM »

Offline zack107

  • Newbie
  • *
  • Join Date: Jul 2010
  • Posts: 28
  • Reputation 0
  • Need something? Let me know
    • View Profile
Re: Is there a Classic sorc rush script somewhere?
« Reply #4 on: September 08, 2010, 10:47:57 PM »
I got this awhile back im using Youngloves rush bot aka PK rush bot. It does work however i also got the same error you are having. Make shure that the attack configs are correct to your character. That was my problem. Good luck to you!
If you need help setting up your bot let me know and ill do my best to assist you. I do full bot setups for 50fg


PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Re: Is there a Classic sorc rush script somewhere?
« Reply #4 on: September 08, 2010, 10:47:57 PM »

Offline jixxerbill

  • Newbie
  • *
  • Join Date: Dec 2010
  • Posts: 3
  • Reputation 0
  • I <3 PureKaoz.com
    • View Profile
Re: Is there a Classic sorc rush script somewhere?
« Reply #5 on: December 18, 2010, 04:59:26 PM »
im dumb so please dont tell me i am !the bot is workin but my sorc is an orber... she using ice blast and blizz , how do i make her use orbs ? thanks and sorry for the nub question....oh btw this is for classic if that matters thanks again

Online Justin

  • I run this bitch!
  • Administrator
  • PureKaoz HeRo
  • *****
  • Join Date: Apr 2010
  • Posts: 688
  • Reputation 3
  • Fck Bnet
    • View Profile
    • PureKaoz.com
    • Youtube's channel
Re: Is there a Classic sorc rush script somewhere?
« Reply #6 on: January 20, 2011, 02:09:27 AM »
I use the young_love rush bot, aka PureKaoz rush bot also on classic.. Works fine.
Check your character config, and make sure you didn't quote anything out that you wasn't supposed to, and that your file is named with correct caps of your char name.
USEast Channel: Clan Kaoz
HighLyfe@jsp

Offline cooptheking03

  • D2NT Specialist
  • Big Boss Man
  • PureKaoz HeRo
  • *******
  • Join Date: Oct 2010
  • Posts: 1651
  • Reputation 4
  • I Run This Chizz
    • View Profile
Re: Is there a Classic sorc rush script somewhere?
« Reply #7 on: February 06, 2011, 01:58:52 PM »
im dumb so please dont tell me i am !the bot is workin but my sorc is an orber... she using ice blast and blizz , how do i make her use orbs ? thanks and sorry for the nub question....oh btw this is for classic if that matters thanks again

In your character file please change your attack numbers to the correct number for orb. If you need to know what they are please check the skills.txt located in the sdk folder.
I Do Not Do Support Via PM.
I Can Help Xfer Anycore/Anyrealm/Anytime.
PM me here or on JSP : TheAmazingShac0

PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Re: Is there a Classic sorc rush script somewhere?
« Reply #7 on: February 06, 2011, 01:58:52 PM »

Online Justin

  • I run this bitch!
  • Administrator
  • PureKaoz HeRo
  • *****
  • Join Date: Apr 2010
  • Posts: 688
  • Reputation 3
  • Fck Bnet
    • View Profile
    • PureKaoz.com
    • Youtube's channel
Re: Is there a Classic sorc rush script somewhere?
« Reply #8 on: February 06, 2011, 06:27:32 PM »
Yeah, use the PureKaoz rush bot for this... as i have said before.. it works great and it's simple.
USEast Channel: Clan Kaoz
HighLyfe@jsp

PureKaoz.com - D2NT, Diablo 3 & Starcaft 2 Hacks

Re: Is there a Classic sorc rush script somewhere?
« Reply #8 on: February 06, 2011, 06:27:32 PM »