Jump to content

Dreamful

WRobot user
  • Posts

    315
  • Joined

  • Last visited

Posts posted by Dreamful

  1. using robotManager.Helpful;
    using wManager.Wow.Enums;
    using wManager.Wow.Helpers;
    using wManager.Events;
    using wManager.Wow.ObjectManager;
    using System.Media;
    using System.Windows.Forms;
    using System;
    using System.Threading;
    
    public class Main : wManager.Plugin.IPlugin
    {
        private bool _isRunning;
    
        /* Code here runs when the plugin is enabled and the bot it started. */
        public void Initialize()
        {
            _isRunning = true;
            Logging.Write("[SpirithealerFixer] Loaded.");
            SpirithealerAccept();
        }
    
        public void SpirithealerAccept()
        {
            while (_isRunning)
            {
                try
                {
                    if (ObjectManager.Me.HaveBuff(8326))
                    {
                        Lua.LuaDoString("StaticPopup1Button1:Click()");
                    }
                }
                catch (Exception e)
                {
                    Logging.WriteError(" ERROR: " + e);
                }
    
                Thread.Sleep(10); // Pause 10 ms to reduce the CPU usage.
            }
        }
    
        public void Dispose()
        {
            _isRunning = false;
            Logging.Write("[SpirithealerFixer] Stopped.");
        }
    
        public void Settings()
        {
            Logging.Write("[SpirithealerFixer] No settings.");
        }
    }

    I have the problem the Spirithealer rezzing is till today not working on Woltk, i made a plugin that spams the Accept button all day long if you have a dead debuff.
    https://wotlk.evowow.com/?spell=8326

    i dont know if that works, but just change it for the dead buff in vanilla and you  good to go.
    Hope i understand your usage correctly.

    Peace,
    Dreamful

  2. On 4/3/2019 at 12:11 AM, artur.k said:

    guys i have question how in Wotlk server gm can see all virtual machines at one computer if every vm have unique vpn ,3 vm 3 different vpn and same ban at same time how? he see personal computer ip? but how if i run wow only from virtual machines with different ip from vpn ,is there way to avoid this?how he can see this

    and no its not wrobot not fc not profile,becouse i have 2 others pc and all is ok except this one pc

     

    Virtual machine software is designed to mimic the hardware functionality of real hardware. But when doing so, some artifacts remain, which help indicate that it is indeed a virtual machine and not a physical one. These kind of artifacts can be specific files, processes, registry keys, services, network device adapters etc.

    Malware programmers take advantage of  this “design flaw”. They code the malware to detect virtual machine configuration files, executables, registry entries or other indicators in order to manipulate their original execution flow. This behavior is referred to as “Anti-Sandbox” or “Anti-VM”.

    So if a registry entry like SYSTEM\CurrentControlSet\Control\VirtualDeviceDrivers exist or even a running process like Vmtoolsd.exe, Vmwaretrat.exe, you get flagged. Start your virtual machine and inside you will see in the taskmgr there will be processes that not running on your system.

    This is just all speculation, i dont know how warden works in depth, but the cases you see above can be used for a flag.

  3. 19 hours ago, johnblaster123 said:

    Hey,

    Is there a way to route WoW through Nord VPN for example multiple times on same machine without making VMware?? I know how to do it via vmware.. but vmware takes a lot of resources and a lot of disk space.

    What you're up to won't work, because that's not the point of a VPN. What you are looking for is a Socks5 together with Proxifier. You can tunnel all traffic program specific with it.
    NordVPN also sells Socks5 proxy or given even away if you have a subsciption, if I'm not mistaken.

  4. 4 hours ago, klunz said:

    Thanks for the answer buddy. Do you Know any 1-110 profiles that run smoothly in 7.3.5? Dont want to buy one that is not updated or filled with bugs

    i would say wRobot is more like a framework, there are many free profiles, some are good, some rather not. There are also paid ones but even those are not bug free and 100% quester like you know from honorbuddy.

    Keep in mind private servers differ, some quest work on servers others don't. You will not have a 100% bugfree and fully afkable profile. And especially since you will come to a point where you have to make yourself one because there are none.

  5. mmmmmmhh ok, so let us guess then since you dont provide a log shall we ?

    1. You have addOns on ? that can cause issues most of the times.
    2. Maybe you selected a diffrent mode in battlegrounder ?
    3. On what build you play ? 7.3.5 build ?????
    4. Did you try to turn of your computer and back on?
    5. Try maybe rotate your tower at 90° degree
    6. Unplug HDMI cable, wait exactly 7 secounds and plug it in.
    7. Maybe you can try hit Spacebar+1+2+3 and then Enter when you start the bot.

    seriously tho, just post a log and we can help you.


     

  6. Hey guys,

    Trying to write a plugin for TSM (3.3.5), and i need to interact with the UI somehow so i tought do it over LUA with the /click function like,

    /click TSMStartCancelScanButton


    but the debug tools not showing me the right button when i hover it. And "/click table: 2C460368" dosent work either.
     

    /run print(GetMouseFocus():GetName()) -- prints "nil" in chat if hover over the button


    Anyone can help me and can explain what happens their ?
    it looks like to me its from a parent and inheritance from it, not sure tho.

    I hover over "Start Cancel Scan" at that screen,

    d1007245c05c764bdf19858280bae0e8.png.0e93918eef25adb46a7f4c724d668ffa.png

     

    greets,
    Dreamful

  7. Anything needs to happen while waiting or he only want to wait and do nohting ?
    Your question is actually a bit unclear.

    You can add Thread.Sleep into your function,

    Thread.Sleep(5000) // Wait 5 Seconds
  8. 1 hour ago, Miragex01 said:

    hi all, how create only one function for fight?
    i wanna if enemyarenaplayer use Tremortotem my pet go autoattack him ?
    it's possible to relize ?(im control my char dmg/way)

    Yes it is possible. In LUA for Grounding Totem would be simple this,

    if UnitBuffID("arena1", 8178) -- Checks if arena target has the Grounding Totem buff
    or UnitBuffID("arena2", 8178)
    or UnitBuffID("arena3", 8178)
    then
      	RunMacroText("/petattack Grounding Totem") -- Sends pet to Grounding Totem
    end

    Just change up the ID with the Tremor Totem Buff.

  9. 7 minutes ago, NiteKat said:

    Ahh okay. I'll have to try to play around with that then... C# might be easier to work with than the XML making tool. I'm a C++ programmer, but looking through the eeny examples that came with the bot, the C# syntax isn't too hard to grasp. And I've been able to use these with slight modifications to, for example, make a Priest that heals/buffs party members and such. Some things just feel really finicky with the editor, but that's probably just my being new with it. ?

    Some nameing of conditions are confusing too in the Fightclass Editor in my opinion.
    if you are expierenced with programming you better go with developing it in a IDE immediatley.

    Helpful threads,

     

     
    Or join the wRobot discord their is a Developer channel where you get quick help.

  10. 1 hour ago, wookie_cookie said:

    I tried to use warmane client but it doesn't let me change realmlist. Do you suggest any other site?

    Attached below is my log from previous crash

    21 Jan 2019 13H23.log.html

    Another site for game clients i recommend, https://wow-clients.eu/tbc.html
    But did you try it with an another Figthtclass ?

    To edit the realmlist what most of the cases works if you cant edit it, copy it and then drag it to desktop, edit it, put it back in and overrite the old one.

×
×
  • Create New...