allerdings bekomme ich andauernd den fehler:
<D2NT error> [...]\char_configs\NTConfig_undsoweiter.ntl (4) : ReferenceError: NTConfig_NIPFilePath is not defined
kann jemand helfen?
so sieht meine NTPick.ntj aus:
Code:
function NTMain()
{
Delay(1000);
var _ingame = false;
while(1)
{
if(me.ingame)
{
if(!_ingame)
{
RunGC();
if(Load("NTPick/NTPickGame.ntj"))
_ingame = true;
}
Delay(1000);
}
else
{
if(_ingame)
_ingame = false;
Delay(500);
}
}
}
Code:
function NTMain()
{
Delay(1000);
Include("libs/common/NTCommon.ntl");
NTC_IncludeConfig("NTPick/char_configs");
Include("libs/common/NTSnagit.ntl");
NT_LoadConfig();
NTSI_LoadNIPFiles("NTPick/item_configs");
while(1)
{
if(!NTC_InTown())
{
NTSI_PickItems();
NTC_Delay(200);
}
}
}
und so die pick.ntj:Quote:
function NT_LoadConfig()
{
NTConfig_SnagDelay = 500;
NTConfig_NIPFilePath.push("pick.nip");
NTConfig_SnagRange = 5;
}
Code:
[Quality] == unique [Quality] == rare






