[Help Request] Grabbing informations in chat Window menu

Shout-Out

User Tag List

Results 1 to 10 of 10
  1. #1
    Diuuude's Avatar Member
    Reputation
    7
    Join Date
    Oct 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [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 !

    [Help Request] Grabbing informations in chat Window
  2. #2
    Joriee's Avatar Active Member
    Reputation
    17
    Join Date
    Jun 2009
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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,

  3. #3
    Diuuude's Avatar Member
    Reputation
    7
    Join Date
    Oct 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by WSDB View Post
    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.

  4. #4
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  5. #5
    Diuuude's Avatar Member
    Reputation
    7
    Join Date
    Oct 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nesox View Post
    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)

  6. #6
    FenixTX2's Avatar Active Member
    Reputation
    23
    Join Date
    Mar 2009
    Posts
    125
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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'

  7. #7
    Diuuude's Avatar Member
    Reputation
    7
    Join Date
    Oct 2008
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FenixTX2 View Post
    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 !

  8. #8
    Robske's Avatar Contributor
    Reputation
    305
    Join Date
    May 2007
    Posts
    1,062
    Thanks G/R
    3/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stop derping around and catch WoW's events.

    CHAT_MSG_LOOT and CHAT_MSG_SKILL is what you want to look for.
    "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live." - Martin Golding
    "I cried a little earlier when I had to poop" - Sku

  9. #9
    The-Guardian's Avatar Active Member
    Reputation
    68
    Join Date
    Feb 2009
    Posts
    116
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    omg.... look to search heres my post on getting chat messages. I think thats what Nesox was talking about...
    http://www.mmowned.com/forums/wow-me...s-3-2-0-a.html


    for 3.1.3 use
    Global $offchat=0x117938c
    Last edited by The-Guardian; 08-17-2009 at 06:32 PM.

  10. #10
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Robske View Post
    Stop derping around and catch WoW's events.

    CHAT_MSG_LOOT and CHAT_MSG_SKILL is what you want to look for.
    This! filla

Similar Threads

  1. Replies: 5
    Last Post: 11-19-2011, 04:56 AM
  2. [Help/request/crazy] Look inside please.
    By jokerjokes in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 01-01-2008, 07:26 PM
  3. [help/request] I need trainers for 2.3 lol
    By jokerjokes in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 12-28-2007, 12:39 PM
  4. Getting A Friend Connected (Help Request)
    By Magnusvermis in forum World of Warcraft Emulator Servers
    Replies: 9
    Last Post: 12-07-2007, 11:57 PM
  5. Help Request
    By sirios in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 10-14-2007, 12:47 PM
All times are GMT -5. The time now is 06:01 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