PWI Eclipse changes

08/14/2015 01:08 sasukezero#166
Does anyone know how to read the chat ? oO like the world chat
I wanted to make a extra window for World Chat when i'm coding, but couldn't find the addresses yet >.<
08/14/2015 06:39 jasty#167
Quote:
Originally Posted by sasukezero View Post
Does anyone know how to read the chat ? oO like the world chat
I wanted to make a extra window for World Chat when i'm coding, but couldn't find the addresses yet >.<
It's discussed here though I haven't tried it before
[Only registered and activated users can see links. Click Here To Register...]

You can also use the OOG client PWLuaOOG for that which will output WC to a console.
08/14/2015 16:43 sasukezero#168
Gonna check the post out and make my own one :D
that way i don't have to maximize the game and check stuff lol
08/20/2015 02:16 sasukezero#169
does anyone know the new partyinvitecounter address >.< i can't find the right one again -.- maybe i should have written down how i did last time. Usually the value increases when you join squad and again when you leave. I found a base addresses and tried them but non worked uff
08/20/2015 05:17 jasty#170
Here's all of the addresses and offsets I use... its not super well organized and most of the names don't match other stuff though.

Here is my python script for finding all the function addresses at the top. I havent tried making one for doing all the offsets I use.
08/20/2015 13:28 sasukezero#171
Thank you very much Jasty!
Ill check out the python script whenever i can. Searching addresses with Autoit never worked for me so python would be a good way i guess.

I tested the Python script and it works! This is awesome! Like in autoit it didnt work for me for some reason oO idk why tho. Gonna use this now and add things when i have time again.

Thanks again Jasty!
08/24/2015 10:51 denzjh#172
Quote:
Originally Posted by sasukezero View Post
Thank you very much Jasty!
Ill check out the python script whenever i can. Searching addresses with Autoit never worked for me so python would be a good way i guess.
I found out that compiling AutoIt scripts using versions above 3.3.6.1 will have different outputs. So I am using AutoIt version 3.3.6.1 from [Only registered and activated users can see links. Click Here To Register...].
08/26/2015 13:13 afropanda#173
world quest bot is not working anymore right?
08/26/2015 13:21 sasukezero#174
did you try to change the old offsets to the new ones that Jasty posted ? Nothing else than some offsets were changed. So the functions from before should then work again.
Else let us know whats missing :)
09/30/2015 15:50 sasukezero#175
Does anyone know if there is a Flag to show if a herb is already being dug by another person ?
I've tried to find it but I'm not even sure if there is a flag that shows it. I know that the game gives a message item being used, so there has to be something. Listing items to dig and getting the ID is no problem tho.
09/30/2015 18:10 jasty#176
Quote:
Originally Posted by sasukezero View Post
Does anyone know if there is a Flag to show if a herb is already being dug by another person ?
I've tried to find it but I'm not even sure if there is a flag that shows it. I know that the game gives a message item being used, so there has to be something. Listing items to dig and getting the ID is no problem tho.
I don't think there is any flag. That message is just the response from the server when you try to dig. I think it's in server_error.txt or something. The client doesn't really know what the result will be until after it makes the attempt. You could detect it by waiting a bit and checking the action flag to see if you're busy digging.

Personally I just keep on trying to dig whatever is closest. If the mine can be dug multiple times youll get your turn eventually and if it disappears youll run to the next one.
09/30/2015 18:40 Sᴡoosh#177
Yeah, there's no flag. As jasty said, server sends result of gather init request.
10/01/2015 00:04 sasukezero#178
Good to know, then i don't have to search anymore. It would have been cool to see so, cause of mines that are already being dug by others. Right now I'm also trying till it disappears or yeah the Action Flag flips. Might include a check if a player is near the mine but rather not as its just a extra. Thank you both very much :)
10/01/2015 14:31 Stark77#179
just wanted to throw in a few more or less usefull offset chains i found:


i am trying to rework the tab targeting with those. does anyone know how to read the guildname or guildID of another player?

thats how you can read the guildname of the current target - however it would be way easier to read it without selecting a player in the first place:
10/01/2015 20:36 jasty#180
Faction ID is in the player struct at offset 0x694
Not sure where to read the faction name (probably some global struct somewhere).

PlayerList is in base+1C+14+1C+98+(4*i)
i is 0 to PlayerListCount-1
PlayerListCount is in base+1C+14+1C+9C