Jump to content

Andoido

WRobot user
  • Posts

    398
  • Joined

  • Last visited

Everything posted by Andoido

  1. sorry, So, all my wrobots were loaded through the Relogger. I do not have any -nodx, or noframework, all are standard wrobot.exe loagins (via the relogger, with no args conditions. Wrobot has no modifications
  2. @droidz I changed my IP, Computer ID, and everything (Used NordVPN) Started a rogue - got to level 7 (Troll Rogue) and did about 4 quests (mostly grinding) - banned, same code - Reason: Automatic Anti-Cheat Ban. Ban happened about 15 mins ago, about 1h4 or so of botting to lvl 7. Hope this helps. I am baffled, no idea wtf is up. Most bans are from lvl 7-10. However i did get a ban at 22 on my main account, and i have a mage whos 21 - i just logged out.. till i can get a solution. Account #9 - All same codes, all between 7-20 (avg seems to be level 7-10 when it happens.)
  3. Alriht boys.. i did a few tests Started 4 Accountsm all on diff IP's. Did not have any hacks loaded. 1) Rogue 2) mage 3) mage 4) rogue. 1 -- Got to level 7, banned, , chars 2 3 4 - were not banned at the same time. 2) level 21 and still going.. (not banned yet) 3) Got to level 7, and got - Reason: Automatic Anti-Cheat Ban. Same error as ALL my bans. - Accounts 2 and 4 were NOT banned at the same time. 4) got to level 11 and Reason: Automatic Anti-Cheat Ban. - Account 2 Was NOT banned at the same time. All were banned at different times, not at once. Im sorry to say but - i think wrobot is tripping the Anticheat on Silver Hand. Can i get any other people who have had issues similar ? GMs are beig douchbags. and wont tell me why
  4. Silver Hand = Lights Hope AKA Northdale new server yes. I said fuck it till i can get an answer, 9 accounts is just bs lol
  5. Grinder, but if it was for botting the gms; would have told me it was. they said 'something on my computer is causing a trigger" and i dont have a modified wow.exe or anything, just wrobot O-o its odd right??
  6. 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
  7. // 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)
  8. 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); }
  9. 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); }
  10. 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.
  11. Oh "its working" hehe failed to see that tidbit! Just a heads up if you re-sub, aka re-purchase wrobot and get a new Key, youll run into the 30 minute popup, if that ever ends up happening go ahead and contact me so i can fix it
  12. bit of both. If you look at the quest editor settings, it will quest then grind then quest then grind. makes quests easier.
  13. Found a massive error with 13-30 profile. Please go redownload the file via your Rocketr Linkk, your new .rar should say " 1-60 Allaince Remake Quester - By Andoido.rar " exactly. if it does not, please contact me as you are downloading an older .rar that doesnt contain the updates. My apologies.
  14. 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!
  15. Paying for a Dev to help with creating a First Aid leveling profile/script. Thanks.
  16. BetterSoster / Bambo, thank you both for answering a client of mines questions i appreciate that. If you have further problems, dont hesitate to join the Discord, or pm me my man. i hope all got worked out.
  17. Did you upgrade your wrobot license recently? My auth setver doesnt keep track of that sorta thing... so if you buy profile, and use rocketr ID on wrobot license 1.. and buy a new license 2, and enter same rocketr Key, this will cause the error. unfortunatly theres no way around it. or atleast nobody has given me the material to get around it. YOu need a new rocketr ID contact me on discord and ill help you out.
  18. Yes, im going to try it right now. Update coming.
  19. Only plugins i had on were HMP, and move during combat, its possible one of thoes messed it up i dont know =x
  20. like yea, its on Outland, and WOTLk. im pro at wrobot and even i can tell its wrobot not the user
×
×
  • Create New...