würd ich auch gerne wissen ob man noch woanderst einstellen kann das er die umliegenden truhen öffnet.
Hi
Ich denke mal dafür müsst ihr die Super Uniqe-Skripte verwenden. Dort könnt ihr sehr viele Super Monster auswählen mit der Option die Truhen dort in der Nähe zu öffnen.
Probierts mal aus. Bei mir funzt es, aber irgendwie ist meine Sorc noch zu schwach dafür:-) (lvl88 Blitz)
hey leute,
wisst ihr vielleicht woran es liegen könnte das meine sorc zum boss teleportiert, einmal blizzard castet und dann sofort in town geht? sie kehrt dann nicht zurück sondern geht direkt zum nächsten boss. killt ihn also nicht
Code:
//-------------------------------------------------------------------------------------------------
// Potion, Merc, and Chicken Settings:
// For the most part, the below settings should be self explanatory.
// For the life settings "80" would represent 80% life
//-------------------------------------------------------------------------------------------------
NT_PickUtility = false; // tries to fill belt and tombs with pickit
FastSnag =false; // picks after each attack. based on itemdrop event
NTConfig_StartDelay = 100; // Delay time in milliseconds to start;
NTConfig_AreaDelay = 700; // Delay time in milliseconds to change area;
NTConfig_SnagDelay = 500; // Delay time in milliseconds to wait before starting picking items
NTConfig_SkipHealLife = 50; // If you have more than this percent of life, you won't go to a healer
NTConfig_SkipHealMana = 0; // If you have more than this percent of mana, you won't go to a healer
NTConfig_SkipHealCurses = false;// If you want to skip curses, set to true
NTConfig_UseMerc = true; // Set to true if you use a mercenary, will revive merc at a reviver npc.
NTConfig_ResetWeapon = false; // Set to true to reset weapon when reviving merc
NTConfig_LifeThresh = 80; // Drink a normal potion if under this percent of life.
NTConfig_LifeRejuvThresh = 65; // Drink a rejuvenation potion if under this percent of life.
NTConfig_ManaThresh = 20; // Drink a normal potion if under this percent of mana.
NTConfig_ManaRejuvThresh = 0; // Drink a rejuvenation potion if under this percent of mana.
NTConfig_LifeChicken = 40; // This is your chicken life percent. If you go below this life total, exit game.
NTConfig_ManaChicken = 0; // This is your chicken mana percent. If you go below this mana total, exit game.
NTConfig_MercLifeThresh = 30; // This is the threshold to use a life potion on your merc in percent.
NTConfig_MercRejuvThresh = 0; // This is the threshold to use a rejuv potion on your merc in percent.
NTConfig_MercChicken = 0; // This is your mercs chicken life percent. If he goes below this, exit game.
NTConfig_FreeSpace = 4; // Number of free columns. If less full columns are free stashing is set.
// The numbers correspond to your inventory. Set 0 to keep whatever is there, 1 to stash it.
NTConfig_Columns[0] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[1] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[2] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[3] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_MinGoldToStash = 100000; // Maximum gold amount carried before going to stash
//----------------------------------------------------------------------------------------------
// Type of potion used in each belt column
// Available types : "hp" = health | "mp" = mana | "rv" = rejuv. Can use other potion types too.
// Keep equal types at adjacent columns. First HP then MP and then HP again is a bad choice.
// Keep HP and MP at the beginning of the belt (in case you want to use rejuv and other types).
// Rejuvenations MUST, I REPEAT MUST be at the end of the belt (last x columns).
// To use rejuvenations only, put "rv" in all columns.
//----------------------------------------------------------------------------------------------
NTConfig_BeltColType[0] = "hp";
NTConfig_BeltColType[1] = "hp";
NTConfig_BeltColType[2] = "mp";
NTConfig_BeltColType[3] = "mp";
//----------------------------------------------------------------------------
// Minimum amount of potions in each column before needing refilling
// If there's less potions then this number in the column we go and shop.
// Set to 4 to go shopping as soon as there's a potion missing.
// Recommend leaving columns set to "rv" at 0. Since shops won't carry rejuvs.
//----------------------------------------------------------------------------
NTConfig_BeltColMin[0] = 2;
NTConfig_BeltColMin[1] = 2;
NTConfig_BeltColMin[2] = 2;
NTConfig_BeltColMin[3] = 2;
//-----------------------------------------------------------------------------------
// SnagIt configuration
// Here is a list of preset nip files assuming you use nip package.
// If you want to add your own .nip files, just copy any line and enter the
// To disable a .nip file, just add "//" at the start of the line or delete the line.
//-----------------------------------------------------------------------------------
NTConfig_NIPFilePath.push("uniques.nip");
NTConfig_NIPFilePath.push("sets.nip");
NTConfig_NIPFilePath.push("whites.nip");
NTConfig_NIPFilePath.push("runes.nip");
NTConfig_NIPFilePath.push("rares.nip");
NTConfig_NIPFilePath.push("magics.nip");
NTConfig_NIPFilePath.push("gems.nip");
NTConfig_NIPFilePath.push("charmsjewels.nip");
NTConfig_NIPFilePath.push("ringsamulets.nip");
NTConfig_NIPFilePath.push("potions.nip");
NTConfig_NIPFilePath.push("moneymaker.nip");
NTConfig_NIPFilePath.push("keys.nip");
NTConfig_NIPFilePath.push("Shop Bot.nip");
NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here
//------------------------------------------------------------------------------
// GambleIt configuration
// To specify what items to gamble, adjust the array with the desired item codes
//------------------------------------------------------------------------------
NTConfig_GambleIt = true; // Enable gambling
NTConfig_GambleStopGold = 300000; // Gold amount to stop the gambling
NTConfig_GambleItem.push("rin"); // Rings
NTConfig_GambleItem.push("amu"); // Amulets
NTConfig_GambleItem.push("ci0"); // Circlets
NTConfig_GambleItem.push("ci1"); // Coronets
//NTConfig_GambleItem.push("lgl"); // Leather Gloves
//NTConfig_GambleItem.push("vgl"); // Heavy Gloves
//NTConfig_GambleItem.push("mgl"); // Chain Gloves
//NTConfig_GambleItem.push("tgl"); // Light Gauntlets
//NTConfig_GambleItem.push("hgl"); // Gauntlets
NTConfig_OpenChest = false; // Set to true to open chest
//------------------------------------------------------------------------------
// Attack configuration
//------------------------------------------------------------------------------
NTConfig_AttackSkill[0] = 0; // Cast your first spell once. Set to 0 if you won't
NTConfig_AttackSkill[1] = 59; // Cast your primary spell to boss.
NTConfig_AttackSkill[2] = 59; // Cast your primary spell to others.
NTConfig_AttackSkill[3] = 45; // Cast your primary untimed spell if primary spell is timed spell. Set to 0 if you won't
NTConfig_AttackSkill[4] = 0; // Cast your secondary spell if monster is immune to your primary spell. Set to 0 if you won't
NTConfig_AttackSkill[5] = 0; // Cast your secondary untimed spell if secondary spell is timed spell. Set to 0 if you won't
NTConfig_ClearPosition = false; // Set to true if you want to clear area after killing boss.
NTConfig_CheckSafe = true; // Set to true to check for curses, merc and potion (go to town if needed)
NTConfig_CastStatic = 100; // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
hey leute,
wisst ihr vielleicht woran es liegen könnte das meine sorc zum boss teleportiert, einmal blizzard castet und dann sofort in town geht? sie kehrt dann nicht zurück sondern geht direkt zum nächsten boss. killt ihn also nicht
Code:
//-------------------------------------------------------------------------------------------------
// Potion, Merc, and Chicken Settings:
// For the most part, the below settings should be self explanatory.
// For the life settings "80" would represent 80% life
//-------------------------------------------------------------------------------------------------
NT_PickUtility = false; // tries to fill belt and tombs with pickit
FastSnag =false; // picks after each attack. based on itemdrop event
NTConfig_StartDelay = 100; // Delay time in milliseconds to start;
NTConfig_AreaDelay = 700; // Delay time in milliseconds to change area;
NTConfig_SnagDelay = 500; // Delay time in milliseconds to wait before starting picking items
NTConfig_SkipHealLife = 50; // If you have more than this percent of life, you won't go to a healer
NTConfig_SkipHealMana = 0; // If you have more than this percent of mana, you won't go to a healer
NTConfig_SkipHealCurses = false;// If you want to skip curses, set to true
NTConfig_UseMerc = true; // Set to true if you use a mercenary, will revive merc at a reviver npc.
NTConfig_ResetWeapon = false; // Set to true to reset weapon when reviving merc
NTConfig_LifeThresh = 80; // Drink a normal potion if under this percent of life.
NTConfig_LifeRejuvThresh = 65; // Drink a rejuvenation potion if under this percent of life.
NTConfig_ManaThresh = 20; // Drink a normal potion if under this percent of mana.
NTConfig_ManaRejuvThresh = 0; // Drink a rejuvenation potion if under this percent of mana.
NTConfig_LifeChicken = 40; // This is your chicken life percent. If you go below this life total, exit game.
NTConfig_ManaChicken = 0; // This is your chicken mana percent. If you go below this mana total, exit game.
NTConfig_MercLifeThresh = 30; // This is the threshold to use a life potion on your merc in percent.
NTConfig_MercRejuvThresh = 0; // This is the threshold to use a rejuv potion on your merc in percent.
NTConfig_MercChicken = 0; // This is your mercs chicken life percent. If he goes below this, exit game.
NTConfig_FreeSpace = 4; // Number of free columns. If less full columns are free stashing is set.
// The numbers correspond to your inventory. Set 0 to keep whatever is there, 1 to stash it.
NTConfig_Columns[0] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[1] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[2] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_Columns[3] = [1,1,1,1,0,0,0,0,0,0];
NTConfig_MinGoldToStash = 100000; // Maximum gold amount carried before going to stash
//----------------------------------------------------------------------------------------------
// Type of potion used in each belt column
// Available types : "hp" = health | "mp" = mana | "rv" = rejuv. Can use other potion types too.
// Keep equal types at adjacent columns. First HP then MP and then HP again is a bad choice.
// Keep HP and MP at the beginning of the belt (in case you want to use rejuv and other types).
// Rejuvenations MUST, I REPEAT MUST be at the end of the belt (last x columns).
// To use rejuvenations only, put "rv" in all columns.
//----------------------------------------------------------------------------------------------
NTConfig_BeltColType[0] = "hp";
NTConfig_BeltColType[1] = "hp";
NTConfig_BeltColType[2] = "mp";
NTConfig_BeltColType[3] = "mp";
//----------------------------------------------------------------------------
// Minimum amount of potions in each column before needing refilling
// If there's less potions then this number in the column we go and shop.
// Set to 4 to go shopping as soon as there's a potion missing.
// Recommend leaving columns set to "rv" at 0. Since shops won't carry rejuvs.
//----------------------------------------------------------------------------
NTConfig_BeltColMin[0] = 2;
NTConfig_BeltColMin[1] = 2;
NTConfig_BeltColMin[2] = 2;
NTConfig_BeltColMin[3] = 2;
//-----------------------------------------------------------------------------------
// SnagIt configuration
// Here is a list of preset nip files assuming you use nip package.
// If you want to add your own .nip files, just copy any line and enter the
// To disable a .nip file, just add "//" at the start of the line or delete the line.
//-----------------------------------------------------------------------------------
NTConfig_NIPFilePath.push("uniques.nip");
NTConfig_NIPFilePath.push("sets.nip");
NTConfig_NIPFilePath.push("whites.nip");
NTConfig_NIPFilePath.push("runes.nip");
NTConfig_NIPFilePath.push("rares.nip");
NTConfig_NIPFilePath.push("magics.nip");
NTConfig_NIPFilePath.push("gems.nip");
NTConfig_NIPFilePath.push("charmsjewels.nip");
NTConfig_NIPFilePath.push("ringsamulets.nip");
NTConfig_NIPFilePath.push("potions.nip");
NTConfig_NIPFilePath.push("moneymaker.nip");
NTConfig_NIPFilePath.push("keys.nip");
NTConfig_NIPFilePath.push("Shop Bot.nip");
NTConfig_SnagRange = 40; // Radius to check for dropped items. 40 is a good number here
//------------------------------------------------------------------------------
// GambleIt configuration
// To specify what items to gamble, adjust the array with the desired item codes
//------------------------------------------------------------------------------
NTConfig_GambleIt = true; // Enable gambling
NTConfig_GambleStopGold = 300000; // Gold amount to stop the gambling
NTConfig_GambleItem.push("rin"); // Rings
NTConfig_GambleItem.push("amu"); // Amulets
NTConfig_GambleItem.push("ci0"); // Circlets
NTConfig_GambleItem.push("ci1"); // Coronets
//NTConfig_GambleItem.push("lgl"); // Leather Gloves
//NTConfig_GambleItem.push("vgl"); // Heavy Gloves
//NTConfig_GambleItem.push("mgl"); // Chain Gloves
//NTConfig_GambleItem.push("tgl"); // Light Gauntlets
//NTConfig_GambleItem.push("hgl"); // Gauntlets
NTConfig_OpenChest = false; // Set to true to open chest
//------------------------------------------------------------------------------
// Attack configuration
//------------------------------------------------------------------------------
NTConfig_AttackSkill[0] = 0; // Cast your first spell once. Set to 0 if you won't
NTConfig_AttackSkill[1] = 59; // Cast your primary spell to boss.
NTConfig_AttackSkill[2] = 59; // Cast your primary spell to others.
NTConfig_AttackSkill[3] = 45; // Cast your primary untimed spell if primary spell is timed spell. Set to 0 if you won't
NTConfig_AttackSkill[4] = 0; // Cast your secondary spell if monster is immune to your primary spell. Set to 0 if you won't
NTConfig_AttackSkill[5] = 0; // Cast your secondary untimed spell if secondary spell is timed spell. Set to 0 if you won't
NTConfig_ClearPosition = false; // Set to true if you want to clear area after killing boss.
NTConfig_CheckSafe = true; // Set to true to check for curses, merc and potion (go to town if needed)
NTConfig_CastStatic = 100; // Cast Static Field until monster's HP lower less than this percent. Set to 100 if you won't
habe alle Probleme die mit Fehlermeldungen zu hatten gelöst ...
Jetzt startet der Bot zwar D2 logt sich aber nicht ins bnet ein.
(profile müsste alles passen , kann eigentlich nicht daran liegen)
irgendwelche Ideen?
danke im Vorraus
beim 1. starten stürzt er direkt ab. danach kill ich ihn wieder und starte es erneu. damit kommt er schonmal ins game. im game macht er dann einfach nichts :/
einer ne idee ?
hab zwar auch noch keine wps und co, aber das sollte er ja erst merken, wenn er zum wp geht..^^
ich habe mir diesen bot runtergeladen u benutzt. Nach 3 tagen loggte sich jemand auf meinen account und stahl meine 2 sojs. als ich fragte wie er das gemacht habe bzw woher er mein pw hat sagte er nur: "dont trust unofficial bot releases"... in diesem sinne..
Haha nur 1 Fehler in deinem Satz . Du sagtest er hat sich mit deinem Acc eingeloggt und hast Ihn gefragt wie er das gemacht hat. Wo willst du ihn gefragt haben? Und wie? Als er dir deine 2 Sojs gestohlen hat? Ich denke so ein "Diebstahl" dauert nicht länger als 2 Min. Heißt du musst genau da wo er es gestohlen haben soll direkt mit nem anderen Acc rein und dann fragen. UND DANN muss er auch noch einer sein der DANN antwortet. SEHR unwerscheinlich. Ich denke da gewinnst du schneller 1000€ bei Lotto als das sowas passiert =D.
Haha nur 1 Fehler in deinem Satz . Du sagtest er hat sich mit deinem Acc eingeloggt und hast Ihn gefragt wie er das gemacht hat. Wo willst du ihn gefragt haben? Und wie? Als er dir deine 2 Sojs gestohlen hat? Ich denke so ein "Diebstahl" dauert nicht länger als 2 Min. Heißt du musst genau da wo er es gestohlen haben soll direkt mit nem anderen Acc rein und dann fragen. UND DANN muss er auch noch einer sein der DANN antwortet. SEHR unwerscheinlich. Ich denke da gewinnst du schneller 1000€ bei Lotto als das sowas passiert =D.
hier mal ein kurzer ausschnitt der ersten konversation... mehr screens habe ich leider nicht, da ich in dem moment ziemlich perplex war....
es war so, dass ich auf einem muleaccount online war als er sich einloggte. ich bekam eine meldung vom friendsystem, dass sich der account eingeloggt hat, da ich ihn auf der friendlist habe, so wie er mich.
dann loggte er sich in ein game mit dem namen rp2 passwort 2 (was ich geraten habe und es stimmte)... daraufhin bin ich das game ebenfalls gejoined u habe ihn angesprochen.. er antwortete nicht bis er das game verlies... aber dann whisperte er mir.... ich war freundlich, da ich informationen wollte... ich bat ihn also mir zu sagen wie er es gemacht hat u. er sagt nur dont trust unoficial bot releases...
mhm ok ? oO wenn du ihn von hier hast dann sehr unverscheinlich das der verseucht ist, da eigendlich der D2BS wie Muddy im anderen Script schon sagte ein "alter" Bot ist und der von den "Urgesteinen" der D2 Scene geproggt wird oder so sagte er :P. Also NORMALER weiße ist der D2BS SICHER
Kann ich bestätigen. Hab zwar nicht mit dem Typen reden können, weil auf arbeit war, aber der Account ist leer, sogar die mules hat er gelöscht. Hatte Gear für Pala und Sorc dort, nicht zu teuer, aber tut schon weh. Irgendwer lacht sich grad tierisch eins ab mit dem prog
[S]Easymetin2 botting card [B] china botting acc ( 30 tage) 11/15/2010 - Metin2 Trading - 3 Replies Ja hallo wie schon geasgt suche ich eine easymetin2 30 tägigen botting card
ich biete dafür eine china botting card wo man max 20 fenster auf machen kann
Jetzt werden welche sagen warum ich tauschen sollte 20 fenster sind besser als 3 aber mein pc schafft net mehr als 3 und dann kann ich bei easymetin2 net vorstellen mehr zu machen ^^
Handle nur über mm
Diablo 3 Skill System Revisions in Full Force 12/03/2009 - Gaming News - EN - 1 Replies Diablo 3 won't be on shelves anytime soon and we know one of the reasons why. Blizzard has pretty much decided to trash the old skill system we know and love. On a Diablo Twitter post, it was confirmed that the skill system revisions are now in full force. Unfortunately, the Tweet didn't offer much by way of details on the new revisions. A later Tweet also hinted at the respec option getting integrated a bit differently with the new revisions.
Diablo (Diablo) on Twitter
(via tentonhammer,...
Stupid Anti-Botting System (THQICE) 09/24/2009 - Dragonica - 12 Replies Hi everybody, I'm wondering if any of you have found a way around that gay anti botting system in THQICE. The one where a pop up message appears and makes you answer a question. It's kinda hard to keep botting since I'm leaving my computer on overnight..:mad: So please, if any of you know a way around this, or Kane, if you can whip something up against this with your pro skills, I'll be really grateful.:handsdown: Thanks!;)