Read channel For Wow  3.1.3 & 2.4.3 menu

User Tag List

Results 1 to 5 of 5
  1. #1
    bolototo's Avatar Banned
    Reputation
    0
    Join Date
    May 2009
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Read channel For Wow 3.1.3 & 2.4.3

    Hello

    First , I'm not English. It is difficult to write but Google is my friend ^^

    It's a little AutoIt prog for read the chan

    Change Offset for your version

    3.1.3 : 0x117938C
    2.4.3 : 0xC13C6C

    OK .it's just a base but it is functional

    achieved with the help of this message

    http://www.mmowned.com/forums/wow-me...t-process.html

    Code:
    #include <string.au3>
    
    #include <NomadMemory.au3>
    #include <EditConstants.au3>
    #include <GUIConstantsEx.au3>
    #include <WindowsConstants.au3>
    #Region ### START Koda GUI section ### Form=
    $Form1 = GUICreate("Form1", 625, 445, 274, 278)
    $Edit1 = GUICtrlCreateEdit("", 32, 24, 577, 273)
    $affiche = GUICtrlCreateButton("lire",32,400,50,25)
    *****tState(@SW_SHOW)
    #EndRegion ### END Koda GUI section ###
    
    SetPrivilege("SeDebugPrivilege", 1) ;p
    testwow()
    Global $process = _MEMORYOPEN($wowpid)
    Global $offchat=0x117938c ; 3.1.3 , Change width 0xc13c6c for 2.4.3
    Global $nxtchat=0x17C0 ; next chat
    
    
    While 1
    	$nMsg = GUIGetMsg()
    	Switch $nMsg
    		Case $GUI_EVENT_CLOSE
    			Exit
    		Case $affiche
    			GUICtrlSetData($Edit1,"")
    			testwow()
    			lischat()
    
    	EndSwitch
    WEnd
    
    Func lischat()
    	Local $debmess=$offchat
    	Local $Canal
    		for $x=0 to 59
    			$next=$nxtchat*$x
    			$mess = _MemoryRead($debmess + $next, $process, "char[1000]")
                                                    if Not stringMid($mess, 1, 4) ="Type" then ExitLoop
    			$Canal = _StringBetween($mess, "Type: [", "],")
    			$Pseudo = _StringBetween($mess, "Name: [", "],")
    			$Messag = _StringBetween($mess, "Text: [", "]")
    			
    			$chan=""
    			Switch $Canal[0] ;if $Canal=17 then MsgBox(0,"","canal17")
    								                                       Case 1
    					$chan="Dit : "
    				Case 2
    					$chan="Groupe : "
    				Case 3
    					$chan="Raid : "
    				Case 4
    					$chan="Guilde : "
    				Case 5
    					$chan="Guilde-Off : "
    				Case 6
    					$chan="Crier : "
    				Case 7
    					$chan="Chuchote : "
    				Case 9
    					$chan="A "
    				Case 17
    					$chan="General : "
    			EndSwitch
    				If $chan="" then $chan="Non trouver : "
    				$lig=$x
    				GUICtrlSetData($Edit1,$x & " :" & $chan & "[" & $Pseudo[0] & "] : " & $Messag[0] & @CRLF ,$lig+1)
    
    		Next
    
    EndFunc
    
    
    Func testwow()
    	Global $wowpid=ProcessExists("wow.exe")
    	If $wowpid=0 Then
    		MsgBox(0, "Infos", "World of warcraft n est pas lancer")
    		exit
    	EndIf
    EndFunc




    For list channel read this

    Posted by BoogieManTM

    Code:
        public enum ChatType : byte
        {
            ADDON = 0,
            SAY = 1,
            PARTY = 2,
            RAID = 3,
            GUILD = 4,
            OFFICER = 5,
            YELL = 6,
            WHISPER = 7,
            WHISPER_MOB = 8,
            WHISPER_INFORM = 9,
            EMOTE = 10,
            TEXT_EMOTE = 11,
            MONSTER_SAY = 12,
            MONSTER_PARTY = 13,
            MONSTER_YELL = 14,
            MONSTER_WHISPER = 15,
            MONSTER_EMOTE = 16,
            CHANNEL = 17,
            CHANNEL_JOIN = 18,
            CHANNEL_LEAVE = 19,
            CHANNEL_LIST = 20,
            CHANNEL_NOTICE = 21,
            CHANNEL_NOTICE_USER = 22,
            AFK = 23,
            DND = 24,
            IGNORED = 25,
            SKILL = 26,
            LOOT = 27,
            SYSTEM = 28,
            //29
            //30
            //31
            //32
            //33
            //34
            //35
            //36
            //37
            //38
            BG_EVENT_NEUTRAL = 35,
            BG_EVENT_ALLIANCE = 36,
            BG_EVENT_HORDE = 37,
            COMBAT_FACTION_CHANGE = 38,
            RAID_LEADER = 39,
            RAID_WARNING = 40,
            RAID_WARNING_WIDESCREEN = 41,
            //42
            FILTERED = 43,
            BATTLEGROUND = 44,
            BATTLEGROUND_LEADER = 45,
            RESTRICTED = 46,
        };

    Read channel For Wow  3.1.3 &amp; 2.4.3
  2. #2
    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)
    Google translate ftw!? Thx for the share

  3. #3
    bolototo's Avatar Banned
    Reputation
    0
    Join Date
    May 2009
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes Google

  4. #4
    bouh2's Avatar Active Member
    Reputation
    28
    Join Date
    Mar 2008
    Posts
    83
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thx for this code

    +rep

  5. #5
    deCutter's Avatar Member
    Reputation
    5
    Join Date
    Apr 2009
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That`s a +rep. Thank you.

Similar Threads

  1. [Trading] WoW Account For SWTOR Read Thread for More Info
    By b3ast in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 0
    Last Post: 12-13-2012, 10:06 PM
  2. [Selling] WoW ACCT! ALMOST 7 85'S + D3 + MoP BETA!! READ INSIDE FOR MORE INFO! :)
    By samberg778 in forum WoW-US Account Buy Sell Trade
    Replies: 5
    Last Post: 08-05-2012, 01:17 PM
  3. [Trading] SWTOR account (21 Sith Sorc 30 juggernaut) for wow account! Read moar!!!
    By Samskie in forum World of Warcraft Buy Sell Trade
    Replies: 1
    Last Post: 01-16-2012, 08:40 AM
  4. [Trading] SWTOR account (21 Sith Sorc 30 juggernaut) for wow account! Read moar!!!
    By Samskie in forum Star Wars: The Old Republic Buy Sell Trade
    Replies: 3
    Last Post: 01-12-2012, 04:44 PM
  5. [Trading] WTT-HORDE- 80 mage and 80 hunter for wow cdkey and tbc cd key. TRUSTABLE- READ
    By Deliust in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 12-01-2010, 03:29 AM
All times are GMT -5. The time now is 01:01 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search