WoW Memory EditingWoW Memory Editing for learning purposes only.
This section is more advanced than others on MMOwnedRead the section specific rules, infractions will be given out if u break them!That is including the expectations! - If you don't meet them then don't post
[Help Request] Grabbing informations in chat Window
Hi all,
I'm coding a bot with AutoIt for private 3.1.3 servers that teleports and gather mines / herbs. This is my first try in cheats coding but everything is working well for now.
But i'd like to add some more features to the bot :
- Count how many items has been gathered.
- Count how many skill points you gained using the bot.
It would allow the bot to start gathering higher level mines / herbs when you reach the required skill level.
I already found the offset to read the red message saying that you failed to gather the node, and use it to try collecting again before next teleport. Usefull to not miss any gather.
Now i need your help to be able to read some new informations displayed in the chat window :
- Received items (ID of looted item, name or whatever that can allow me to count how many of each has been gathered)
- The blue message saying "your xxx skill has been increased to xxx".
Thanks for all the usefull code and informations i already found on these forums, any help with these questions will be greatly appreciated !
Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.
The blue message saying "your xxx skill has been increased to xxx".
That will auto be done in arc,mangos,wowemu,aspire
and on retail
just it does that when someone lvls up skinning etc,
Yes, this message appears when your skill is increased. As my bot is intended to up skills, i'd like to know where to read in memory for this blue message when it appears. So i'll be able to count how many skill points the bot increased for you.
omg what a stupid thread this has already been discussed less than a week ago in that thread there's is offsets for the string array with chat messages. o.O
__________________
[Only registered and activated users can see links. ]
omg what a stupid thread this has already been discussed less than a week ago in that thread there's is offsets for the string array with chat messages. o.O
Any interresting or usefull link, idea, code snippet ?
If you're talking about the chat log blah blah blah that reads messages in the chat box, you must know that it does not contain the skill messages, neither looted items.
Stupid, i wouldn't say it better...
If you've got anything that can help, please post, if not, please don't (at least on my help-request topic)
If you already 'know' that the chat log does not contain information on skills and looted items why create a thread labeled Grabbing informations in chat Window....idiot.
If you already 'know' that the chat log does not contain information on skills and looted items why create a thread labeled Grabbing informations in chat Window....idiot.
fyi
enum chat type : int
{
SKILL = 26
LOOT = 27
}
So much for what you 'know'
1- The skills and loot informations are displayed (you may know it if you ever played wow) in the same box than the chat messages.
2- I already tried the codes found over here, it displays the received chat message, but -NOT- anything else (including events notifications, skill related informations, loots...), even if i edit the code to also show 26 and 27...
3- Show me how you do it, even a screenshot... i must see YOU do it !
omg.... look to search heres my post on getting chat messages. I think thats what Nesox was talking about... [Only registered and activated users can see links. ]
for 3.1.3 use
Global $offchat=0x117938c
Last edited by The-Guardian; 08-17-2009 at 07:32 PM.