Any ways to enable addons/scripts in WoD Beta? menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 51
  1. #16
    airjqqq's Avatar Member Authenticator enabled
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    Or you can add to some addon:
    Code:
    RunScript=function(a) loadstring(a)() end
    IsGMClient=function() return true end
    that does same thing (enable /dump, /script and /run)
    yeah, pretty better one.

    btw, I was wondering about how could you know that the "IsAddOnLoadable" should be the function to be modified?

    Any ways to enable addons/scripts in WoD Beta?
  2. #17
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by airjqqq View Post
    btw, I was wondering about how could you know that the "IsAddOnLoadable" should be the function to be modified?
    I did some comparison.

    Patched binaries:
    WowB.exe

    There's some addons that work or partially work on beta:
    Skada
    ElvUI
    DBM

    Notably there's some issues with loading of textures for UI (green textures),even for blizz own UI, most likely a bug on blizz side.
    Last edited by TOM_RUS; 07-08-2014 at 09:32 AM.

  3. #18
    mouse18's Avatar Active Member
    Reputation
    48
    Join Date
    Jan 2008
    Posts
    164
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    I did some comparison.

    There's some addons that work or partially work on beta:
    Skada
    ElvUI
    DBM

    Notably there's some issues with loading of textures for UI (green textures),even for blizz own UI, most likely a bug on blizz side.
    Not sure if those links were supposed to work but they still give Insecure

  4. #19
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mouse18 View Post
    Not sure if those links were supposed to work but they still give Insecure
    Have you patched game executable how explained earlier in this thread? They only work with patched exe.

  5. #20
    mouse18's Avatar Active Member
    Reputation
    48
    Join Date
    Jan 2008
    Posts
    164
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    Have you patched game executable how explained earlier in this thread? They only work with patched exe.
    Ah.. that would make sense. I'll have to figure out how to do that. I'm a noob at this :P

  6. #21
    airjqqq's Avatar Member Authenticator enabled
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    19
    Thanks G/R
    4/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    Notably there's some issues with loading of textures for UI (green textures),even for blizz own UI, most likely a bug on blizz side.
    It seems that only and all the textures loaded by external codes will be shown as green, which means failed to load obviously. So there should be a way to cheat wow to think they are loaded by blizzard interface. So please help or guide me to find the address to be modified. Thanks a lot.

  7. #22
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by airjqqq View Post
    It seems that only and all the textures loaded by external codes will be shown as green,
    No. It also happens with default UI. Example: https://i.imgur.com/eafga2I.png
    Last edited by TOM_RUS; 07-08-2014 at 10:39 AM.

  8. #23
    pcmdxx's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx works
    is it also soo easy to enable PLUA?

    trying to update some addons^^

    green texture bug seems happen to near every texture you load as a button etc.. sometimes also for the map

    Sucks sooo hard to find the offsets for CanPerformAction without IDA .. I'm to stupid for OllyDBG...just need a offset where I can hook into and overwrite eax...
    Last edited by pcmdxx; 07-08-2014 at 12:37 PM.

  9. #24
    mouse18's Avatar Active Member
    Reputation
    48
    Join Date
    Jan 2008
    Posts
    164
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So i changed the 0x75 to 0xEB (I think..) but the addons still dont work? is there a /script /run or /dump command im missing? (Sorry im new to this)


    Edit: Figured it out, thanks!
    Last edited by mouse18; 07-08-2014 at 03:33 PM.

  10. #25
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mouse18 View Post
    So i changed the 0x75 to 0xEB (I think..) but the addons still dont work? is there a /script /run or /dump command im missing? (Sorry im new to this)


    Edit: Figured it out, thanks!
    You either running wrong binary or changed wrong byte. By default, when you run x86 exe on x64 system, it will run x64 exe instead unless you specify
    "-noautolaunch64bit" command line switch.
    Last edited by TOM_RUS; 07-08-2014 at 03:43 PM.

  11. #26
    mouse18's Avatar Active Member
    Reputation
    48
    Join Date
    Jan 2008
    Posts
    164
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    By default, when you run x86 exe on x64 system, it will run x64 exe instead unless you specify
    "-noautolaunch64bit" command line switch.
    Yeah, it was running the wrong one im pretty sure. got it working now.

  12. #27
    Znuff's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Jun 2010
    Posts
    97
    Thanks G/R
    1/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here's a few minimal addons for WoD - a castbar, nameplates, dpsmeter and modified tooltips.

    These were all posted in the alpha on How2Priest when someone figured out how to enable addons with a few macros.

    I've packaged them with a .toc: https://dl.dropboxusercontent.com/u/...wod-addons.zip

  13. #28
    blamani's Avatar Active Member
    Reputation
    19
    Join Date
    Jul 2008
    Posts
    80
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I would need something to get text from the chat window to the clipboard,prat and chatter do not work yet. can you help?

  14. #29
    pcmdxx's Avatar Member
    Reputation
    1
    Join Date
    Sep 2012
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    SatrinaBuffFrames works partially for 6.0

    You need to change the .toc files ( Interface 60000) and place a valid profile from your live Realm SavedVariables directory. Also you need to adjust AceDB3.0 since there are currently no CVARs like realmlist which is used there.


    *Out of date addon DONT load until you update the .toc files with the new interface (60000)



    Skada did not worked for me. Will check later other addons or upload some fixed stuff here

  15. #30
    blamani's Avatar Active Member
    Reputation
    19
    Join Date
    Jul 2008
    Posts
    80
    Thanks G/R
    1/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    according to wowace changelogs the format of unitguids was changed, so that might cause skada to not work because parsing fails

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. Any ways to enable addons/scripts in Legion Beta?
    By icyblade in forum WoW Memory Editing
    Replies: 0
    Last Post: 12-03-2015, 02:17 AM
  2. [Tool] Any way to enable third-party textures in WoD Beta?
    By icyblade in forum WoW Memory Editing
    Replies: 1
    Last Post: 07-19-2014, 07:37 PM
  3. Request to modify Enable addons in WoD Beta
    By cadcamzy in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 07-05-2014, 03:15 PM
  4. Out of date addon, any way to make it work?
    By kBlaster in forum World of Warcraft General
    Replies: 10
    Last Post: 06-06-2007, 06:47 AM
  5. Any Way into Black Morass?
    By Avianar47 in forum World of Warcraft General
    Replies: 38
    Last Post: 12-27-2006, 11:27 PM
All times are GMT -5. The time now is 07:49 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