Jump to content

saleh

WRobot user
  • Posts

    169
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    saleh reacted to Marsbar in Buff Players Plug-In   
    I sort of made this as a plugin for someone but never fully tested it. I'll drop it here, I'll happily make changes if you find issues and then I can post it to the downloads section.
    You can add your buff spells in the settings, each on their own line.
    Buffer.dll
  2. Like
    saleh reacted to maukor in Force sell items with Command   
    If only you could make an option to send logs so no one can download it except you, cause i dont want to show ppl where i'm farming gold and leveling
    Will try your advices. ty
  3. Like
    saleh reacted to TheSmokie in Private Server help   
    Hello,
    botting is breaking rules on every server and will get you banned. So use at you own risk.
  4. Haha
    saleh reacted to sith500 in Full Refund   
    Man, no one will give you back the money. Explain everything to your mother and you will not be punished. 
  5. Like
    saleh reacted to Droidz in Turnin Not working sometimes?   
    Disable wow addons
  6. Like
    saleh reacted to ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in WOW Ver. 8.1.5.29896 Not work with WROBOT   
    Hello,
    Droidz has confirmed that BFA support will be released, but there's no eta ETA yet.
    Thx.
  7. Like
    saleh reacted to da8ball in PROSPECTING   
    http://www.wowhead.com/spell=51005
  8. Like
    saleh reacted to da8ball in PROSPECTING   
    This is for Jewelcrafting profession only. http://www.wowhead.com/spell=31252/prospecting
  9. Like
    saleh reacted to neah in User friendly improvements demand   
    I really find Your post disrespectful towards the creator of this program and it seems You have coding knowledge also.
     
    It might be so, that You are annoyed with that many clicks, but for me I don't care.
    I bought this program knowing exactly what I can and can't do.

    It's like You are choosing to buy a car, You know exactly what You are buying.
    So after I bought it I'm unhappy because of XYZ.
    I don't go running to the car manufacturer and telling him what he has to change because I'm unhappy...that's not how it works!

    Oh well, just my opinion.
  10. Like
    saleh reacted to Droidz in Skull marked ?   
    Hello,
     
    You have lua functions GetRaidTargetIndex and SetRaidTarget (or SetRaidTargetIcon)
     
    Samples:
     
    Launch the spell id 109259 on the first boss with skull icon:

    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "boss" .. i if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end Launch the spell id 109259 on the first raid target with skull icon (this code check the target of raid members):
    local SpellName = GetSpellInfo(109259) for i = 1, 40, 1 do local UnitIdString = "raid" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end Launch the spell id 109259 on the first party target with skull icon (this code check the target of party members):
    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then CastSpellByName(SpellName, UnitIdString) return end end end ps: Replace 109259 by your spell id and add conditions to launch the spell, to launch the spell if mob health is lower than 50%:

    local SpellName = GetSpellInfo(109259) for i = 1, 4, 1 do local UnitIdString = "party" .. i .. "target" if UnitExists(UnitIdString) then if GetRaidTargetIndex(UnitIdString) == 8 then if UnitHealth(UnitIdString)/UnitHealthMax(UnitIdString)*100 < 50 then CastSpellByName(SpellName, UnitIdString) return end end end end ps2: Code no tested, do not hesitate to tell me if this don't works
  11. Like
    saleh reacted to Droidz in Useful links   
    Wow API:
    http://wowpedia.org/API (seem best, updated for WoD) http://wowprogramming.com/docs/api_categories http://www.wowwiki.com/World_of_Warcraft_API
  12. Like
    saleh reacted to knights in Hovering stop and start buttons for wrobot window   
    I don't think the feature is there.. but the main point of my reply will be never bot on a account that you cannot lose.... Even you are there monitoring it.............
  13. Like
    saleh reacted to deesnuts in How to cancel subscription   
    Cancel it by stop using it. 
  14. Like
    saleh reacted to Droidz in How to cancel subscription   
    Hello, no,  its not an automatic payment.
  15. Like
    saleh reacted to will127 in How to cancel subscription   
    Glad it's not auto renew I got the 10 year one. I will probably for get about that in 10 years 
  16. Like
    saleh reacted to Droidz in Update Status - Patch 7.0.3 Build 22594   
    Hello,
    I start to work on this patch
  17. Like
    saleh reacted to Droidz in Sugestion: Follow Current Target   
    Hello, I'll add this.
    To wait you can select target in game, in WRobot go to tab "Tools" > Click on button "Development Tools" > Click on button "Target Informations", name appear in textbox between <Name> and </Name> (copy/past the name in party option).
  18. Like
    saleh got a reaction from Droidz in reloger Crash   
    Solved
    Thanks
     
  19. Like
    saleh reacted to Droidz in Update Status - Patch 7.0.3 Build 22498   
    WRobot support now Wow 7.0.3 build 22498, you need to update WRobot.
  20. Like
    saleh got a reaction from Droidz in Wrobot Don`t detect when quest is finish    
    i restart every thing
    and rebuild the quest file
    it is work now
    i believe the problem was in NPC 
    not in item because the toon collect all items successfully 
     
    Thanks
  21. Like
    saleh reacted to Droidz in party chat command to Guild bank   
    Hello, use this c# code:
    if (wManager.Wow.Helpers.Party.IsInGroup()) { var o = wManager.Wow.ObjectManager.ObjectManager.GetNearestWoWGameObject(wManager.Wow.ObjectManager.ObjectManager.GetWoWGameObjectByName("Guild Chest")); if (o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress, true); } } (replace "Guild Chest" by game object name how is appear in game (you can get object name when you put mouse over)
  22. Like
    saleh reacted to Droidz in Download WRobot beta for Wow Legion 7.0.3 PTR server   
    Hello,
     
    You can download Wrobot beta for Legion server ptr 7.0.3 here: http://download.wrobot.eu/wrobot/WRobot.zip , extract and launch file "Updater.exe", select product "WRobot BETA" and click on "Install or Update".
     
    ps: This version works only on PTR server (not on wow beta server).
    ps: I'll try to keep this version updated, but wow ptr server is frequently updated, I cannot update this wrobot version for all wow ptr build.
    ps: For the moment, WRobot use WoD meshes files (to generate path), you can get navigation problem if map have changed.
  23. Like
    saleh reacted to BetterSister in What is your purpose to bot?   
    i'm botting and programming it just because i like the challange i face everyday. it's like driving fast car. My drug :D
  24. Like
    saleh reacted to KevinVapes in What is your purpose to bot?   
    That is very interesting. So you basically have no actual "purpose" for WRobot, except to "make it better", or do you still make any use out of it at World of Warcraft?
  25. Like
    saleh reacted to BetterSister in Warlock don't summon this pet   
    For some reason this area in forum doesn't tell me if there is something new... 
    I think Dreamful answered it already tho 
×
×
  • Create New...