Quote:
Originally Posted by fred9x9
Du lädst nicht zufällig eine andere dia.ntj als du vorhast?
Bzw. hast die richtige in der charconfig benannt und kein"//" davor.
Oder steht die geänderte noch bei den "availables".
um Bo Problem steht ja hioer obendran schon etwas -
|
Habe das Problem gefunden, ..
PHP Code:
MWConfig_Script.push(["NTDiablo.ntj", 10]); MWConfig_KillFullInfectorMob = true; MWConfig_StartAtStar = true; MWConfig_IgnoreSealOpeningErrors = false; MWConfig_FastDia = false;
"MWConfig_FastDia" war bei mir bisher auf "true" was
verhindert hat das er diesen Code ausführt ..
PHP Code:
if(!MWConfig_FastDia)
{
NTM_MoveTo(108, 7792, 5292);
if(NTConfig_PublicMode)
{
if(MWConfig_StartAtStar)
{
_monsterCount = MWA_FindNearbyMonsters(25);
if(_monsterCount > 1)
{
if(_monsterCount < 3 && MWConfig_Announcements.DiabloTpCold)
Say(MWConfig_Announcements.DiabloTpCold.replace(/%d/gi, _monsterCount));
else if(_monsterCount < 6 && MWConfig_Announcements.DiabloTpWarm)
Say(MWConfig_Announcements.DiabloTpWarm.replace(/%d/gi, _monsterCount));
else if(MWConfig_Announcements.DiabloTpHot)
Say(MWConfig_Announcements.DiabloTpHot.replace(/%d/gi, _monsterCount));
}
else if(MWConfig_Announcements.DiabloTpNone)
Say(MWConfig_Announcements.DiabloTpNone);
}
NTM_MakeTP();
}
Und da bei mir "Public-Mode" in der Char-Config aktiviert war hab ich nicht verstanden wieso er dieses nicht auch erkennt.
Quote:
Originally Posted by Ix-Chel
Hi, ich habe die NTCommon.ntj korrigiert, meine Sorc castet jetzt auch den Bo allerdings funktioniert es bei meinem Necro nach wie vor nicht. Bei dem habe ich dasselbe Problem wie vorher, er erkennt scheinbar das Cta immer noch nicht. Hat irgendjemand ne Idee ?
LG
|
Ich vermute folgendes ..
PHP Code:
// Array format: index 0: Value; index 1: Non-Class BO; index 2: CTA Slot
_slotVal = new Array();
_slotVal[0] = new Array();
_slotVal[0].IsCTASlot = false;
_slotVal[0].BoLevel = 0;
_slotVal[0].Primary = 0;
_slotVal[1] = new Array();
_slotVal[1].IsCTASlot = false;
_slotVal[1].BoLevel = 0;
_slotVal[1].Primary = 0;
"_slotVal[0].IsCTASlot = false;" scheint mir das Waffenblatt I zu sein & "_slotVal[1].IsCTASlot = true;" das Waffenblatt II im Inventar. Schau mal ob das funktioniert, wenn du es bei deinem Nekro tauschst.