Jump to content

immo

EB Support
  • Content Count

    763
  • Joined

  • Last visited

Everything posted by immo

  1. Somehow ironical that such comment comes from a person with just a single forum posting... @acdc79979 I don't think this has been done by any user yet (at least nothing public). But since reading the entire current affix list is very easy to do (CTRL + C while hovering the item and you get all item mods in the clipboard variable), rerolling an item to some specific affixes shouldn't be too hard to accomplish. This little snippet should point you into the right direction: Spoiler F1:: iteminfo := CreateIteminfoFromClipboard(ItemToClipboard()) Loop, % iteminfo.MaxIndex() Msgbox, % iteminfo[A_Index] return ItemToClipboard() { IfWinActive Path of Exile ahk_class POEWindowClass { SendMode Input clipboard := "" Send ^c ClipWait, 0.05 If(ErrorLevel) return 0 else return clipboard } } CreateIteminfoFromClipboard(Clipboardcontent) { If (Clipboardcontent != "") { _ItemInfo := [] Loop, Parse, Clipboardcontent, `n, `r _ItemInfo.Insert(A_LoopField) return _ItemInfo } } Simply hover over an item and press F1. This results in looping through all lines from the gathered item info (and in my example output each line through a msgbox.
  2. immo

    Auto chance script

    doing this by using fixed inventory slots for scour / chance and base items is no achievement at all... and no, using image search is none too Sorry i am just kidding. Maybe you want to share your script with us.
  3. immo

    Auto chance script

    True... I totally forgot about this feature in poe. Of curse, this requires you to always have the base items as well as the materials in the same inventory slot and it will probably take like 5times the duration as if you would read the specific information from memory. But I agree, for someone who is not firm with reversing poe, the amount of time needed to invest into reversing Poe's inventory and item structure is probably not worth the advantages
  4. immo

    Auto chance script

    Oha, this is a daring statement. I think this always depends on what you want to achieve. On the one hand, you are totally true, simple auto chancing items is super simple but on the other hand, if you want to detect the result of your latest chanced item (i.e. to stop chancing this type of item on some definition.), you will definitely need more time than just one or two days... And I can say this from my own experience of similar tasks, reading the inventory from memory (especially with AutoHotkey) is a pain in the ass!
  5. No feedback and/or suggestions related to my latest pushed version ( v6.2 ) at all... It hurts to see how the Exiled Bot community lost its quality lately. I'm curious whether this still works or whether the offsets are no longer up-to-date. I have to confess that I am a little disappointed.
  6. No one will ever be able to say what is 100% safe and what is not. From what I can say for sure is, that Tradespam doesn't use any memory writing at all. All the information it gathers is retrieved via memory reading. Additionally, Tradespam is using randomized delays almost between every single automated action, so it should be undetectable at least by using some kind of pattern.
  7. First of all, I do not play poe any longer since at least 1.5years. I do not even have an up-to-date client installed. Anyway, to be honest, I just had some hours of spare time and was bored, so I gave updating TradeSpam a try... This is what I came up with: tradespam.v6.2.zip 1.27MB As far as I can see, it is working for me. !BUT! This does not automatically mean that it is working for every user! If there are bigger issues with this version, it might be possible that I am not going to fix em... or it could again take 1.5years! I did not heavily test this release, so expect issues! Nevertheless, hopefully, it is working for you guys. If so, enjoy it as long as it lasts. I am expecting tears, fury & feedback!
  8. Yeah, "just" ^^ First of all, I do not play poe any longer since at least 1.5years. I do not even have an up-to-date client installed. Anyway, to be honest, I just had some hours of spare time and was bored, so I gave updating TradeSpam a try... This is what I came up with: tradespam.v6.2.zip As far as I can see, it is working for me. !BUT! This does not automatically mean that it is working for every user! If there are bigger issues with this version, it might be possible that I am not going to fix em... or it could again take 1.5years! I did not heavily test this release, so expect issues! Nevertheless, hopefully, it is working for you guys. If so, enjoy it as long as it lasts. I am expecting feedback!
  9. @godre: argh, that's a mess I've answered your post.
  10. Something like this should work: (not tested though!) Spoiler #NoEnv #Persistent #SingleInstance, force SendMode Input SetWorkingDir %A_ScriptDir% SetBatchLines, -1 DetectHiddenWindows, On ; Global variables: cliname := "Path of Exile" MaxChannels := 7 ; Some more preparations WinGet, WinID, List, %cliname% Loop, %WinID% { WinGet, ProcModuleName, ProcessName, % "ahk_id" WinID%A_Index% If (ProcModuleName = "PathOfExileSteam.exe") { cliexe := "PathOfExileSteam.exe" break } Else If (ProcModuleName = "PathOfExile.exe") { cliexe := "PathOfExile.exe" break } } POEHWND := GetHwnd(cliname, cliexe) ; TradeSpam Macro Macro1: Loop { Loop, %MaxChannels% { SetKeyDelay, random(50, 70), random(10, 30) ControlSend,,{NumpadEnter}, % "ahk_id" POEHWND RandomSleep(35, 75) ControlSendRaw,,% "/trade " . A_Index, % "ahk_id" POEHWND RandomSleep(35, 75) ControlSend,,{NumpadEnter}, % "ahk_id" POEHWND RandomSleep(95, 125) } } Return ; additional functions: GetHwnd(process, exename) { If WinExist(process) { WinGet, WinID, List, %process% Loop, %WinID% { WinGet, ProcModuleName, ProcessName, % "ahk_id" WinID%A_Index% If(ProcModuleName=exename) { If (WinID%A_Index%=WinActive("A")) ThisID:=WinActive("A") return WinID%A_Index% } } } else return false } randomSleep(msMin, msMax) { Global SendDelay Random, out, % msMin + SendDelay, % msMax + SendDelay sleep, %out% } random(min, max) { Random, out, %min%, %max% return out } F8::ExitApp
  11. immo

    Question

    Topic moved.
  12. hehe thank hongthai, if only i would still play poe that active like i did 2years ago ^^ I didnt touched POE for basicly the last 2years at all Had to update my client with more than 2.8GB of UpdateShit...
  13. Tradespam v6.2 Since many of you asked me to update my TradeSpam Tool, I've decided to rewrite and release an updated one. _____________________________________________________________ tradespam.v6.2 1.27MB Changelog: _____________________________________________________________ _____________________________________________________________ Features: No FileReading, image- or pixel search is used at all, everything is done via memReading! Optional number of channels. Option to break advertisement if you receive a pm. almost every automated input is using randomized delays! The randomization consists of two parts.The base timings which can be changed to whatever you like. Your current Latency. This results in completely randomized delays and should provide maximum account security. Option to play sound if you receive a pm (can be disabled)! Loop your advertisement as long as you want. You can choose between 2 spam methods:The standard method you all know. Linking every item every time (that way you can change zones without breaking item links). If a message accidently gets fucked up, TradeSpam automatically tries to fix it! (optimized). Option to log received pms to an external text file. Option to log the entire Trade channel to an external text file. Option to filter the Trade channel for specific words.Further explanation on the word-filter and how this works can be found here. Instant reply to the last received pm via a button. Stores all player names which ever sent you a pm. Each person who ever whispered you are available through a drop-down list which features multiple options:Send the selected player a PM. Invite the selected player to your party. Initiates a trade with the selected player. Characters must be in the same town hub instance to trade. Kicks the selected player from your party. Displays the selected players level, class, league, and whether he is online or not. Add the selected player to your FList. Adds a player account specified by the character name you've selected to the ignore list. No messages will be received from ignored players. Sends you to the selected character's hideout. Only useable while in town. Additional important information is displayed via splash text. You can watch your current trade-channel live inside TradeSpam (PoE does not need to be active!)! Auto-Update Feature!If there is a new version, it will automatically detect this and offers you to download & install the new version. _____________________________________________________________ HowTo: _____________________________________________________________ Hotkeys: _____________________________________________________________ Notes:
  14. I started to create an IPD Editor for maps quite some time ago but never found the time to continue working on this. Thats why i am going to release the sourcecode of the current state of the editor. Maybe someone wants to continue Get the source here and a compiled executable here.
  15. immo

    v0.54 ini parser error

    I'd be interested if the 'production_Config.ini' is actually located in the default path (the one mentioned in that errormsg).
  16. Sorry but what are you trying to tell us?
  17. immo

    Fishing bot??????

    Mhmm, i thouht the one you gave me for free was the one you fished?!
  18. immo

    Bot not logging in + doing weird stuff

    Yeah there are differemt versions for this game (standard, steam, etc) and updates are not applied simultaneously on each version. That being said you might have listened to some conversation between people using a version which wasnt updated at that time...
  19. immo

    VMware and Main System Issue !Need Help!

    That was my first guess too
  20. Since you are able to perform DLLCalls without any further restrictions in AutoHotKey, you're basically able to do everything you can do with one of the more famous / popular programming language C / C ++ / C # with AutoHotKey actually. The main thing is how much effort you want to put into this to achieve whatever you like
  21. It is enterly coded in AutoHotKey and the gui was/is handmade, no additional tools used.
  22. It is as safe as all other third party software (which does not write to the games memory!) Basicly GGG would need to create a pattern for this tool and scan for it which i doubt they do Besides from that my TradeSpam uses a unique way to create a random delay between each and every single processingstep (calculating a random delay by using the current ping timings). So there are no obvious things which could point out someone is using TradeSpam. But like i said in the beginning, it i s as safe as each other thirdparty software, i would lie if i'd say it is 100% safe to use. Nobody besides GGG knows exactly what they are looking for specificly. What i am able to say is that i am using TradeSpam myself since ever and didnt recieved a single ban yet for using it.
  23. Please dont get me wrong, but you should really stick with the default mapfile which can be found in every new release of the bot (always contains the most current version of the mapfile) and while you are using the default one you might start on digging a little deeper into the materia cuz it sound like you're doing this kind of stuff not that long yet ... No, without editing this particular mapfile runs the following: Rare maps level less than 70 Magic map between level 68 and 75 (note, this includes unique maps) Normal rarity maps get transmuted to magic one (so the minimum rarity you run maps in is magic) all unique maps are ignored. Again this shouldnt sound harsh, but you may notice that these are also the only four lines in the entire script which dont start with "//" So the conclusion should have been that the prefix "//" ignores the entire line. AAND this could have given you the clue that you simply need to delete the "//" before any line which you want to activate. But in generell, those lines starting with "//" are completly ignored by the bot, if you would like to activate, you'll need to uncomment this line. (This does also apply to the item pickit file) Like i said before, using the latest default mapfile should be exactly what ur looking for. The only thing you need to change is the level restriction since the defaul mapfile only runs maps up to lvl 71. This can be found on line 17. What did you tried to fix? What is still not working for you? However the most recent default mapfile can be found here.
×
×
  • Create New...