Interact with nodes? Not working :( menu

Shout-Out

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    rootKilla's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm click to move movement works but the interact isn´t working also with the mouseoverGUID -.- here my code:
    $curGUID = _BMReadUInt($handle, ($curobject + 0x30))
    If $name="Schlangenzunge" or $name="Tigerlilie" or $name="Goldklee" Then
    GUICtrlCreateListViewItem($name & "|" & _getObjectX($handle, $curobject) & "|" & _getObjectY($handle,$curobject) & "|" & _getObjectZ($handle,$curobject) & "|" & $curGUID & "|",$listview1)
    TrayTIp("",$curGUID,5)
    _BMWriteMemory($handle,0x11D3F60, $curGUID, 'uint')
    ControlSend("World of Warcraft","","","{F1}")

    Interact with nodes? Not working :(
  2. #17
    ziinus's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guid = ulong ( in c# ) and uint64 ( not c# )
    Last edited by ziinus; 07-30-2009 at 10:44 AM.

  3. #18
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by rootKilla View Post
    hmm click to move movement works but the interact isn´t working also with the mouseoverGUID -.- here my code:
    $curGUID = _BMReadUInt($handle, ($curobject + 0x30))
    If $name="Schlangenzunge" or $name="Tigerlilie" or $name="Goldklee" Then
    GUICtrlCreateListViewItem($name & "|" & _getObjectX($handle, $curobject) & "|" & _getObjectY($handle,$curobject) & "|" & _getObjectZ($handle,$curobject) & "|" & $curGUID & "|",$listview1)
    TrayTIp("",$curGUID,5)
    _BMWriteMemory($handle,0x11D3F60, $curGUID, 'uint')
    ControlSend("World of Warcraft","","","{F1}")
    you might want to try and write an UInt64 since I think most guids are uint64 and not uint32....

    edit: ziinus you speed devil...

  4. #19
    rootKilla's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dont work too -.- i don´t know whats up but i looked in the BlackMagic.au3 there is only uint oO

  5. #20
    ziinus's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Func _BMReadUInt64($Handle, $Address)
    Return _BMReadMemory($Handle, $Address, "uint64")
    EndFunc

    Func _BMWriteUInt64($Handle, $Address, $Value)
    Return _BMWriteMemory($Handle, $Address, $Value, "uint64")
    EndFunc

    Try to add this to your BlackMagic.au3
    I've not tested it, i don't know if it works ^^
    Last edited by ziinus; 07-30-2009 at 10:38 AM.

  6. #21
    rootKilla's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    no it dont think that this is the problem because i read the GUID with this func:
    $curGUID = _BMReadUInt($handle, ($curobject + 0x30))
    and it works

  7. #22
    ziinus's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You can read a GUID, but it's not the same as inside wow, your loosing 4bytes of precision.
    And when you try to write your 4 byte GUID in wow ( at mouseoverguid ) and call the function, it doesn't work cause there are 4 missing bytes ^^

    It's like your only taking the first half of the number ^^
    Last edited by ziinus; 07-30-2009 at 10:46 AM.

  8. #23
    rootKilla's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmm but when i read the guid with
    $curGUID = _BMReadMemory($handle, ($curobject + 0x30), 'ulong') i get the same return as with
    $curGUID = _BMReadMemory($handle, ($curobject + 0x30), 'uint')

  9. #24
    ziinus's Avatar Member
    Reputation
    2
    Join Date
    Nov 2008
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've edited, in autoit you must use uint64 not ulong.
    ( I work mainly in c# and the typedefs arn't the same )

  10. #25
    rootKilla's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ty works

  11. #26
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hm.... seems like 0x11D3F50 is realy mouseoverguid
    then does somebody know what is 0x11D3F60?
    UPD:seems like it clickoverguid.
    Last edited by furang; 07-31-2009 at 07:10 AM.

  12. #27
    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 Cypher View Post
    Please tell me you're just trolling him and you don't actually think that. I can't tell.
    Nah just trolling lol XD. I know rifk used to be a typo of rofl, but then people started to like it!

  13. #28
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    dunno why but it doesn't work for me What is the action for F1 key? Interact?
    Btw can this method be used for attacking targets? I think it can be

  14. #29
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by furang View Post
    dunno why but it doesn't work for me What is the action for F1 key? Interact?
    Btw can this method be used for attacking targets? I think it can be
    The Key you are sending to WoW should be Interact with Mouseover which you can set in your WoW Key bindings.

    I am not sure if this can be used for attacking since you are just setting the mouseoverguid to your guid. This would mean that you need to find a way to attack the guid stored in mouseoverguid. It might be easier to just target the guid in the first place and fire off your combat routine.

    Edit: I just checked it. Interact with mouse over will attack a hostile when used on it.

    -Azzie2k8
    Last edited by Azzie2k8; 08-01-2009 at 05:45 AM.

  15. #30
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there antother way to attack mobs? (without sendmessage)
    As i searched i've found this Click To Move - WoW.Dev Wiki
    According to it, in order to attack target i have to write objguid (int64) to 0x011180A0+0x20 and 0xA or 0xB to 0x011180A0+0x1C.
    But it doesn't sem to work

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Instant Revered with guild[not working anyways]
    By crittler in forum World of Warcraft Exploits
    Replies: 11
    Last Post: 11-15-2012, 10:59 AM
  2. Getting a server public with DynDNS (Not working)
    By jay77 in forum WoW EMU Questions & Requests
    Replies: 4
    Last Post: 08-15-2009, 04:40 AM
  3. Not work with Vista?
    By [email protected] in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 11-28-2007, 01:15 PM
  4. BC not working with Chrispee
    By frogtheman in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 10-17-2007, 07:50 PM
  5. Need help with putting Mpqs into Data folder, not working!!!
    By Korey16 in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 12-26-2006, 12:15 PM
All times are GMT -5. The time now is 08:57 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