Jump to content

nolifero

Elite+
  • Content Count

    16
  • Joined

  • Last visited

Posts posted by nolifero


  1. Hello guys. I have big problem with botting. Always when i try botting got bans for my all account (few) in 1-4 days.

    Today i lose 5 account (72lv, 62lv, 3x 40+). I use 5x paid vpn and 5x life time bot. 2 account banned after today patch and 3 account banned after 3 hour of patch. IDK why ggg know all my bots. Previous league same problem, always got bans for my all account in one moment. stfu ggg. Possible to help me ? maybe is problem in my settings, machines etc


  2. mhmm I do not think that your stashing problem is caused by one of the two scripts. Both scripts only use Quicksilver Flasks if Char is outside town. In town these scripts should do nothing...

     

    If you're using my solution be sure to have the correct pixelcolor! For me the pixelcolor changed since the latest PoE Patch.

    1. Start the script
    2. go outside town (u have to be able to cast skills!)
    3. press F5
    4. note down the pixelcolor shown in the tooltip
    5. edit "_outOfTown = 0x506D8B" to the correct value and save the ahk-file
    6. restart the script
    7. press F9

    works perfect for me and so it should for you.

     

    I make it and bot use flask but have problem with stash item in town. Sometime keep item in hand and try stash other item. Tested it and always this same error. Can't use this script : <


  3. Elaborate more and maybe I can "fix" your problem.

     

    Well if bot try stash items, sometime cant, becouse if try stash item, keep other in hand and try stash other item. I dont know how to write but I think u know what i mean.

    Ex. Try stash alternation but in hand keep scouring and dont put scouring first (idk why), keep scouring in hand and try stash alternation always. And keep keep keep in hand. And this is answer why i need fix it.


  4.  

    Sooo true! I'm using an similar Script which i created about a month ago and since using it i almost doubled my exp/h and even my currency/h.

     

    my AHK Solution looks like:

    (using pixelsearch instead of imagesearch, so no pictures needed)

    ; User Config
    _name_poe_win = Path of Exile						; Name of the window when you run game exe
    _qsDuration = 6										; enter your Quicksilver Flask duration !in seconds!
    _firstQuicksilver = 4								; inGame Hotkey for your first Quicksilver Flask
    _secondQuicksilver = 5								; inGame Hotkey for your second Quicksilver Flask
    _outOfTown = 0x506D8B								; In order to get your correct Pixelcolor please press F5
    												; !!! before pressing F5 make sure your character is currently not in any town! (you must be able to use a skill) !!!
    
    ; some needed calculations
    _qsDurationTrue := (_qsDuration * 1000) + 250
    
    ; introduction
    TrayTip, QS-Script loaded!, Options:`n> F8: Get the needed Pixelcolor!`n> F9: Start the Script (if already configured correctly)! , 2, 2
    Pause On
    
    ; Main loop for activating the Quicksilver Flask
    loop
    {
    
    	IfWinActive, %_name_poe_win%
    	{
    		PixelSearch, Px, Py, 655, 582, 655, 582, %_outOfTown%, 0, Fast
    		If Errorlevel = 1
    			Sleep 100
    		Else
    		{
    			PixelSearch, Px, Py, 5, 25, 210, 60, 0xEFFF10, 0, Fast
    			If Errorlevel = 0
    				Sleep 100
    			Else
    			{
    				Send {%_firstQuicksilver%}
    				Sleep %_qsDurationTrue%
    				PixelSearch, Px, Py, 655, 582, 655, 582, %_outOfTown%, 0, Fast
    				If Errorlevel = 0
    				{
    					Send {%_secondQuicksilver%}
    					Sleep %_qsDurationTrue%
    				}
    				else
    				{
    					sleep 100
    				}
    			}
    		}
        }
    }
    
    ; get the needed pixel color for checking if in town or not
    F8::
    	WinActivate, %_name_poe_win%
    	PixelGetColor, color, 655, 582
    	_outOfTown = %color%
    	TrayTip, Individual Pixelcolor found!, Define ''_outOfTown'' by using this color:`n`n                >>               %color%               <<`n`nBut for this time you can simply press F9 to start the script... , 10, 1
    return
    
    ; Simple Pause/Unpause Function
    F9::
    	if A_IsPaused
    	{
    		Pause off
    		TrayTip, QS-Script unpaused!, 1, 2
    	}
    	else
    	{
    		TrayTip, QS-Script paused!, Press F9 to resume... , 1, 2
    		Pause On
    	}
    return
    
    ; Exitfunction
    F10::
    	TrayTip, , terminating QS-Script! , 2.5
    	sleep 3000
    	ExitApp
    return 

    Just in case you're interested...

     

     

     

     

    aah yeah i quickly tested your script to give some feedback!

    After configuring the AuraPictures, everything was working as intended!

    Nice job!

     

     

    dont work for me, got bug with stash item. Can u make version with read image file ? maybe this work that.

×
×
  • Create New...