Jump to content

Droidz

Administrators
  • Posts

    12519
  • Joined

  • Last visited

Everything posted by Droidz

  1. var playersAttackable = new List<wManager.Wow.ObjectManager.WoWPlayer>(); foreach (var player in wManager.Wow.ObjectManager.ObjectManager.GetObjectWoWPlayer()) { bool canAttack = false; var f = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid; wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = player.Guid; if (wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid == player.Guid) canAttack = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'focus')"); wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = f; if (canAttack) playersAttackable.Add(player); Logging.WriteDebug("Can attack = " + canAttack + " > " + player); } You can change focus several time
  2. Hello, WRobot works only on private server
  3. WoWPlayer player1 = ...; bool canAttack = false; var f = wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid; wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = player1.Guid; if (wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid == player1.Guid) canAttack = Lua.LuaDoString<bool>("return UnitCanAttack('player', 'focus')"); wManager.Wow.ObjectManager.ObjectManager.Me.FocusGuid = f; Logging.WriteDebug("Can attack = " + canAttack + " > " + player1); try code like (no tested)
  4. Hi, use lua Lua.LuaDoString<bool>("return UnitCanAttack('player', 'target')")
  5. Hello, I just checked it is 1 month and not a number of days (if you buy today (February 26) it expires on March 26 (same result for the 28 or 31 days mounths). But I don't found 30 days mention, it is written by mounth.
  6. Hello, try again problem should be resolved.
  7. issecure is https://wow.gamepedia.com/API_issecure , that return true lua can call protected functions. They use it to detect bot/cheat. I looked yesterday so far I have nothing. Be careful but I find it strange that there is a warning, usually they ban directly.
  8. Hello, They can manage to make the links between your old and new accounts, you do not use the same browser? never same ip (you told that you use VPN but you use also to create account?)? Also, try download again the Wow client for a new account. How many hours per day you bot? You have try to use different fightclasses/plugins/profiles? They do not necessarily ban when they catch you, some wait and ban several users at the same time.
  9. Hello, you can't. Maybe if you wait that character are in game, you can logout him and access to character screen
  10. Hello, try to download another wow client (to be sure that your wow client is not modified). You can also check if you have error in your log file (folder Logs)
  11. Hi, you are sure that this happen only when WRobot is running? WRobot don't use issecure.
  12. Hello, If you use fightclass editor (xml fightclass) use spell setting "Not spell is lua script" and in spell name put code like: CastSpellByName("Hoily strike"); https://wowwiki-archive.fandom.com/wiki/API_CastSpellByName (you need to check distance, maybe timer (if you can't check if spell is usable), ... manually in conditions)
  13. Hey, look https://wrobot.eu/files/file/1738-example-random-areas-on-a-timer-for-grinding/
  14. Hey, https://wrobot.eu/byme/doc/html/AllMembers.T-wManager.wManagerSetting.htm look MaxZDistanceAttack MaxZDistanceFarm MaxZDistanceIsAttacked
  15. Hello, If you use good configuration for items to sell normally you must keep the items that you want to send (you can use a simpler configuration for items to send and you have the money to send the mail).
  16. Hello, can you test with new update (5.4.8 only), if it is ok I'll apply patch to all versions
  17. Hello, it is probably fightclass problem try https://wrobot.eu/files/file/1351-retribution-paladin-1-90/
  18. Hello, disable your wow addons and reinstall WRobot in new folder without plugin. you call the pathfinder server 30000 in 3 hours something is wrong. Check also if you profile is for your game version
  19. Hello, close vendor is in your NPC DB (tab tools) on in your profile?
  20. Hello, can you share wow client .exe file
  21. hi, try to use {RDFSettings.CurrentSetting.Tank.ToString().ToLower()} (by default boolean is converted to "True" or "False" if my memory is good)
  22. Droidz

    Avoid ground effects

    Hi, maybe with wow lua events
  23. WRobot API Documentation Website: https://wrobot.eu/byme/doc/ Offline documentation: https://wrobot.eu/byme/doc/WRobot.chm (from Wotlk version, Updated the 01 February 2021) Unofficial documentation is available here , it is still very useful because it contains examples and descriptions that are not available in the official.
  24. Hi. Don't use enum "LuaEventsId" it is obsolete, use string like that: EventsLua.AttachEventLua("LFG_PROPOSAL_SHOW", m => Lua.LuaDoString("AcceptProposal();")); You can dump all events and check event called when you get this popup, run this code one time when product is started: wManager.Wow.Helpers.EventsLuaWithArgs.OnEventsLuaStringWithArgs += (eventid, args) => { Logging.WriteDebug("[EVENT] " + eventid); };
  25. Hello, Disable all Wow addons, all WRobot plugins and share your log file please ( https://wrobot.eu/forums/topic/1779-how-to-post-your-log-file-with-your-topic/ ).
×
×
  • Create New...