Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Reputation Activity

  1. Like
    TheSmokie got a reaction from raka in Pet Feeding   
    give this a shot
  2. Thanks
    TheSmokie reacted to Matenia in Warmane Icecrown Bot Detection   
    Dude, you're completely uninformed. First of, it doesn't matter what right they have. Second, whether they or Blizzard have that right would make no difference. Warden is part of Wow's binary. You're checking part of the memory section that the process itself occupies, not scanning RAM at random. This is also how CRC checks work.
    They aren't scanning your system at random either. The way this check works is that the client can be patched to execute Lua code as "secure" rather than tainted, the way it normally is. The client usually checks (in itself) if the function is allowed to be executed (for example, casting a spell from code can only be done using secure action buttons in a certain way, or macros). The server never knows if a spell was sent to it "legitimately". 

    They execute Lua code on your client and hook some functions that you would normally use. So if you cast a spell in a way that's against the rules, it will now notify them.
  3. Thanks
    TheSmokie got a reaction from freaq in Bot wont start - error   
    Thanks @Matenia! , I was gonna help him but got back to late!
  4. Thanks
    TheSmokie reacted to Matenia in Bot wont start - error   
    You're loading a grinder profile in the quester product
  5. Thanks
    TheSmokie reacted to mita in [ToolBox][Vanilla - WOTLK] Many Useful Functions (Custom script)   
    @Smokie good guy! learn more from your code. And thank for your help.
    About" TB.Hasitem(55)".  If i want  check i  have item and item quantity,do you have any idea.
     
  6. Like
    TheSmokie reacted to Droidz in Snippets codes for quest profiles   
    Change position of path generated by WRobot
    (this can help you to resolve  stuck on specific doors and doorways)
    With this code, you can replace specific point of path by another.
    // Continent (item1), DefaultPosition (item2), DefaultPositionSearchRange (item3), NewPosition (item4) var positionChange = new List<Tuple<ContinentId, Vector3, float, Vector3>> { new Tuple<ContinentId, Vector3, float, Vector3>(ContinentId.Kalimdor, new Vector3(1422.318, -4662.921, 35.46182), 0.5f, new Vector3(1422.063, -4665.421, 35.46295)), /// new Tuple<ContinentId... }; wManager.Events.MovementEvents.OnMovementPulse += delegate(List<Vector3> points, CancelEventArgs cancelable) { var continent = (ContinentId) Usefuls.ContinentId; foreach (var p in points) { foreach (var pchange in positionChange) { if (p != null && pchange.Item1 == continent && p.DistanceTo(pchange.Item2) <= pchange.Item3) { Logging.WriteDebug("Change path position of " + p + " to " + pchange.Item4); p.X = pchange.Item4.X; p.Y = pchange.Item4.Y; p.Z = pchange.Item4.Z; p.Type = pchange.Item4.Type; p.Action = pchange.Item4.Action; } } } };
    (you need to run this code one time by WRobot session, you can run this code in step type "RunCode")
  7. Like
    TheSmokie reacted to Droidz in Snippets codes for quest profiles   
    Blacklist object/unit in ObjectManager 
    WRobot will 100% ignore blacklisted objects
    WoWUnit unit = new WoWUnit(0); if (unit.IsValid && !wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Contains(unit.Guid)) wManager.Wow.ObjectManager.ObjectManager.BlackListObjectManagerGuid.Add(unit.Guid); (this code can disrupt WRobot, use it only if you know what you're doing)
  8. Like
    TheSmokie reacted to FNV316 in Snippets codes for quest profiles   
    Force Taxi (Vanilla) & automatically get TaxiButton by name
    var position = new Vector3(-8835.76f, 490.084f, 109.6157f); int npcEntryId = 352; if (!ObjectManager.Me.IsOnTaxi) { if (wManager.Wow.Bot.Tasks.GoToTask.ToPositionAndIntecractWithNpc(position, npcEntryId)) { int node; Usefuls.SelectGossipOption(GossipOptionsType.taxi); node = wManager.Wow.Helpers.Lua.LuaDoString<int>("for i=0,30 do if string.find(TaxiNodeName(i),'Ironforge') then return i end end"); wManager.Wow.Helpers.Lua.LuaDoString("TakeTaxiNode(" + node + ")"); } } Step "RunCode" and wrap it into a while loop (as shown in Droidz example).
    For 'position' you have to add the position of the flight master the bot is going to use.
    For 'npcEntryID' you have to add the ID of the corresponding flight master.
    For 'Ironforge' you have to change it to the name of the taxi node you wanna travel to. Has not to be the full name, an explizit part of the destination is enough (f.e. 'Stormwind' instead of 'Stormwind City').
    The code above makes the bot travelling from Stormwind to Ironforge.
  9. Like
    TheSmokie reacted to Pudge in Quest : the gift that keeps on giving   
    hi, you can try this method
    ObjectManager.GetObjectWoWUnit().Count(u => u.IsMyPet && u.Name == "Scarlet Ghoul") == 5  
  10. Like
    TheSmokie got a reaction from bio33 in Quest : the gift that keeps on giving   
    Hello,
    I am in need of a little help with a quest complete condition, for the dk quest, “the gift that keeps on giving” the player throws thing item on the ground to make ghouls, (friendly units.) I need a condition that detects the ones that player makes, createdby.play == 5
  11. Thanks
    TheSmokie reacted to Pudge in Setting wrobot runecode   
    https://marsbars.gitlab.io/unoffical-wrobot-api-docs/api/wManager.wManagerSetting.html
  12. Thanks
  13. Thanks
    TheSmokie reacted to Droidz in Need a bot for wow classic official servers   
    To solve the problem and make me look like an idiot, give me or a known member of the forum access to the bot (or access to a PC with TeamViewer where the bot is installed) (or accept Paypal, I'll buy it).
  14. Thanks
    TheSmokie reacted to Matenia in Need a bot for wow classic official servers   
    Our guy Yakub over here still trying to break even after wasting his money on UI development courses.
    @Bambo said it earlier, but if Yakub had actually spent the time he's wasting attmepting to scam people just developing bot profiles for wRobot or retail bots, he'd probably have made much more money by now. 
    Hey Yakub, if you're worried about making rent this month, don't worry. Just send me a PM on here. I feel so sorry for you, I'll help you out with the money I've made from Classic since release.

    To backup Droidz: If you're accepting PayPal as a payment method, I will literally buy your bot for 5x it's price right now.
    Of course as a secure business transaction and not friends and family ?
  15. Like
    TheSmokie reacted to Bambo in Need a bot for wow classic official servers   
    After this shitstorm in this thread no sane person would buy your product lol
  16. Like
    TheSmokie reacted to Matenia in Need a bot for wow classic official servers   
    This guy who is still pretending it's not his bot (even though he instantly had access to my test to their form - because he's apparently best buds with the "real admin") actually has so little experience in developing actual bots for WoW that he doesn't even understand how Blizzard's detection works on Windows processes.

    I love how he dismissed possible detection vectors that would be instantly picked up on a public bot because he doesn't even understand them. 
    Just goes to show the dude hasn't spent more than 5 minutes on figuring out the changes that 7.3.5 brought in terms of their updated protection.
    If the bot were real, you could've allowed Droidz a 30 minute trial license and gotten positive responses despite advertising your product on a website you have no business on. But it's (real) not and you thinking that you can just copy or steal source code that needs to read and write memory from and to several constantly changing binaries is proof of that if nothing else.

    I admit I was wrong about the form not submitting intially. But everything still stands. You're sending reviews you clearly didn't implement yourself to a third party domain and there's good reasons my browser extensions recognized that as an easy, even if the other site is adjusted for CORS policy.
  17. Thanks
    TheSmokie reacted to Matenia in Need a bot for wow classic official servers   
    This guy still thinks SEO works by reposting the same link over and over on the same URI. What is this, 2005?
    I sure hope Google does actually index it, so everyone can see what a C class scam this guy. 
    Also insulting wRobot... it's not even a competitor. It's a private server bot. It can't get your WoW account banned because it's not for retail. But at least it works, unlike the review page that's full of fake reviews. I'm surprised they put some 4 star reviews in there now. Last I checked they didn't have them. You can tell it was quickly thrown together because they couldn't even be bothered to make the missing star look like it fits the rest ?
    Keep in mind, he's saying other people are toxic and overwhelming him, yet he came onto this site and attacked the owner of a website that he chose to advertise his product on. Calling him a poor faggot with no life.

    Look at this garbage:

    Submission form is also completely fake:


    Success message hard coded instead of a server response, full of javascript serialization bugs. As if not being able to select the amount of stars, but being asked to put them in as text wasn't a clue enough how fake this is, the form doesn't have a target either. So it would have to be submitted through javascript. 
    Also says it requires recaptcha, but doesn't actually display one. 

    Here is what happens when you try to submit the form:

    It's just tracking data. If you allow ads and tracking, it simulates a form submit.
    Also sends some data to secureserver.net's API, which as far as I can tell is more or less a public API beloging to GoDaddy.

    There's no reason they should send an XHR request to another domain. Basically anyone reaching this from Google, wondering if that bot is legit - no it's a huge scam and you'd be better off investing in an EWT or LuaBox based bot for retail Classic WoW. They have become fairly advanced and a lot of people are selling advanced bots using the Lua unlocker's API. It may seem a bit pricey, but it's well worth it and veeeeery scure.

  18. Like
    TheSmokie reacted to Matenia in If focus is casting   
    if ObjectManager.Me.FocusObj.IsCast
    {         SpellManager.CastSpellByNameOn("Shadowstep", "focus");
    }
  19. Thanks
    TheSmokie reacted to Sjd6795 in Purchased profile saying my transaction ID is being used   
    This has said to been resolved. Testing the script now will post back with update.
  20. Like
  21. Like
    TheSmokie reacted to Kamogli in Fightclass Framework for 2.4.3/3.3.5a and more   
    Legend! ?
  22. Like
    TheSmokie reacted to Marsbar in Fightclass Framework for 2.4.3/3.3.5a and more   
    Great contribution. Clearly a lot of work went into this.
  23. Like
    TheSmokie reacted to Matenia in Fightclass Framework for 2.4.3/3.3.5a and more   
    If you've seen my 1.12 fightclass framework, this is basically the much enhanced version.
    It should work for WoW 2.4.3 and 3.3.5a, possibly many more expansions. The only thing you would have to do is adjust the way combatlog events are parsed, if paramters have changed in your expansion. Everything else should be handled by wRobot. 

    Below you can find the GitHub repository. It also contains a very simple enhancement shaman fightclass as an example that you could change to fit your own needs.
    This is for developers only. If you're a regular user, I recommend just buying my fightclasses. They are, in my opinion, fairly priced.

    Features:
    - checks with server if a spell was successful
    - support for different types of spells 
    - no more double casts of any sort (heals, debuffs, damage)
    - possibility to ignore server responses
    - easy offtarget handling
    - performant caching and rotation handling
    - possibility to use as a healing framework
    - support for wanding
    - multilanguage support
    - dispel by debuff type
     

    https://github.com/Schaka/wRobotFightclassFrameworkEnhanced
     
    @Droidz would be nice if you could sticky/pin this thread
  24. Thanks
    TheSmokie reacted to Droidz in how to stop bot when Game master change my character size ?   
    Hello, try plugin:
    using System; using System.Threading; using robotManager.Helpful; using robotManager.Products; using wManager.Plugin; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; using Timer = robotManager.Helpful.Timer; public class Main : IPlugin { private bool _isLaunched; public void Initialize() { _isLaunched = true; var t = new Timer(1000 * 1); // 1 sec while (_isLaunched && Products.IsStarted) { try { if (t.IsReady && Conditions.InGameAndConnectedAndProductStartedNotInPause) { t.Reset(); if (ObjectManager.Me.Scale != 1) { Products.ProductStop(); // or close: Environment.Exit(0); Logging.Write("Size change."); } } } catch (Exception e) { Logging.WriteError("[Size change]: " + e); } Thread.Sleep(150); } } public void Dispose() { _isLaunched = false; } public void Settings() { } }  
  25. Haha
    TheSmokie reacted to Droidz in Why is not there a Wrobot BfA bot?   
    Hello,
    I'll release BfA bot after Shadowlands release
×
×
  • Create New...