Register for your free account! | Forgot your password?

Go Back   elitepvpers > Other Online Games > Diablo 2
You last visited: Today at 17:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Diablo 2 Botting System

Discussion on Diablo 2 Botting System within the Diablo 2 forum part of the Other Online Games category.

Reply
 
Old 11/01/2011, 15:20   #406
 
elite*gold: 0
Join Date: Jan 2011
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by 1klaus1 View Post
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)
palados is offline  
Old 11/01/2011, 15:56   #407
 
darkspinne's Avatar
 
elite*gold: 21
Join Date: Jun 2008
Posts: 571
Received Thanks: 61
Also wenn ich die D2Multi.dll in mein Ordner kopier und dann Profil starte dann stürzt der OOG ab, woran kann das liegen??
darkspinne is offline  
Old 11/01/2011, 15:57   #408
 
elite*gold: 0
Join Date: Oct 2011
Posts: 1
Received Thanks: 0
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
jemand ne idee?
ownername is offline  
Old 11/01/2011, 16:52   #409
 
elite*gold: 0
Join Date: Jan 2011
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by ownername View Post
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
jemand ne idee?
macht meine sorc immer bei immune bosse....
palados is offline  
Old 11/01/2011, 17:21   #410
 
elite*gold: 0
Join Date: Oct 2011
Posts: 5
Received Thanks: 1
Hey ,

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

Mfg
DrRockD is offline  
Old 11/01/2011, 18:22   #411
 
elite*gold: 0
Join Date: Jun 2010
Posts: 149
Received Thanks: 2
nei mir funktioniert der Bot nicht ganz

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..^^
Basiit is offline  
Old 11/01/2011, 23:39   #412
 
elite*gold: 0
Join Date: Apr 2010
Posts: 14
Received Thanks: 2
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..
hanspeterordin is offline  
Old 11/01/2011, 23:42   #413
 
darkspinne's Avatar
 
elite*gold: 21
Join Date: Jun 2008
Posts: 571
Received Thanks: 61
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.
darkspinne is offline  
Old 11/01/2011, 23:51   #414
 
elite*gold: 0
Join Date: Apr 2010
Posts: 14
Received Thanks: 2
Quote:
Originally Posted by darkspinne View Post
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...
Attached Images
File Type: jpg Unbenannt.JPG (144.1 KB, 64 views)
hanspeterordin is offline  
Old 11/02/2011, 00:36   #415
 
darkspinne's Avatar
 
elite*gold: 21
Join Date: Jun 2008
Posts: 571
Received Thanks: 61
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
darkspinne is offline  
Old 11/02/2011, 00:36   #416
 
elite*gold: 0
Join Date: Dec 2009
Posts: 5
Received Thanks: 1
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
Flame.Me is offline  
Old 11/02/2011, 01:47   #417
 
darkspinne's Avatar
 
elite*gold: 21
Join Date: Jun 2008
Posts: 571
Received Thanks: 61
Woher habt ihr ihn denn? Also wo und ovn wem geladen?
darkspinne is offline  
Old 11/02/2011, 09:32   #418
 
elite*gold: 0
Join Date: May 2008
Posts: 34
Received Thanks: 10
Quote:
Originally Posted by Northern Light View Post
yea mich auch...

aber für bosse wäre ja schon nice^^

btw hat einer link zu einem mh oder autotele?
Jo genau das interessiert mich auch!

Weis jemand wie man das Script verändert damit der bot Static NUR bei Bossen benutzt ?

Kann deswegen nichtmal Baal auf NM machen weil der Bot immer für Static in die Waves portet und dann chickend.
Hokkaido is offline  
Old 11/02/2011, 16:45   #419
 
elite*gold: 0
Join Date: Jun 2008
Posts: 108
Received Thanks: 9
@ Hokkaido nim static ganz raus bringt mehr...

so jetzt was anderes,
hab seid ner stunde RD auch router neu starten bringt nichts, nach dem ersten game is direkt wieder RD.
hat das noch wer hier?
dragonheart00 is offline  
Old 11/02/2011, 20:05   #420
 
Boehms's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 43
Received Thanks: 0
Quote:
Originally Posted by dragonheart00 View Post
@ Hokkaido nim static ganz raus bringt mehr...

so jetzt was anderes,
hab seid ner stunde RD auch router neu starten bringt nichts, nach dem ersten game is direkt wieder RD.
hat das noch wer hier?
Lass mal D2 bis morgen ruhen, da wackelt wohl dein cd key, nicht deine ip..
Morgen müsste es ohne Probleme wieder geh'n..
Gruß..
Boehms is offline  
Reply


Similar Threads Similar Threads
[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!;)



All times are GMT +1. The time now is 17:18.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.