Jump to content

Andoido

WRobot user
  • Posts

    398
  • Joined

  • Last visited

Posts posted by Andoido

  1. 8th char in a row thats gotten this bs message. Something tells me it has to do with Wrobot being detected? but...

    Droidz would be able to answer that.

    Every single char ive made has gotten this ban, can i get som insight - anybody else?

     

    " something on your computer triggers the anti cheat. Please uninstall and get a clean version.  "

    Response for a GM... lol, so @droidz can you confirm if this is wrobot? 8 accounts is to many to be a coincidence

  2. // here
    
    // Go to specific location, and Useitem on Object and Harvest + Quest required (RunCode) - me
    
    var pos = new Vector3(-2496.714f, -1632.943f, 91.73521f);
    uint itemId = 15710;
    int objectId = 177644;
    int questId = 6002;
    
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    
    if (Quest.HasQuest(questId))
    {
         ItemsManager.UseItem(itemId);
    	wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(177644);
    }
    
    // You can also just make a RuNCode to "go to position - or a follow path" and make a RunCode - and just use the Harvest code at the bottom.(enter the object id u want to harvest/clickon)

     

  3. Smokie's code was a bit over the top, professional for sure! Heres a few examples you can use that ive created.

     

    // RunCode - Interact with ObjectID - Gather Object RunCode
    // Add Object Location in the Vector3 cords. Add the Object ID in the int objectid.
    // Add the ITEM ID in the middle where it says < 1
    
    var pos = new Vector3(199.9151f, 3472.976f, 63.24443f);
    int objectId = 184115 ;
    
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    
    if(ItemsManager.GetItemCountById(23339) < 1)
    {
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    }

     

    you can also create a "IF statment" - i get a little giggle out of the andoido part ?

    IF Has Quest (1234)
    Pulse - Follow path to the object
    Runcode (Enter the following below - change the id of the object using the helper tools
    Endif

                WoWGameObject andoido = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject().FirstOrDefault(i => i.Entry == 148917);
                if (andoido != null)
                {
                    wManager.Wow.Helpers.Interact.InteractGameObject(andoido.GetBaseAddress);
                }

     

  4. You can do  a few different ways my friend.. Heres a few examples. Prepare yourself for an Above and Beyond answer...

     

    Your best bet is to use this code i made for several quests requireing the same exact thing - Using harvest is a good option when wanting to click on stuff, otherwise you need to add an objectid and itemid if your using an item.

    // Go to specific location, and Useitem on Object and Harvest + Quest required (RunCode) - me
    
    var pos = new Vector3(-2496.714f, -1632.943f, 91.73521f);
    uint itemId = 15710;
    int objectId = 177644;
    int questId = 6002;
    
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    
    if (Quest.HasQuest(questId))
    {
         ItemsManager.UseItem(itemId);
    	wManager.wManagerSetting.CurrentSetting.ListHarvest.Add(177644);
    }

     

           // This will search the area for a specific Item or w.e. and click on the ground to interact with it.
    
                WoWGameObject andoido = wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWGameObject().FirstOrDefault(i => i.Entry == 148917);
                if (andoido != null)
                {
                    wManager.Wow.Helpers.Interact.InteractGameObject(andoido.GetBaseAddress);
                }

     

    This one will interact with NPC who is Dead on the ground. Can be used in situations for clicking and what not - If you wish to cast a spell, you can add an uint spellId.

    wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) =>
    {
        var t = wManager.Wow.ObjectManager.ObjectManager.GetObjectByGuid(target);
        if (!t.IsValid)
            return;
        var e = t.Entry;
        if (e == 21859 || e == 21846)
        {
            System.Threading.Tasks.Task.Run(delegate {
                System.Threading.Thread.Sleep(wManager.Wow.Helpers.Usefuls.Latency + 100);
                wManager.Wow.Helpers.ClickOnTerrain.Item(31769, t.Position);
            });
        }
    };

     

    And lastely, this code you can specify wether or not you have an item < or > than. (change latency to like 3,000 or something.

    // RunCode - Interact with ObjectID - Gather Object RunCode
    
    var pos = new Vector3(199.9151f, 3472.976f, 63.24443f);
    int objectId = 184115 ;
    
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    
    if(ItemsManager.GetItemCountById(23339) < 1)
    {
    wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithGameObject(pos, objectId);
    
    Thread.Sleep(Usefuls.Latency + 10000);
    }

     

  5. Old topic. Wanted to leave a post since well fuck it? lol.

    Setting your Hearthstone. (This code can be used for many many other situations.) my own making,

    // How to set your Hearthstone, the pro way
    
    // Step 1 - Set IF Statment.
    IF Statment  IF code in the quest order editor IF (link code below)
    
    Lua.LuaDoString<string>("bindlocation = GetBindLocation(); return bindlocation;") != "Orgrimmar"
    
    // Step 2 - RUNCODE - Change the Location + NPC ID of your new innkeeper (using the helper tools)
    
    var position = new Vector3(1633.99f, -4439.37f, 15.43382f);
    int npcEntryId = 6929;
    {
    	if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId))
    	System.Threading.Thread.Sleep(3000 * 2);
     	Lua.LuaDoString("GossipTitleButton1:Click();");
    	System.Threading.Thread.Sleep(2000 * 2);
    	Lua.LuaDoString("StaticPopup1Button1:Click();");
    	System.Threading.Thread.Sleep(3000 * 2);
    	Lua.LuaDoString("StaticPopup1Button1:Click();");
    	Lua.LuaDoString("CloseMerchant()");
    	System.Threading.Thread.Sleep(3000 * 2);
        if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId))
    	System.Threading.Thread.Sleep(3000 * 2);
    	Lua.LuaDoString("GossipTitleButton2:Click();");
    	System.Threading.Thread.Sleep(3000 * 2);
    	Lua.LuaDoString("StaticPopup1Button1:Click();");
    	System.Threading.Thread.Sleep(3000 * 2);
    	Lua.LuaDoString("StaticPopup1Button1:Click();");
    	Lua.LuaDoString("CloseMerchant()");
    }
    
    // ENDIF -- Add an ENDIF Statment.
    //This will force the bot to run to the npc location, it will do each step every 2 seconds (click the bind option) And a 2nd timeincase the bind is on button 2.

     

  6. Calling any developer! Looking to hire a developer for a project!

    i am looking for 2 things currently

    1) First Aid custom script, or fullssharp code, or really anyway to level "first aid" inside of a quester profile. Should be able to level any other profession  aswell.

    2) I am looking for either Plugin, or Custom Script, which will directly relate to my profile. Ingame Interface if you will - Nothing crazy hard, Something like Checkboxes (ON And OFF), On - which would check X steps inside the profile, or giving back.

    Thanks!

  7. Hey all.

    Im trying to implement a new feature into my profile (Horde Remake) and im struggleing hardcore.

    I couldnt find anything on wrobot forums about leveling first aid via lua or C#.

    Im wondering if anybody could help me get started. basically i made the bot farm 70 linnen cloth. and now i need him to "Cast create linnen bandage (as a quest class) - so i can have an IsComplete Statment when FirstAid <= xxx (code i already have)

    I can also implement this into a RunCode however.

    So if anybody has any insight id be very greatful.

     

    =========================

     

    I am also looking to hire a skilled developer for my next project. If you're looking for work and can create a Plugin, or Use the "Custom Script" inside of a Quester Profile, please contact me. Id love to get started with this!!! I have a badass idea but  i dont have the skills to do it myself.

    Thanks!

    https://discord.gg/fudFNyc

     

  8. Looking to hire a code developer for my next project.

    if you can create a custom ingame interface which will directly alter my profiles settings etc (talk more via pm), either using a Plugin or built into the actual profiles Custom Script, give me a shout.

     

    Also hiring a code developer who can assist me with the creation of First Aid / any profession leveling (except skinning)

     

    Here or my discord

    https://discord.gg/fudFNyc

×
×
  • Create New...