Jump to content
TrinityCore

VhiperDEV

Plebs
  • Posts

    1
  • Joined

  • Last visited

Everything posted by VhiperDEV

  1. Hello communities after some research I found this brief statement on how to apply a possible lock to the auto-rotate Script that is being widely used on today's servers. [PQR SCRIPT] I ask everyone's help to be able to make this block and apply it correctly. Discord: vhiper#7085 PQR ->> https://www.youtube.com/watch?v=_TGiJBLiA_k 1. Make sure AddonChannel logging is set to 1 in your config (We will use the WoW LUA API SendAddonMessage to return information when warden runs our custom LUA detections, The results will be stored here, so we will need to parse this log for them) 2. Open WardenWin.cpp , scroll down to line 119(Request.Function2), replace with Request.Function2 = 0x00819210; // Changed from FrameScript::GetText to FrameScript::Execute (Note, the old offset wasn't even for 3.3.5a since it was for a different version of WoW) 3. Open warden_checks database table, add a new entry using type 139 and using str "if(PQR_EventFrame~=nil)then SendAddonMessage('xPcW',"e7BeIAPMLTP9",'WHISPER','l0l')end" How this works Framescript::GetText is the original scan included in warden, it just reads from the client frame, we change the offset for that scan to point to FrameScript::Execute It's bascially what DoString() calls(Protected LUA Function) Once the offset is changed, we add our custom scan, and it will run the LUA on the client, but WOTLK warden doesn't support returns, so we need a way to get that data back. That's why we use SendAddonMessage, we can then check the addonchannel logs via a parse and take action some related links. https://paste2.org/VNyeUnkU https://pastebin.com/BZJ2QNAM https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/656619-warmane-pqr-bans-2.html
×
×
  • Create New...