[Proof of Concept] Anti Ban menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Proof of Concept] Anti Ban

    Here I will show my anti ban system: ( i have also make a process re-namer)

    Here is a screenshot:


    I use it while using My MrFishIt Addon that I posted.


    It will pick one of 3 options randomly.

    1)It can logout and go on another char and check the mail box(talks if set to), then logs back in(talks if set to), and carries on fishing.

    2) Randomly moves the mouse

    3) Closes or opens Minimap

    It sets DND message, if it is set to.

    It seems to work well.

    Here is the code, Depending on your rezalution you may need to change the cordinates but you can easily get these by using the Auto It Help window.

    Code:
    #include <ButtonConstants.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <StaticConstants.au3>
    #include <WindowsConstants.au3>
    
    opt("SendKeyDelay",75) ; Slow down send
    $processname = FileGetShortName(@ScriptName)
    
    
    #Region ### START Koda GUI section ### Form=
    $MainGUI = GUICreate($processname, 625, 105, 650, 627)
    $Group1 = GUICtrlCreateGroup("Login into mail char", 8, 0, 289, 57)
    $mailchar = GUICtrlCreateInput("Yes", 16, 16, 121, 21)
    $Group2 = GUICtrlCreateGroup("Talk on login", 144, 8, 145, 41)
    $Loginchat = GUICtrlCreateInput("Yes", 152, 24, 129, 21)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group3 = GUICtrlCreateGroup("Fishing Char settings", 304, 0, 313, 97)
    $Group4 = GUICtrlCreateGroup("Talk when login in", 312, 16, 137, 49)
    $loginchatmain = GUICtrlCreateInput("Yes", 320, 32, 121, 21)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group5 = GUICtrlCreateGroup("Set DND", 456, 8, 153, 73)
    $Dndset = GUICtrlCreateInput("Yes", 464, 24, 137, 21)
    $Dndreason = GUICtrlCreateInput("Fishing while watching TV, probs will miss your whisper!", 464, 48, 137, 21)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Accept = GUICtrlCreateButton("Accept", 312, 64, 139, 25, 0)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group6 = GUICtrlCreateGroup("Randomly close minimap", 8, 56, 137, 41)
    $randomMinimap = GUICtrlCreateInput("Yes", 16, 72, 121, 21)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    $Group7 = GUICtrlCreateGroup("Random mouse move", 152, 56, 145, 41)
    $Randommouse = GUICtrlCreateInput("Yes", 160, 72, 121, 21)
    GUICtrlCreateGroup("", -99, -99, 1, 1)
    *****tState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    		Case $Accept
    		$randomoption = Random(1,3,1)
    		If $randomoption = 1 Then
    		Sleep(Random(2220000, 588000))
    		_CheckMail()
    		EndIf
    		If $randomoption = 2 Then
    		Sleep(Random(37000,97000))
    		_Mousemove()
    		EndIf		
    		If $randomoption = 3 Then
    		Sleep(Random(57000, 123000))
    		_minimapaction()
    		EndIf			
    	EndSwitch
    WEnd
    
    Func _Loginfisher()
    	WinActivate("World of Warcraft") ; Make sure wow is active
    	MouseClick("Left", Random(1090, 1253), Random(272,306)) ; Click fisher
    	sleep(500); wait 
    	MouseClick("Left", Random(735,875), Random(566, 581)) ; Click login button
    	Sleep(30000) ; Wait for it to load
    	MouseClick("left", 805, 614);scroll to fishing icons
    	Sleep(500)
    	If GUICtrlRead($loginchatmain) = "Yes" Then
    	Send("/G Hello {enter}")
    	EndIf
    	Sleep(500)
    	If GUICtrlRead($Dndset) = "Yes" Then
    	Send("/DND " & GUICtrlRead($Dndreason) & "{enter}")
    	EndIf
    	MouseClick("left", 50, 101, 2) ;Start fish
    EndFunc
    
    
    Func Checkmail()
    MouseClick("left", 30, 35, 2) ; Click defualt tab
    Sleep(500); wait
    MouseClick("left", 112, 96, 2) ; Click stop
    Sleep(500); wait
    WinActivate("World of Warcraft") ; Make sure wow is active
    Sleep(1000) ; wait
    MouseClick("Left", Random(988,1000), Random(598, 616)) ; Click Comp Button
    Sleep(500) ; Wait
    MouseClick("Left", Random(750,844), Random(344, 350)) ; Click Logout button
    Sleep(35000) ; Wait 20 seconds to logout and an extra 15
    If GUICtrlRead($Loginchat) = "Yes" Then
    Send("/g Just checking Mail box {enter}")
    EndIf
    MouseClick("Left", Random(1084,1254), Random(316, 349)) ; Click mail box char
    Sleep(500); Wait
    MouseClick("Left", Random(735,875), Random(566, 581)) ; Click login button
    Sleep(30000) ; Wait for it to load
    MouseClick("Right", Random(788,808), Random(304, 386)) ;click mail box
    Sleep(500); Wait
    MouseClick("Left", Random(580,588), Random(126, 132)) ; close mail box
    sleep(500); Wait
    MouseClick("Left", Random(988,1000), Random(598, 616)) ; Click Comp Button
    Sleep(500) ; Wait
    MouseClick("Left", Random(750,844), Random(344, 350)) ; Click Logout button
    Sleep(10000) ; Wait
    _Loginfisher()
    EndFunc
    
    Func _Mousemove()
    	MouseMove(Random(0, 1278), Random(0, 796))
    EndFunc
    
    Func _minimapaction()
    	MouseClick("Left", 1260, 57)
    EndFunc
    NOTE: THIS USES YOUR MOUSE!!!! YOU CANNOT HIDE WOW!!! IF SOMEONE IS WILLING TO TEACH ME MEMORY READING THEN I WILL MAKE IT WORK IN THE BACKGROUND.

    ALSO FOR THE MAIL BOX YOU MUST LOG OFF THE MAIL BOX CHARACTER IN FRONT OF THE MAIL BOX(As close as possible) Facing the mailbox

    Enjoy
    Last edited by ashleyww; 05-13-2009 at 07:07 PM. Reason: Added Code

    [Proof of Concept] Anti Ban
  2. #2
    nothinglol's Avatar Contributor
    Reputation
    166
    Join Date
    Mar 2009
    Posts
    769
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wait, you made this post just to show your program, with no DL? saywut?

  3. #3
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nothinglol View Post
    Wait, you made this post just to show your program, with no DL? saywut?
    Yes, I dont want to release it if people are not going to use it. If 1 person likes the idea and would like to try it ill upload it.

  4. #4
    UnknOwned's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    583
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    As much as I think this does'nt help a damn... i have seen hundreds that have been banned for ill behaviour (even using completely pirvate bots etc).

    You know... Its like a tinfoil hat... a cheap investment.... not verry comfortable.... but... in-case aliens come and toast our brains you might get lucky.

  5. #5
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems to of worked for

    Tin foil hat FTW

  6. #6
    Shadowbrowser's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I like it i want the DL Pleaseeeeee

  7. #7
    djdeadgoth's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    nice

    ill take a crack at it

  8. #8
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code added

  9. #9
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ashleyww View Post

    NOTE: THIS USES YOUR MOUSE!!!! YOU CANNOT HIDE WOW!!! IF SOMEONE IS WILLING TO TEACH ME MEMORY READING THEN I WILL MAKE IT WORK IN THE BACKGROUND.

    ALSO FOR THE MAIL BOX YOU MUST LOG OFF THE MAIL BOX CHARACTER IN FRONT OF THE MAIL BOX(As close as possible) Facing the mailbox

    Enjoy
    You would probley get banned if you use injection though... BUT, anyhow THis has been done in the past,l but haven't seen it in a while.


  10. #10
    ugkbunb's Avatar Member
    Reputation
    3
    Join Date
    May 2008
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by UnknOwned View Post
    You know... Its like a tinfoil hat... a cheap investment.... not verry comfortable.... but... in-case aliens come and toast our brains you might get lucky.
    tin foil hats and zombie blasters... you gotta be prepared!

    http://www.zombiedefenseforce.com/Science.php

  11. #11
    King Protos's Avatar Active Member
    Reputation
    40
    Join Date
    Sep 2007
    Posts
    516
    Thanks G/R
    2/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't know about you guys, but I ALWAYS wear a tinfoil hat.

    Download would be much obliged, +rep for being cool.

    EDIT: I need to spread some around before repping you again =(


  12. #12
    Tierman's Avatar Active Member
    Reputation
    40
    Join Date
    Jan 2009
    Posts
    343
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Pretty nice. Would be alot better if you added some code that could detect the screen size and base coords off of that.

    https://change.dossergame.co.uk/change_please/4636419/

  13. #13
    Maxmaximuss2's Avatar Member
    Reputation
    12
    Join Date
    Sep 2008
    Posts
    246
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    so easy man ... just copy + paste it into autoit .. and then save it at desktop or whatever .. then you got the bot running 100 % ...

    -.-
    The CyberSpace will cover the future of AutoIT!
    Maxmaximuss2.

  14. #14
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ~Jagris View Post
    You would probley get banned if you use injection though...
    Jezus, what more do you get from using injection? AIDS?

    Ashlynn, try to read the memory-editing section with your eyes OPEN. Everything your glorified send() "bot" does can be done through memory-editing and is properly discussed there.


    Oh I very much doubt that all mouse movement is send to the server... same story with the minimap toggle.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  15. #15
    ashleyww's Avatar Banned
    Reputation
    6
    Join Date
    Apr 2009
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske007a View Post
    Jezus, what more do you get from using injection? AIDS?

    Ashlynn, try to read the memory-editing section with your eyes OPEN. Everything your glorified send() "bot" does can be done through memory-editing and is properly discussed there.


    Oh I very much doubt that all mouse movement is send to the server... same story with the minimap toggle.


    Your a little rude! I have look in the "memory-editing" section, and i cant find any help? can you pinpoint a topic?

Page 1 of 2 12 LastLast

Similar Threads

  1. [Selling] [s] $10.00 mods (legit seller with proof) *free anti ban* all consoles!$with modmenu$
    By JonoIsDrunkSkepta in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 05-26-2016, 04:50 PM
  2. [Selling] [s] $10.00 mods (legit seller with proof) *free anti ban* all consoles!$with modmenu$
    By DrunkSkepta in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 05-26-2016, 02:56 PM
  3. [Selling] [s] modded accounts with mod menu!all consoles! (legit with proof) free anti ban! $10
    By Killa Beez Otara in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 05-25-2016, 09:23 PM
  4. [Selling] [s] $10.00 mods (legit seller with proof) *free anti ban* all consoles!$with modmenu$
    By SuicidalMods in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 05-25-2016, 07:02 PM
  5. [Selling] [s] cheap modded accounts! All consoles! Legit seller with proof! Free anti ban!
    By Kurt The Midget in forum Grand Theft Auto 5 Buy Sell Trade
    Replies: 0
    Last Post: 05-25-2016, 01:37 AM
All times are GMT -5. The time now is 11:58 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search