I would like to know if it's possible to use the bot like a Helper ?
So just for example, auto pickup item or auto flask ? And dont move itself and attack, and allow the player to do it manually ?
I would like to know if it's possible to use the bot like a Helper ?
So just for example, auto pickup item or auto flask ? And dont move itself and attack, and allow the player to do it manually ?
Hey babacool,
What jyam means is, it is possible. You would have to strip down the routine, and I think jyam has a semi working version, via his routine here
Hope that helps somewhat.
Thank you for your answer !
But how can i add the function to Loot item or openChest, and use autoflask ?
When i tried to add the in the TaskManager the LootItemsExample : TaskManager.Add(new ExampleLootItemsTask()); And TaskManager.Tick(); -> But it does nothing
And to use the plugin Autoflash, we have to use " ProcessHookManager", but it block the client from manually moving, cant click to move, and attak
If you interact with the client, during the time of the interaction your client is locked out of your control. If it's just data reading and no interfering with any your client input it won't be.
If it's just taking flask, use Loki API to get the logic down and use some generic c# to send the keystroke to your client.
It's possible, but I don't personally recommend it.
Exilebuddy has a much larger overhead to provide the functionality we do in a way that doesn't require taking over your entire PC. The side effect is that things are slower and more bulky when it comes to simple tasks such as "press a key when on low life" compared to using something like AHK/AutoIt which sends nearly instant input to a top-level window when you're playing.
When it comes to performing client actions, EB has to take complete control over client input to work properly. Path of Exile is coded in a way where there's no other alternative (unlike D3 which is a game that you don't have to take over input control). Trying to juggle disabling/enabling input is certainly possible, but things aren't going to work that smooth (like they did in the D2 days with pickit and stuff) if you go that route.