[Release][Autohotkey script] PoE Autoflasks & autoquit. menu

User Tag List

Page 23 of 32 FirstFirst ... 192021222324252627 ... LastLast
Results 331 to 345 of 473
  1. #331
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I miss zoomhack and autoflasker... how was I able to play before I had those two great scripts....

    [Release][Autohotkey script] PoE Autoflasks & autoquit.
  2. #332
    ReadyToKill's Avatar Banned
    Reputation
    13
    Join Date
    Sep 2012
    Posts
    395
    Thanks G/R
    11/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey anyone get the script working with the latest version of the game? It's been a while since i've last played this game and use to use this script.

    Also in the line below, if i have disableAutoPotions to true, i guess it means it will not autoheal? and i need to change that to false, for it to work?

    disableAutoPotions:true, minNShieldRatioToQuit: , HasZealotsOath: false, }

  3. #333
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Code:
       PlayerBase:=GetMultilevelPointer(pH,[fBase+0xb8,0x59C])
    This line should be
    Code:
    PlayerBase:=GetMultilevelPointer(pH,[fBase+0xb8,0x7c4])
    The rest of the Player side of things (HP. Mana, Energy Shield, etc.) looks like it's still the same, as far as this program is concerned. I haven't found the flask pointers, yet, though I'm still trying. Someone with better reversing skills will probably have to tackle this one.

  4. #334
    b2bigal's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What are you using to find the pointers? I'd like to play around with this, but I'm not sure what tools to use.

  5. #335
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Cheat Engine, TSearch, something to keep track of offsets (a text editor would work, though I use something called ReClass). IDA pro is a great tool for reversing, but I'm a noob with it. If you want to find HP and Max HP, they're pretty easy to find, as they're back to back in memory, so if you have 500 life and it's full, you search for 500 in something like TSearch and the 2 that are 4 bytes apart are Max HP (1st) and Current HP (2nd).

    I'm also using C# for some things, as I have my own private version of this that I wrote, but I stole the offsets from here and I'm obviously dependent on them being updated here.

    The flasks are really tricky because the pointers can change any time you use a flask (and various other things trigger this as well), so you can't just search for charges and search again when the charges change, because the memory location where the value is moves.
    Last edited by TehCheat; 10-25-2013 at 07:32 PM.

  6. #336
    username1001011's Avatar Member
    Reputation
    2
    Join Date
    Apr 2013
    Posts
    120
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehCheat View Post
    This line should be
    Code:
    PlayerBase:=GetMultilevelPointer(pH,[fBase+0xb8,0x7c4])
    Does not seem to work for me.

  7. #337
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by username1001011 View Post
    Does not seem to work for me.
    Well that's only half of it, that fixes the playerbase pointer, and nothing else changed on that side of things, but you still need to get the right pointers for flask stuff. I'm not sure which offsets have changed for that, and I suck at reversing, so that needs to be figured out before the program will work. If you do nothing but what I changed the program will still fail as it knows nothing about your flasks.

  8. #338
    Ch4iNz's Avatar Private
    Reputation
    1
    Join Date
    Sep 2013
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does the script still work? I does not for me at least.

  9. #339
    seek's Avatar Member
    Reputation
    1
    Join Date
    Feb 2007
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have no idea how to grab said pointers. So I am here for moral support! Autoflask would be amazing!

  10. #340
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Ch4iNz View Post
    Does the script still work? I does not for me at least.
    Nope, it needs updated pointers. Like I said, the playerbase pointers didn't change much, just the one offset, but the flasks are a bit trickier and my reversing skills are limited, to say the least.

  11. #341
    Str0be's Avatar Member
    Reputation
    2
    Join Date
    Feb 2007
    Posts
    93
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wondering if anyone is even working on this?

  12. #342
    TehCheat's Avatar ★ Elder ★
    Reputation
    2563
    Join Date
    Oct 2013
    Posts
    1,900
    Thanks G/R
    349/2265
    Trade Feedback
    5 (100%)
    Mentioned
    32 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Str0be View Post
    Wondering if anyone is even working on this?
    I am, but a better question would be if anyone who knows what they're doing is working on it.

  13. #343
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello again, friends.

    I know that we still don't have this script updated for the new PoE 1.0.0. The best person to do this would be its creator, Wrogusername. I don't know if he'll be doing that but I want to thank you guys that are trying and working on it...
    So, I have a suggestion for the new autoflask script, if possible. Now we have the new Jade Flasks that increases the evasion and it would work nicely with Iron Reflexes and the Granite Flasks. Could you guys please add that Jade on script to make it work just like the Granite flask?
    Thanks in advance.
    Last edited by fabcard; 10-28-2013 at 08:13 PM.

  14. #344
    alucqrd's Avatar Contributor
    Reputation
    86
    Join Date
    Apr 2013
    Posts
    111
    Thanks G/R
    0/53
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Script updated Here.

  15. #345
    fabcard's Avatar Member
    Reputation
    10
    Join Date
    Jun 2013
    Posts
    137
    Thanks G/R
    38/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alucqrd View Post
    Script updated Here.
    OMG!!!! Thank you very much, alucqrd <3
    You are the best
    Now we can finally enjoy PoE

    Ah, and if you guys can, please support alucqrd and others from ExiledBot
    Thank you again...

Page 23 of 32 FirstFirst ... 192021222324252627 ... LastLast

Similar Threads

  1. [Release] Custom scripts
    By ion564 in forum World of Warcraft Emulator Servers
    Replies: 20
    Last Post: 05-12-2008, 07:02 PM
  2. [Release] WarsongGulch Script
    By Pragma in forum World of Warcraft Emulator Servers
    Replies: 33
    Last Post: 03-23-2008, 08:07 PM
  3. [Release] |Custom Scripted Instance| Shadow Lair
    By wurstbr0t in forum World of Warcraft Emulator Servers
    Replies: 18
    Last Post: 03-05-2008, 12:03 PM
  4. [RELEASE]Ascent/script compiles 3710 (latest 2/6/08)
    By vivec45 in forum WoW EMU Guides & Tutorials
    Replies: 0
    Last Post: 02-06-2008, 07:04 AM
  5. [RELEASE] FunServer Script's ( + Level Cap 80-255 )
    By ~SaiLyn~ in forum World of Warcraft Emulator Servers
    Replies: 36
    Last Post: 01-10-2008, 02:44 PM
All times are GMT -5. The time now is 04:06 AM. 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