[HELP] C# ASM H00k get Func !? menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    Mc-fly's Avatar Sergeant
    Reputation
    14
    Join Date
    Dec 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [HELP] C# ASM H00k get Func !?

    hiho
    im using the Ahook.dll from Juju http://www.mmowned.com/forums/world-...cene-hook.html

    Is there a way to call Function's like GetSpellname or smth?

    excuse my bad english
    Last edited by Mc-fly; 07-27-2010 at 02:42 AM.

    [HELP] C# ASM H00k get Func !?
  2. #2
    mnbvc's Avatar Banned
    Reputation
    120
    Join Date
    Jul 2009
    Posts
    273
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes, and it's in the first post

  3. #3
    Mc-fly's Avatar Sergeant
    Reputation
    14
    Join Date
    Dec 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i found a post from Juju
    No it only execute Asm code in main thread when function is called using global event.
    so it I cant return smth, only execute !?

    is there any other method to return those functions in C# ?
    Last edited by Mc-fly; 07-27-2010 at 02:43 AM.

  4. #4
    streppel's Avatar Active Member
    Reputation
    78
    Join Date
    Mar 2007
    Posts
    196
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    once hooked endscene you can use every luastuff etc you want with Lua_DoString(Framescript_Execute)
    to get returnvalues from this have a closer look at GetLocalizedText,works most of the time for most of the stuff you would want to do
    the more experienced way requires you to register your own luacommand and pass everything through this,tho this isn't as easy as the first method

  5. #5
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here you go, this is what you need to do:

    AddLine("push 0")
    AddLine("call {0}", GetProcAddress(GetModuleHandle("kernel32.dll"), "ExitProcess"));
    AddLine("retn");

    That's all you need to do. That will cast the best spell for your class.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  6. #6
    Mc-fly's Avatar Sergeant
    Reputation
    14
    Join Date
    Dec 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    haha very funny, Im smart enough to see that it is just stupid shit

  7. #7
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mc-fly View Post
    haha very funny, Im smart enough to see that it is just stupid shit
    What? No, WoW hook the function so they can perform their own things when they exit the process. One of the things is to check if you're ingame, and if you are, they cast the best spell for your class based on the current situation. This was done many patches ago because a developer from Blizzard had implanted "ExitProcess(0)" everywhere in the code, so they fixed it like that. I am amazed on your immediate attack on my otherwise helpful post. It is people like you who make me not want to post in a thread, because when you help other people all they do is take a shot on your help and shoot it down with "stupid shit". It is almost like in Die Hard, except it isn't at all. In Die Hard Bruce Willis helps the hostages by freeing them, nearly identical to what I'm doing now except that this is for casting spells in WoW. Can you imagine what would've happened if the hostages hadn't been thankful? Bruce Willis would probably have killed them all as well. Do you want to be killed? If not, you should use what I sent you, because it is a piece of code coming from god himself. Else I'm gonna punch you in your head. Over the internet.
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  8. #8
    SKU's Avatar Contributor
    Reputation
    306
    Join Date
    May 2007
    Posts
    565
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MaiN View Post
    What? No, WoW hook the function so they can perform their own things when they exit the process. One of the things is to check if you're ingame, and if you are, they cast the best spell for your class based on the current situation. This was done many patches ago because a developer from Blizzard had implanted "ExitProcess(0)" everywhere in the code, so they fixed it like that. I am amazed on your immediate attack on my otherwise helpful post. It is people like you who make me not want to post in a thread, because when you help other people all they do is take a shot on your help and shoot it down with "stupid shit". It is almost like in Die Hard, except it isn't at all. In Die Hard Bruce Willis helps the hostages by freeing them, nearly identical to what I'm doing now except that this is for casting spells in WoW. Can you imagine what would've happened if the hostages hadn't been thankful? Bruce Willis would probably have killed them all as well. Do you want to be killed? If not, you should use what I sent you, because it is a piece of code coming from god himself. Else I'm gonna punch you in your head. Over the internet.
    Quoted for awesomeness.

  9. #9
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MaiN View Post
    What? No, WoW hook the function so they can perform their own things when they exit the process. One of the things is to check if you're ingame, and if you are, they cast the best spell for your class based on the current situation. This was done many patches ago because a developer from Blizzard had implanted "ExitProcess(0)" everywhere in the code, so they fixed it like that. I am amazed on your immediate attack on my otherwise helpful post. It is people like you who make me not want to post in a thread, because when you help other people all they do is take a shot on your help and shoot it down with "stupid shit". It is almost like in Die Hard, except it isn't at all. In Die Hard Bruce Willis helps the hostages by freeing them, nearly identical to what I'm doing now except that this is for casting spells in WoW. Can you imagine what would've happened if the hostages hadn't been thankful? Bruce Willis would probably have killed them all as well. Do you want to be killed? If not, you should use what I sent you, because it is a piece of code coming from god himself. Else I'm gonna punch you in your head. Over the internet.
    I can verify this statement of fact.


  10. #10
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MaiN View Post
    What? No, WoW hook the function so they can perform their own things when they exit the process. One of the things is to check if you're ingame, and if you are, they cast the best spell for your class based on the current situation. This was done many patches ago because a developer from Blizzard had implanted "ExitProcess(0)" everywhere in the code, so they fixed it like that. I am amazed on your immediate attack on my otherwise helpful post. It is people like you who make me not want to post in a thread, because when you help other people all they do is take a shot on your help and shoot it down with "stupid shit". It is almost like in Die Hard, except it isn't at all. In Die Hard Bruce Willis helps the hostages by freeing them, nearly identical to what I'm doing now except that this is for casting spells in WoW. Can you imagine what would've happened if the hostages hadn't been thankful? Bruce Willis would probably have killed them all as well. Do you want to be killed? If not, you should use what I sent you, because it is a piece of code coming from god himself. Else I'm gonna punch you in your head. Over the internet.
    QFT (and posterity).

  11. #11
    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)
    Originally Posted by Mc-fly View Post
    haha very funny, Im smart enough to see that it is just stupid shit
    Stop being an idiot, MaiN is correct.
    "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

  12. #12
    Mc-fly's Avatar Sergeant
    Reputation
    14
    Join Date
    Dec 2009
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok im sorry main -.-

  13. #13
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    The only person you should look out for giving you code that could get you band is Cypher. LoL but thats only if you ask a bad question. I think the last guy was looking for some camera offsets or code. It was a post that should have been closed. LoL and Cypher gave him some code that would give you a 72h ban. It was a Sticky, o well. Funny to read but at a high coast.

  14. #14
    MaiN's Avatar Elite User
    Reputation
    335
    Join Date
    Sep 2006
    Posts
    1,047
    Thanks G/R
    0/10
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mc-fly View Post
    ok im sorry main -.-
    YouTube - Timbaland - Apologize (feat. One Republic)
    [16:15:41] Cypher: caus the CPU is a dick
    [16:16:07] kynox: CPU is mad
    [16:16:15] Cypher: CPU is all like
    [16:16:16] Cypher: whatever, i do what i want

  15. #15
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    That is to funny!! :rofl: I did not even know you could link to a song half way into it.

Page 1 of 2 12 LastLast

Similar Threads

  1. <HELP> how do i get rid of facialhair on femals?
    By calderon in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 03-21-2008, 10:08 AM
  2. Plz help me/u can get stuff out of it
    By C-Death in forum Community Chat
    Replies: 1
    Last Post: 12-23-2007, 04:01 AM
  3. [Help] How do i get Cenarion War Hippogryph into my server?
    By orcishmailbox in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 12-10-2007, 10:01 AM
  4. Help! I can't get my accounts Prechached. (Ascent)
    By Losheau in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 09-27-2007, 07:51 PM
  5. Help! I can't get my server started anymore (Antrix)
    By Losheau in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 09-17-2007, 07:17 PM
All times are GMT -5. The time now is 02:55 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