Author Topic: Change the Pickit not only in hell & change where to buy potions  (Read 1751 times)

Offline killziky

  • Newbie
  • *
  • Join Date: Jun 2010
  • Posts: 46
  • Reputation 0
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #15 on: August 11, 2010, 11:53:49 PM »
yu could use my var's. do:

Code: [Select]
if(Im_In_Normall || Im_In_Nightmare)
{
Buy in a4
}
else
{
Buy normal
}

Should be easy ^ ^

Will be trying to make this but i'm gonna have to look at how i wanna do it.. all npc's are specified but chosen by
Code: [Select]
me.act but it's easily solveable when i get to my class (we sit at pc's having fun all day anyway) so i'll wake up a bit more and do it! ^^

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

Re: Change the Pickit not only in hell & change where to buy potions
« Reply #15 on: August 11, 2010, 11:53:49 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: Change the Pickit not only in hell & change where to buy potions
« Reply #16 on: August 12, 2010, 12:24:08 AM »
Code: [Select]
if(Im_In_Normall || Im_In_Nightmare)
{
if(me.areaid != 103)
{
NTTM_TownMove("waypoint");
NTM_TakeWaypoint(103);
}
Buy Pots
}
else
{
Buy pots
}


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: Change the Pickit not only in hell & change where to buy potions
« Reply #16 on: August 12, 2010, 12:24:08 AM »

Offline Apeboyz

  • Newbie
  • *
  • Join Date: Aug 2010
  • Posts: 25
  • Reputation 0
  • I <3 PureKaoz.com
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #17 on: August 12, 2010, 12:32:55 AM »
yu could use my var's. do:

Code: [Select]
if(Im_In_Normall || Im_In_Nightmare)
{
Buy in a4
}
else
{
Buy normal
}

Should be easy ^ ^

thought about that. but i seriously had no time, had to finish 1-80 level service and 20x classic rush ^^

since u can only join a game with 4 chars / ip it sucks to rush only 3 ppl at once.

i didnt found a good proxy yet, most are too slow / instable

Offline killziky

  • Newbie
  • *
  • Join Date: Jun 2010
  • Posts: 46
  • Reputation 0
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #18 on: August 12, 2010, 12:56:59 AM »
Code: [Select]
if(Im_In_Normall || Im_In_Nightmare)
{
if(me.areaid != 103)
{
NTTM_TownMove("waypoint");
NTM_TakeWaypoint(103);
}
Buy Pots
}
else
{
Buy pots
}

nice! half my work is finding the commands etc for it so you did my job xD i'll do it even though apeboys don't need it anymore.. could be a nice add for the rushbot anyway :)

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

Re: Change the Pickit not only in hell & change where to buy potions
« Reply #18 on: August 12, 2010, 12:56:59 AM »

Offline Apeboyz

  • Newbie
  • *
  • Join Date: Aug 2010
  • Posts: 25
  • Reputation 0
  • I <3 PureKaoz.com
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #19 on: August 12, 2010, 02:01:37 AM »
i need it :-(

but in the string:

if(Im_In_Normall || Im_In_Nightmare)

Nightmare is not needed, cus u can buy the greater potions in act 1.

if(Im_In_Normall)

if just important then mate

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

Re: Change the Pickit not only in hell & change where to buy potions
« Reply #19 on: August 12, 2010, 02:01:37 AM »

Offline killziky

  • Newbie
  • *
  • Join Date: Jun 2010
  • Posts: 46
  • Reputation 0
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #20 on: August 12, 2010, 06:28:14 AM »
i need it :-(

but in the string:

if(Im_In_Normall || Im_In_Nightmare)

Nightmare is not needed, cus u can buy the greater potions in act 1.

if(Im_In_Normall)

if just important then mate

Dunno if i did good or bad but to me this seems like enough ^^

Code: [Select]
if(NTConfig_BuyAct4Pots && me.diff == 0)
{
NTTMGR_VisitJamella();
NTT_FillBelt(_npc);
}
break;

this need to get a var in nt config and charconfig called NTConfig_BuyAct4Pots but i'm testing now as my other solution looked a lil better but had some flaws i had to think about. TESTING!


/EDIT

the very sad thing is i modified it and it worked, although it drops all mana/juvs at start (it wants 4x healpot columns) but it went to act4 and bought friggin miners pots!! LOL

it looks like this now
Code: [Select]
if(NTConfig_BuyAct4Pots && me.diff == 0)
{
if(me.areaid != 103)
{
NTTM_TownMove("waypoint");
NTM_TakeWaypoint(103);
}
if(_NTTMGR_BuyPots)
NTTMGR_VisitJamella();
}
else
{
return;
}

placed it just over
Code: [Select]
switch(me.act)
any thoughts?
« Last Edit: August 12, 2010, 07:10:57 AM by killziky »

Offline killziky

  • Newbie
  • *
  • Join Date: Jun 2010
  • Posts: 46
  • Reputation 0
    • View Profile
Re: Change the Pickit not only in hell & change where to buy potions
« Reply #21 on: August 12, 2010, 10:05:59 AM »
http://purekaoz.com/index.php/topic,625.new.html#new

link to finished script thread!! made it better than i expected myself!

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

Re: Change the Pickit not only in hell & change where to buy potions
« Reply #21 on: August 12, 2010, 10:05:59 AM »