Use Blizzard UI-Protected Functions menu

Shout-Out

User Tag List

Page 18 of 19 FirstFirst ... 141516171819 LastLast
Results 256 to 270 of 284
  1. #256
    maclone's Avatar / Authenticator enabled
    Reputation
    2420
    Join Date
    Nov 2007
    Posts
    8,726
    Thanks G/R
    0/1029
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Replies: 256 - Views: 26,726 - Currently Active Users Viewing This Thread: 21
    How about that you idiots give rljohn some +rep for his epic find?
    I don't see that he got much from sharing it here and still, it gets abused 'til maximum.
    Last edited by maclone; 08-19-2009 at 12:51 PM.
    Zomfg. And no, don't ask. - Dombo did it.

    Use Blizzard UI-Protected Functions
  2. #257
    i2lurchi's Avatar Member
    Reputation
    15
    Join Date
    Jun 2009
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Should automatically silence the /dump shit. Also lets you use EL("lua stuff here") in macros to avoid the loadstring() length, and also CSBN("Smite") to do CastSpellByName. (Just use EL("CSBN("Smite")") for example)
    with
    /dump loadstring("DevTools_DumpCommand = (function(msg) loadstring(msg)() end)")()
    you can IGNORE loadstring() ! you don't have to use it!

    e.g.
    /dump CastSpellByName("Lifebloom")

  3. #258
    i2lurchi's Avatar Member
    Reputation
    15
    Join Date
    Jun 2009
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maclone View Post
    Replies: 256 - Views: 26,726 - Currently Active Users Viewing This Thread: 21
    How about that you idiots give rljohn some +rep for his epic find?
    I don't see that he got much from sharing it here and still, it gets abused 'til maximum.
    Found this little gem today on Arena Junkies...
    hmm... just copy+paste?

  4. #259
    j2tb's Avatar Member
    Reputation
    1
    Join Date
    Sep 2007
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Could someone create a Warrior tank macro?
    i.e Charge>devastate to 5 sunders>rend

    if rend is not applied by player then rend
    if sunder is not = to 5 then devastate
    Shield slam every cooldown
    If revenge procs use it
    use berserker rage when in combat

    Heroic strike when rage is >35 or something
    ^ heroic strike dump would be SO BLOODY helpfull

    Will +rep if it works ^^
    Last edited by j2tb; 08-19-2009 at 01:31 PM. Reason: .

  5. #260
    Holypaja's Avatar Banned
    Reputation
    12
    Join Date
    May 2007
    Posts
    130
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Guys id like to have some priest exploits, like healing or dps thanks

  6. #261
    maclone's Avatar / Authenticator enabled
    Reputation
    2420
    Join Date
    Nov 2007
    Posts
    8,726
    Thanks G/R
    0/1029
    Trade Feedback
    0 (0%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by i2lurchi View Post
    hmm... just copy+paste?
    Like I said. He shared it with MMOwned.
    And with that he's the reason that YOU and/or others know about it and this thread with macros exists.
    Zomfg. And no, don't ask. - Dombo did it.

  7. #262
    i2lurchi's Avatar Member
    Reputation
    15
    Join Date
    Jun 2009
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    * Fixed an exploit players were using with / commands


    bye bye /dump

  8. #263
    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 Apoc View Post
    Note to all;

    This 'exploit' will work until the next patch. (Most likely will be a minor patch, just to fix the silly Lua bug you're all exploiting).

    I suggest someone with decent Lua knowledge, writes a small addon to hook the PLAYER_ENTER_WORLD event to run some 'setup' commands for you guys. (Killing /dump spam, setting up some other variables, etc) And also register a 1 letter slash command (eg; /d) to use in macros. Possibly shorten some widely used function names so you can get more room in stuff. Or hell; just edit the Lua files to 'bot' with.

    Edit:

    I'm no Lua expert, but I *believe* this code should work. Just make it an addon or something and test it.

    Code:
    -- Handles silencing the /dump command for you. This executes any time the UI is reloaded or we change zones via UI load
    -- Also includes after login!
    local pewFrame = CreateFrame("dumpFrame")
    pewFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
    pewFrame:SetScript("OnEvent", function(self,event,...)
            EL("DevTools_DumpCommand = (function(msg) loadstring(msg)() end)")
    end)
    
    -- ExecuteLua (Truncated to EL)
    function EL(lua)
        loadstring(lua);
    end
    
    -- CastSpellByName (Truncated to CSBN)
    function CSBN(name)
        EL("CastSpellByName(" .. name .. ")"))
    end
    Should automatically silence the /dump shit. Also lets you use EL("lua stuff here") in macros to avoid the loadstring() length, and also CSBN("Smite") to do CastSpellByName. (Just use EL("CSBN("Smite")") for example)

    /run EL("CSBN(\"Smite\")")

    ^ Should cast Smite. You guys may want to test it.
    It would be better to use pewFrame:SetScript("OnLoad", function(self) end) - PLAYER_ENTERING_WORLD is only run once when you log in, while OnLoad, obviously, is run every time the addon is (re)loaded.
    [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

  9. #264
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    World of Warcraft - English (NA) Forums -> Realm Restarts - Patch 3.2.0a - 8/19/09

    Here comes the fix. Does anyone have an 'unpatch'/hack for this fix planned when this patch comes out?

  10. #265
    akspa420's Avatar Contributor
    CoreCoins Purchaser
    Reputation
    125
    Join Date
    Apr 2009
    Posts
    407
    Thanks G/R
    73/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by i2lurchi View Post
    * Fixed an exploit players were using with / commands


    bye bye /dump
    Yep. 3.2.0a is going live sometime today, and it specifically removes /dump commands. I just wonder if it'll be removing the blizz dev tools, or if the client will be modified to disallow unsigned code from executing the /dump command (IE: allow only blizz-issued addons).

  11. #266
    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 akspa420 View Post
    Yep. 3.2.0a is going live sometime today, and it specifically removes /dump commands. I just wonder if it'll be removing the blizz dev tools, or if the client will be modified to disallow unsigned code from executing the /dump command (IE: allow only blizz-issued addons).
    The dump command is probably just going to get removed.
    What's happening right now is exactly that the blizzard signed addon is performing the protected function, and blizzard signed addons can do that.
    [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

  12. #267
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Patch is live now.

  13. #268
    i2lurchi's Avatar Member
    Reputation
    15
    Join Date
    Jun 2009
    Posts
    50
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MaiN View Post
    The dump command is probably just going to get removed.
    What's happening right now is exactly that the blizzard signed addon is performing the protected function, and blizzard signed addons can do that.
    anybody has a download link for 3.2.0a? I play in EU we don't have the patch yet. maybe we can change the Patch file...?

  14. #269
    Ssateneth's Avatar Contributor
    Reputation
    142
    Join Date
    May 2008
    Posts
    866
    Thanks G/R
    1/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by i2lurchi View Post
    anybody has a download link for 3.2.0a? I play in EU we don't have the patch yet. maybe we can change the Patch file...?
    Just run the WoW Launcher (not WoW.exe but Launcher.exe from the WoW dir) and it should automatically start downloading the patch. That's what it did for me, but I have yet to close WoW so I'm still running with the 'old' patch Here's the US version. I do not have an EU version, sorry.

    RapidShare: 1-CLICK Web hosting - Easy Filehosting

  15. #270
    Iaccidentallytwink's Avatar Elite User
    Reputation
    591
    Join Date
    Aug 2007
    Posts
    1,020
    Thanks G/R
    1/16
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All they did was add a TaintForced addon that can't be disabled. Remove the addon from the patch?


Page 18 of 19 FirstFirst ... 141516171819 LastLast

Similar Threads

  1. Easiest way to use "Blizzard UI" functions to /interact with a selected target?
    By b0nghitter in forum WoW Bots Questions & Requests
    Replies: 1
    Last Post: 11-05-2012, 11:07 AM
  2. Finding Lua protection function using OllyDBG. (3.3.5a)
    By Ramono in forum WoW Memory Editing
    Replies: 5
    Last Post: 06-18-2011, 05:40 PM
  3. Auto Prospecting Macro (Using protected functions)
    By Mathmech in forum WoW UI, Macros and Talent Specs
    Replies: 2
    Last Post: 10-21-2009, 04:36 PM
  4. Working /dump for Protected functions in 3.2.0a
    By mach1920 in forum World of Warcraft Exploits
    Replies: 14
    Last Post: 08-19-2009, 09:10 PM
  5. Use Blizzard's Database of Choice: Oracle
    By Vindicated in forum WoW EMU Guides & Tutorials
    Replies: 18
    Last Post: 08-29-2008, 05:12 PM
All times are GMT -5. The time now is 12:47 PM. 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