Jump to content

Nax

WRobot user
  • Posts

    95
  • Joined

  • Last visited

Recent Profile Visitors

461 profile views

Nax's Achievements

  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?
×
×
  • Create New...