Originally Posted by
BudBud
So it seems like Skidude is active in this thread lol
Erm Skidude I wanna ask...is there a way to change the order for my hammerdin?
so far it killed monsters........redemption........pick up drops...SO it wont actually pick up any drop instantly untill redemption is used
I have tried to disable redemption...but it still clears the area b4 picking up the items...how can i change the sequence?
PS. I have put down false in clear_position column
Edit the following files as shown below:
D2NT\scripts\NTBot\char_configs\NTConfig.ntl
D2NT\scripts\NTBot\char_configs\NTConfig_Paladin_y ourcharname.ntl
D2NT\scripts\libs\common\NTAttack.ntl
D2NT\scripts\NTBot\char_configs\NTConfig.ntl
Code:
var NTConfig_QuickPickit;
D2NT\scripts\NTBot\char_configs\NTConfig_Paladin_y ourcharname.ntl
Code:
// QuickPickit Script
NTConfig_SnagDelay = 1; // Adjust from 0-500 as needed.
NTConfig_QuickPickit = true; // Turn on/off QuickPickit
//
Now here's were gets a little more complex....
You will need to open the NTAttack.ntl file in D2NT\scripts\libs\common\.
Hopefully your using Notepad++ with the pickit language mod?
Anyways, just look for the line like this:
function NTA_ClearPosition(range, pickitem, safelevel)
It should be somewhere in the 80's (line 80-89)
keep scrolling down a bit till you see these lines:
_target = NTC_FindUnit(NTC_UNIT_MONSTER);
if(_target)
{
do
{
Now between the BOLD lines above insert the following code ....
D2NT\scripts\libs\common\NTAttack.ntl
Code:
if(NTConfig_QuickPickit)
{
NTSI_PickItems();
}
Credits:
Although I wrote the guide above I believe the credit goes to Medix or Beo900 for the method.
I've just disassembled the files in my D2NT to provide you with this solution so not sure who to give credit too. But if anyone knows let me know and I'll be sure to update the posting respectively.
Cheers,
DNA64
Bookmarks