Ganz genau, wobei du das umgehen kannst, indem du festlegst, dass ein Monster beim entsprechenden Skill als Immun angesehen wird und kannst dann ein Verhalten festlegen, wenn das der Fall ist.
NTConfig_AttackSkill[0] = -1; // This skill is used once whenever attacking a new target. Set to -1 to deactivate.
NTConfig_AttackSkill[1] = MWS_FROZEN_ORB; // Primary skill to bosses.
NTConfig_AttackSkill[2] = MWS_FIRE_BALL; // Primary untimed skill to boss. Set to -1 to deactivate.
NTConfig_AttackSkill[3] = MWS_FROZEN_ORB; // Primary skill to others.
NTConfig_AttackSkill[4] = MWS_FIRE_BALL; // Primary untimed skill to others. Set to -1 to deactivate.
NTConfig_AttackSkill[5] = MWS_FROZEN_ORB; // Secondary skill in case monster is immune to primary skill. Set to -1 to deactivate.
NTConfig_AttackSkill[6] = MWS_FIRE_BALL; // Secondary untimed skill. Set to -1 to deactivate.
NTConfig_AttackSkill[7] = MWS_ICE_BOLT;
habe ich drin, das regelt das doch eigentlich? (Ja weiss, Meteor verplant ;/ )
// Define when a monster is considered immune by entering the index of one or more of your attack skills. As an example: [1, 3] means that a monster is considered immune if it is immune to both NTConfig_AttackSkill[1] and NTConfig_AttackSkill[3], whatever those may be.
MWConfig_CheckImmunitySkills = [];
// Select the behaviour of your character when encountering a monsters that is considered immune referring to the definition above.
// 0: Don't do anything. (D2NT default)
// 1: Get close to the monster, use static field if the monster is not immune to lightning.
// 2: Skip the monster.
// 3: Attack the monster using NTConfig_AttackSkill[8] and NTConfig_AttackSkill[9]
NTConfig_BehaviourOnImmuneMonster = 1;
NTConfig_AttackSkill[8] = -1; // Skill to be used against user defined immunes.
NTConfig_AttackSkill[9] = -1; // Untimed Skill to be used against user defined immunes.
Da habe ich mal kurz oben was zu [1, 4] umgeschrieben, glaube aber ist der falsche Weg, hat im Bot selbst ingame dann garnichts mehr gemacht. ( eher unwichtig, wieso spammt der bot in throne of destriction random dauernd glacial spikes in die richtung, wo die waves kommen sollten? )
Frage bezüglich dem Snagit.. Hab in der unique.nip in itemconfig/private
das hier stehen :
NTConfig_AttackSkill[0] = -1; // This skill is used once whenever attacking a new target. Set to -1 to deactivate.
NTConfig_AttackSkill[1] = MWS_FROZEN_ORB; // Primary skill to bosses.
NTConfig_AttackSkill[2] = MWS_FIRE_BALL; // Primary untimed skill to boss. Set to -1 to deactivate.
NTConfig_AttackSkill[3] = MWS_FROZEN_ORB; // Primary skill to others.
NTConfig_AttackSkill[4] = MWS_FIRE_BALL; // Primary untimed skill to others. Set to -1 to deactivate.
NTConfig_AttackSkill[5] = MWS_FROZEN_ORB; // Secondary skill in case monster is immune to primary skill. Set to -1 to deactivate.
NTConfig_AttackSkill[6] = MWS_FIRE_BALL; // Secondary untimed skill. Set to -1 to deactivate.
NTConfig_AttackSkill[7] = MWS_ICE_BOLT;
habe ich drin, das regelt das doch eigentlich? (Ja weiss, Meteor verplant ;/ )
// Define when a monster is considered immune by entering the index of one or more of your attack skills. As an example: [1, 3] means that a monster is considered immune if it is immune to both NTConfig_AttackSkill[1] and NTConfig_AttackSkill[3], whatever those may be.
MWConfig_CheckImmunitySkills = [];
// Select the behaviour of your character when encountering a monsters that is considered immune referring to the definition above.
// 0: Don't do anything. (D2NT default)
// 1: Get close to the monster, use static field if the monster is not immune to lightning.
// 2: Skip the monster.
// 3: Attack the monster using NTConfig_AttackSkill[8] and NTConfig_AttackSkill[9]
NTConfig_BehaviourOnImmuneMonster = 1;
NTConfig_AttackSkill[8] = -1; // Skill to be used against user defined immunes.
NTConfig_AttackSkill[9] = -1; // Untimed Skill to be used against user defined immunes.
Da habe ich mal kurz oben was zu [1, 4] umgeschrieben, glaube aber ist der falsche Weg, hat im Bot selbst ingame dann garnichts mehr gemacht. ( eher unwichtig, wieso spammt der bot in throne of destriction random dauernd glacial spikes in die richtung, wo die waves kommen sollten? )
Frage bezüglich dem Snagit.. Hab in der unique.nip in itemconfig/private
das hier stehen :
eben droppt gheeds charm, er checkts oben, aber lässts liegen und tellt in die Stadt ?
Das Problem ist, dass der alternativ Skill in dem Fall auch Frozen Orb ist.
Somit hast du effektiv keinen altenativ Skill und könntest dir die Festlegung von Skill 5 und 6 eigentlich sparen.
Ich würde sagen, du schaffst dir einfach mal Meteor an, das sollte das Problem beheben.
Glacial Spike dient dazu, die Wellen zu entschärfen und wird dort bewusst eingesetzt.
Bezüglich des Gheeds vermute ich, dass dein Char ganz einfach schon sowas besitzt und dementsprechend keinen weiteren aufhebt, schließlich wäre das auch gar nicht möglich.
Bin grade im SP ne Dualsorc am testen und habe sie soweit auch eingestellt.
Das kam nun überraschend obwohl es vorher ohne Probleme lief. Soll ich einen Code posten? Wenn ja, welchen?
Edit: Seid ich gerade das Gold in die Truhe legte geht es wieder..:
Code:
//------------------------------------------------------------------------------
// Inventory Configuration
//------------------------------------------------------------------------------
// Number of free columns. If less full columns are free stashing is set.
NTConfig_FreeSpace = 5;
// Each number represents a slot in your inventory.
// Set to 0 if the slot and its content must not be touched.
// Set to 1 to allow access to this slot.
// Set to 2 to select the slot that is used for storing keys. (if keys are kept at another slot, your char will try to move them)
NTConfig_Columns[0] = [0,0,0,1,1,1,1,1,1,1];
NTConfig_Columns[1] = [0,0,0,1,1,1,1,1,1,1];
NTConfig_Columns[2] = [0,0,0,1,1,1,1,1,1,1];
NTConfig_Columns[3] = [0,0,2,1,1,1,1,1,1,1];
// Maximum gold amount carried before going to stash.
NTConfig_MinGoldToStash = 50000;
// Set to true if your char is supposed to carry, buy and pick up keys. You do not need to add keys to your .nip files, they will be picked up anyway if this is set to true.
MWConfig_CarryKeys = true;
Liegt es vielleicht irgendwie daran? Da aufgrund des niedrigen Levels (52) und Nightmare nicht solche Bedingungen herschen können wie in hell, habe ich das eben auf nur 50k gesetzt..
Edit2: Jetzt hat es bei einem Schild gehangen.. Ich werde mir mal die Item.cfg´s mal anschauen.
Edit3: Gut hat sich erledigt, es lag an einer Mod die ich installiert hatte..
Hey Leute ich frage mich ob und wie es gehen könnte das der Pala immer wenn möglich/nötig einen Eichbaumweiser castet, die Reparaturkosten spielen keine Rolle.
hab ich auf true mach ja public runz nur der sagt nix und geht einfach und keiner weiß bescheid
In dem Fall würde ich die globale und die Char Config mal gerne sehen.
Quote:
Originally Posted by Delettrix
Hey Leute ich frage mich ob und wie es gehen könnte das der Pala immer wenn möglich/nötig einen Eichbaumweiser castet, die Reparaturkosten spielen keine Rolle.
Ich danke euch schonmal.
Dazu müsstest du die precast libary etwas anpassen und die entsprechende Anweisung von dem case für Druiden in den für Palas kopieren. Ansonsten würde es nämlich nur für Druiden unterstützt.
Quote:
Originally Posted by b33lz3
Wo stelle ich ein, dass z.B. unique Ringe identifiziert werden?
hi
meine leech config hat ein problem,
und zwar hab ich dia und baal auf dem plan, dia funktioniert auch nur für baal wechselt der leeecher nicht nach akt 5 sondern bleibt in akt 4 und wartet auf das tp...
er erkennt auch nicht wenn dia fertig ist und wenn er zu baal wecheln muss/sollte
// Available types : "hp" = health, "mp" = mana, "rv" = rejuvenation.
// Define how many columns are used for each potion type.
MWConfig_BeltColType["hp"].Columns = 1;
MWConfig_BeltColType["mp"].Columns = 1;
MWConfig_BeltColType["rv"].Columns = 2;
// Define minimum number of potions per column. If the actual number of potions in a column is below this value, your char will visit a merchant when in town in order to buy potions.
MWConfig_BeltColType["hp"].MinPots = 2;
MWConfig_BeltColType["mp"].MinPots = 2;
// Visit Town and buy potions if your char lacks mana when trying to loot a corpse or teleport.
MWConfig_BuyPotionsOnLackOfMana = true;
// Set to true to replace low quality potions with higher quality potions that just dropped.
MWConfig_ReplaceLowQualityPotions = true;
trotzdem macht er nichts wenn nur 1 trank/0 tränke übrig sind?
Ich hätte da auch ein Problem mit dem Muddys D2nt.
und zwar folgendes:
Bei meinen leechern friert ständig d2 ein ... Soll heissen sie joinen 1 oder 2 games max aber 4 und das 4. friert dann ein, im manager wird die spielzeit weiter gezählt aber d2 reagiert nicht ... Ich habs jetzt schon über Max game time versucht zu lösen, das hilft aber nicht weil das irgendwie ausgehebelt wird ?!? Ich muss dann den bot / die d2 instanz im manager stoppen und wieder neu starten und max 4 games später ist es dann wieder das selbe ...
Der Leader z.b. läuft einwandfrei auch meist ohne irgendwelche restarts etc. Andere Bots die alleine rennen funktionieren auch einwandfrei (danke dafür muddy )
Es ist ziemlich kurios weil es halt nur beim leechbot / leechfight passiert
Hi du ich hatte das selbe problem , mit den einfrieren , ich konnte es so lösen das ich den bot eine weile mit sound laufen lassen hab und später nach paar runs wieder ohne sound eingestellt hab und jetzt läuft er wieder ohne probleme.
[Release] D2NT 3.1 1.13c 07/17/2016 - Diablo 2 - 91 Replies hi,
hab eben den d2nt3.1 gefunden. ein neues baba script is dabei.
release thread eon
D2NT3.1
[Realease] Muddy's Waypoint Catcher 08/21/2013 - Diablo 2 Programming - 46 Replies Moin zusammen,
hier mal die erste Release Version eines kleinen Scripts genannt Waypoint Catcher. Das ganze ist jetzt nichtmal 24h alt, dementsprechend sind vermutlich noch einige Bugs vorhanden. Hinweise dazu nehme ich gerne entgegen. ;)
Features:
- Suchen sämtlicher Wegpunkte mit Ausnahme, wobei in Akt ein durch Probleme im Jail Bereich nach dem Wegpunkt Outer Cloister abgebrochen wird
- Wahlweise auch mit TP an jedem gefundenen Wp, sodass man damit auch anderen (nicht-Bots) die...
[D2NT] Long Dia Release 05/10/2011 - Diablo 2 Programming - 28 Replies Ein kleines Script für diablo, es startet beim eingang macht ein tp cleart den weg zum star macht am star noch ein tp dann läufts wie das normale nur cleart es schöner :)
hoffe euch gefällts ich habs noch nicht wirklich getestet (2-3 runs) bugs können gerne hier gepostet werden verbesserungs vorschläge auch :D
installation:
1.)Script in den Bot ordner kopieren
2.)Script im editor oder vergleichbaren öffnen
3.) Msg´s anpassen (ist nicht schwer)
4.) in der char config die zeile...
Muddy's D2NT Help 07/29/2010 - Diablo 2 - 3 Replies hi i just started to use the bot it work's great.
how do i set up the skill's i use on my Sorc and pick up itme's?
.....
if you reply to this post please use english