Jump to content

Nax

WRobot user
  • Posts

    95
  • Joined

  • Last visited

Everything posted by Nax

  1. With the build button of ctrl + B download Visualstudio 2022 community
  2. if you tell me which ones you would like, ill take the 30 seconds to build them for you to be helpful.
  3. @AsanWarriorVanilla.dll here is a build copy of @MateniaWarrior Vanilla without Auth .
  4. @DroidzYou are correct, sorry i should of thought of this before i replied. So to make a plugin more secure, you would have to hook and spoof Memcheck and PageScan to make sure when they do check if something is detoured. that we send back the right data they seek.
  5. So with wrobot plug-in, you’d have to use a detourhook using ASM, wow uses two different send data to server function. One is for public static and other is loaded when warden is loaded. I know that from wotlk below the server don’t get the pc username. For Cata and above I have no clue.
  6. not gonna lie, would be awesome if @DroidzAdd a Asm DetourHook class to wrobot so we can hook functions and have more control over wow. but i know he is using Break points and i dont know if having asm hook will mess with break points. @Pudgei wrote my own packet sniffer for wow in c++ (its not public) if you want to message me, i can let you use a copy of it.
  7. Anything is possible, wrobot just uses C#, besides a massive API, Wrobot can run all .net code . Just takes time and understanding how to build it. With wrobot plug-in you can build your own internet browser if you really wanted. why do you wanna see out going packets? Besides warden , I can surely tell you that there’s nothing interesting .
  8. local tooltip local function CreateToolTipFrame() tooltip = CreateFrame("GameTooltip", "MyTempTooltip", UIParent, "GameTooltipTemplate") tooltip:SetOwner(UIParent, "ANCHOR_NONE") end local function OnTooltipSetItemFromLink(itemLink) if itemLink then CreateToolTipFrame() -- Ensure tooltip is created tooltip:SetHyperlink(itemLink) local numLines = tooltip:NumLines() if numLines > 0 then for i = 1, numLines do local line = getglobal(tooltip:GetName() .. "TextLeft" .. i) if line then DEFAULT_CHAT_FRAME:AddMessage(line:GetText()) end end end tooltip:Hide() end end
  9. Hello, i Believe you have to use tooltip reading ,
  10. local tooltip; local function CreateToolTipFrame() tooltip = CreateFrame("GameTooltip", "MyTempTooltip", UIParent, "GameTooltipTemplate") tooltip:SetOwner(UIParent, "ANCHOR_NONE") end local function OnTooltipSetItemFromLink(itemLink) if itemLink then tooltip:SetHyperlink(itemLink) local numLines = tooltip:NumLines() if numLines > 0 then for i = 1, numLines do local line = _G[tooltip:GetName() .. "TextLeft" .. i] if line then print(line:GetText()) end end end tooltip:Hide() end end
  11. Could use tooltip reader to get the each lines.
  12. You can do this by creating your own product or by using Quester and creating Quest steps to run to trainer and learn spells once you completed the required step.
  13. Could always use Distance check, Distance from portal is more then a range then return true.
  14. give this profile a try, i ripped it from some random Dk profile i had in my quester An End To All Things....xml
  15. seems like a problem with your fightclass. Can you post logs?
  16. They just ban, but they do track your up after that.
  17. They ban bots all the time but not for detection, Wrobot doesn’t modify any memory. Wrobot use HWBP which is harder to detect if at all possible. The inject if I am correct is via endscene which every single video captured uses. they ban because people are watching bot do weird shit. sharp turns, weird directions etc
  18. Hey, for this problem with the pathfinder. I know wrobot sometimes (more or less of the time.) breaks down. I would recommend if you have the time sit down and build your own navigational system. It fairly easy to set up a basic one with recast and detour. And after you have a basic one up and running. Add features like distanceToWall etc.I find learning how it’s built is very fun.
  19. looks like a socket problem
  20. this is interesting, ill have to take a look at the code. i dont use Dll, my code is for my project .
  21. You could consider creating a system where the decryption key is generated based on the user's IP address or hardware ID. To implement this, you'll need to delve into the field of cryptography and learn how to securely handle and manage these keys, i am currently researching this to give people able to protect their own fightclasses / profiles etc.
  22. Can someone provide me with the realmlist.wtf for sirus? id like to dump its warden to see whats going on.
×
×
  • Create New...