Jump to content

jpbot

Elite+
  • Content Count

    89
  • Joined

  • Last visited

Everything posted by jpbot

  1. Okay, the newer version is a lot better for the wrong button hit. I am now having an issue with the town/map detection. I followed the steps in previous posts to find the real values but they don't seem to work because the VM has the bright glitch to it. Thats the problem : / Tried that but didn't help. It's not reliably recognizing the colors for some reason. Plus that doesn't work if you want the bot to take breaks. Maybe jpbot can implement F1 pressing and checking. F1 may interfere with pixel/image search. I tested my script in a VM but I had the flickering glitch and could not make it work : /
  2. jpbot

    Item Stats Help

    thanks but that format do not work for me : /
  3. jpbot

    Item Stats Help

    1. Where I can find Suffix and Prefix POE Mods ? I found this prefixmod suffixmod poe.roleplayer but I need that info like when you put mouse over an item and ctrl + c Rarity: Rare Foe Loop Ruby Ring -------- Requirements: Level: 26 -------- Itemlevel: 65 -------- +29% to Fire Resistance -------- Adds 6-10 Physical Damage +27 to Strength +26 to Dexterity +43 to Evasion Rating stats in this format. +29% to Fire Resistance Adds 6-10 Physical Damage +27 to Strength +26 to Dexterity +43 to Evasion Rating Anybody know where I can find them? 2. I want to know which stats are the best? if anyone know please comment
  4. I do not have much time at this moment, but I will add this to my TODO list.TODO: Finish my crafting script for poe Add Swich tabs for stashing Suicide exiled? yup that would be the "hard" part hm if we pause where there are no monsters = no damage. So eeb it is not working for you? is not closing the exiledbot popup? lmk Saludos.
  5. the problem is he is getting the same values for all variables so town detecting it is not working for him You can try two options Option 1. Search in script check.town.ahk original 655, 582 and change all occurrences(7) with thisnew 655, 563 earlier someone got similar problem and these coordinate ran for him. however a better option should be this Option 2 basically we are looking for 3 values, all 3 diferent 1. _activeSkillInTown mouse right skill in town. Ex. 2. _activeSkillInMap mouse right skill out of town. Ex 3. _activeSkillInMapInactive mouse right skill out of town without mana no image sry : / but you get the idea 4. Zoom for better understanding I put a red circle where the spot is, its just an example, we are looking just for 1 pixel, so it is really small, as you can see they have diferent colors, i don't know why are you getting the same values 5. So save this script as check.xy.color.ahk and run it #Persistent SetTimer, WatchCursor, 100 return WatchCursor: CoordMode, Pixel, Relative MouseGetPos,MouseX ,MouseY , id, control PixelGetColor, color, %MouseX%, %MouseY% WinGetTitle, title, ahk_id %id% WinGetClass, class, ahk_id %id% ToolTip, X/Y %MouseX%/%MouseY% `ncolor %color%`nahk_class %class%`nahk_id %id%`n%title%`nControl: %control% return 6. Run POE. 7. Put your mouse hover the center of the red circle (point 4), write coordinates you got and then go to opcion 1 and test with these coordinates.
  6. Yup it is in my TODO list, at this moment I have not much time available, but the next thing I want to do is that I updated the script, update yours and should work without problem (exiledbot v.10)
  7. try this MsgBox, %A_WorkingDir% should be the path of your "eeb.ini" fileYup, your case was very weird, but glad that now it is "solved" your "eeb.ini" file is configured correctly? "imageserach test" read that file and take the path of images from him Edit: I updated imagesearch script, update yours too.
  8. jpbot

    Crafting is awesome :)

    Question. Release = full wipe?
  9. no problem. for searching the button number use Window Spy Check ClasNN of "Start Bot" Button 1. Run AutoIt3 Window Spy (in same folder than autohotkey) 2. Open Exiledbot 3. Select Exiledbot window 4. Move mouse to "Start Bot" Button 5. Check ClasNN of "Start Bot" Button @ Window Spy
  10. still not clicking.. also, it isnt stashing. it turns on labels.. turns off labels.. i adjusted the 110 that you mentioned a bit back way up.. no difference. not sure if maybe where you use image search, my colors may just be off? ------------------------- for imagesearch try this: Test Imagesearch 1. Make a file named "check.imagesearch.eeb.ahk" copy paste this code in that file, put that file in same folder than eeb.ini file. 2. Run the script. 3. Press F4. 4. Go out of town and die, if you are hc do not do this wait 5 seconds. 5. Go out of town and use any aura(should be on one of the defult slots QWERT) wait 5 seconds. 6. In town, walk close to stash and press the key for showing labels, wait 5 seconds. 7. In town, open inventory (you should have a gem ready to be upped), wait 5 seconds. 8. In town, open stash, wait 5 seconds. 9. In town, take any item and drop it, wait 5 seconds. 10. Press ESC to exit scrip. 11. Open file test.image.search.eeb.txt. You should see something like this: resurrect.png ok aura.png ok gemplus.png ok stash.png ok stash.opened.png ok destroy.png If any of those lines is mis(except "resurrect.png ok" if you are hc), _eeb.ahk script, may should not work for you : / If Imagesearch not working or missing some of they, try this: Solutions: Option 1: Search all occurrences of "ImageSearch" you should see a line like this (??? can be any value) ImageSearch, Px, Py, ???,???, ???, ???,*100 %_path_images%\???.png change *100 for *110 or *120 or *130Option 2: Make your own images. Check the original image, take a ss, cut the part that you need, save with the original name, check if work, repeat for any image that you are missing. Option 3: ?????? ------------------------- let me think about the click problem : / Edit: Testing ControlClick I use ControlClick because it send actions even if window it is inactive. I want to test if ControlClick work for you. Add this code to file test.stuff.ahk, at the end of script should be ok F2:: name_win := "Calc" IfWinExist , %name_win% { ControlClick, Button16, %name_win% ;Button16 number 9 ControlClick, Button17, %name_win% ;Button17 number 6 if ErrorLevel msgbox error @ click Sleep 1000 } else { msgbox windows not found } return 1. Open Windows Calculator and minimize it 2. Run test.stuff.ahk script 3. Press F2 4. Check if number 96 appears in Calculator 5. Comment.
  11. try this: Town Detecting 1. Make a file named "check.town.ahk" copy paste this code in that file, put that file in same folder than eeb.ini file. 2. Open poe. 3. Run the script. 4. Press F4 for check town (ESC close the script) 5. Stay in town, check message in Toolbar. (Should be "In town") 5. Go out of town, check message in Toolbar. (Should be "In map") 5. Go out of town, use all your mana, check messagge in Toolbar. (Should be "In map") If you have all three messages, detect town it is working for you If not working, try this Comment if "town detecting" it is working for you
  12. try this: ControlClick, x715 y495, ahk_pid %EB_PID% edit: my code miss a ,
  13. the script says Done... 2 but it doesnt press the button.. because if i press it, it says game not found.. it does however open up the POE bot. search in test.stuff.ahk and replace this lines: PostMessage, 0x201, , , Button1, ahk_pid %EB_PID% PostMessage, 0x202, , , Button1, ahk_pid %EB_PID% with this ControlClick, Button1, ahk_pid %EB_PID% check again.
  14. Ok, this is really interesting.. my color values using your script are off by 1 digit for what you have in the bot. _activeSkillInTown := 0x575757 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487EA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344857 ;pixel color for active skill for poe version 0.11.6b. This time.. when I pressed start bot, things worked fine.. saw i was in town, checked inventory and started to run (I edited the bot AHK to match the numbers to try) So, how do I go about fixing it so it actually presses "Start Bot" seems to be the only thing screwed up now. Appreciate the help save this code as test.stuff.ahk put that file in same folder than eeb.ini file Run test.stuff.ahk Press F3. The script run "exiledbot" and press start button. comment.
  15. yes its a problem with my script not finding the image of stash when it is open. I have that problem sometimes, but I can't catch when happens, and normally works a few runs later you can trys this, in _eeb.ahk search for ImageSearch, Px, Py, 0,0, 800, 600,*110 %_path_images%\stash.opened.png change *110 for *120 or *130 (max value is 250 but if you put 250 would match almost everything)to look like this ImageSearch, Px, Py, 0,0, 800, 600,*120 %_path_images%\stash.opened.png
  16. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) If poe and eb bot open then yours paths should be right, try to manually click the start button on eb gui. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) even if i manually put into the game, it still says searching to see if in town. even if i start the bot, it still says searching to see if in town. i am in 800 x 600 mode.. the bot runs fine.. i use an autohotkey gem leveler.. and works fine.. it is disabled during this however.. point is, autohotkey is installed correctly. it is the newest version, and i uninstalled and redownloaded it today. log file is below and thanks for the response!.. anxious to try it. btw.. i did set the settings you mentioned above as well. seems like exiledbot it is not starting, thats why I ask you to click manually the start button on exiledbot but my script it is not detecting town : / for this last problem try this: then
  17. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz) If poe and eb bot open then yours paths should be right, try to manually click the start button on eb gui. in eeb.ini change this variables to 1, should look like this: writelog =1 stashGames =1 run eeb for a few runs or few minutes, copy log_eeb.txt here (use spoiler tag plz)
  18. sry I do not saw this question. yup It is a silly way to prevent be killed when doing auras. : /
  19. v1.1.11.01 win7 64okay now i changed the location to 656/563 in your first script and it works, but i have no clue how to change the eeb script ok in _eeb.ahk file search "655, 582, 655, 582", put your coords, they are 3 lines with those values. search "_activeSkillInTown := 0x565656", "_activeSkillInMap := 0x487DA2" and "_activeSkillInMapInactive := 0x344757" and change the values that you have found (3 lines too)
  20. Infernal blow i dont even have the option to run the script as admin wether vm or on main system The values from in town and out of town are definitely different with this script, though its hard to give an example since its hard to get the same location with free cursor Iam using ib too. What version of autohotkey are you using? SO? 32/64? nice
  21. 0x2B3965 Is it possible to change the location where it looks for the value? like in center of the skill? whats you main skill? are you runnig check script as admin? is possible but no recommend if you don't have experience with scripts, but you can try it. better use this script, check if you get different values for different spots save with any.name.ahk and run it ; This example allows you to move the mouse around to see ; the title of the window currently under the cursor: #Persistent SetTimer, WatchCursor, 100 return WatchCursor: CoordMode, Pixel, Relative MouseGetPos,MouseX ,MouseY , id, control PixelGetColor, color, %MouseX%, %MouseY% WinGetTitle, title, ahk_id %id% WinGetClass, class, ahk_id %id% ToolTip, X/Y %MouseX%/%MouseY% `ncolor %color%`nahk_class %class%`nahk_id %id%`n%title%`nControl: %control% return
  22. yes yes yes nobut i press F1 to disable the gray graphic error in vm tried without F1 too but gets in and out of town same values again hmm thats weird basically we are looking for 3 values, all 3 diferent 1. _activeSkillInTown mouse right skill in town. Ex. 2. _activeSkillInMap mouse right skill out of town. Ex 3. _activeSkillInMapInactive mouse right skill out of town without mana no image sry : / I put a red circle where the spot is, its just an example, we are looking just for 1 pixel, so it is really small, as you can see they have diferent colors, i don't know why are you getting the same values what values are you getting?
  23. you don't need to put the cursor over nothing, when you run the check.town.ahk script and press f3, the script search for the spot that I used to verify town. so you run the check.town.ahk script that I post, press f3 and you are getting the same values in and out of town? you have your main skill in mouse_right button? are you running poe in 800*600? are you using a modified production_Config.ini file?
  24. Open poe Run Script Press F3 write the pixel color that you get in town (ex. 0x565656) go out of town write the pixel color you get. out of town use all your mana and then write the pixel color you get. now in file check.town.ahk or the name that you gave to the script change this values for the ones you got before _activeSkillInTown := 0x565656 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMap := 0x487DA2 ;pixel color for active skill for poe version 0.11.6b _activeSkillInMapInactive := 0x344757 ;pixel color for active skill for poe version 0.11.6b run script again press f4 post if it works
×
×
  • Create New...