Jump to content

Arcangelo

WRobot user
  • Posts

    472
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Arcangelo got a reaction from Bronson in Error with "Catch Zeppelin/Ship"   
    "var fromShipWaitPosition = new Vector3(8162,587, 1005,365, -0,03771297); // Position where Zeppelin/Ship waits players (from)"
    "var toShipWaitPosition = new Vector3(-8644.726, 1341.569, 0,0184304); // Position where Zeppelin/Ship waits players (to)"
    see the diffence ? one is with . and the other is with , change both to . like
    (8162.587, 1005.365, -0.03771297);
    (-8644.726, 1341.569, 0.0184304);
    and you are good to go
  2. Like
    Arcangelo got a reaction from borntosowdeath in Do I need .lua script to do such a thing?   
    return ObjectManager.Me.Position.DistanceTo2D(new Vector3(-534.2473, 325.9972, 115.4728)) < 5;
    something like that
  3. Like
    Arcangelo reacted to Runaro in ("bug") thunder bluff navigation   
    I'll just post it here, so other users can use it too. ( spoofed the sleeps, removed coordinates and the turn timer )
    <?xml version="1.0" encoding="utf-16"?> <EasyQuestProfile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <QuestsSorted> <QuestsSorted Action="Pulse" NameClass="GoTo" /> <QuestsSorted Action="If" NameClass="ObjectManager.Me.Position.DistanceTo2D( new Vector3(1234, 1234, 1234, &quot;None&quot;) ) &lt; 1&#xD;&#xA;" /> <QuestsSorted Action="None" NameClass="We are at the boarding point, to the Thunder Bluff Elevator!" /> <QuestsSorted Action="RunCode" NameClass="// Wait for the Elevator &gt;&#xD;&#xA;&#xD;&#xA;if (ObjectManager.GetWoWGameObjectByyId(4171).FirstOrDefault().GetDistance &lt;= 6) {&#xD;&#xA; Logging.Write(&quot;[Quester] Elevator is already here - waiting for the next one, to make sure boarding will not fail&quot;);&#xD;&#xA;}&#xD;&#xA;while (ObjectManager.GetWoWGameObjectByyId(4171).FirstOrDefault().GetDistance &lt;= 6) {Thread.Sleep(500);};&#xD;&#xA;&#xD;&#xA;Logging.Write(&quot;[Quester] Wait for Elevator&quot;);&#xD;&#xA;while (ObjectManager.GetWoWGameObjectByyId(4171).FirstOrDefault().GetDistance &gt; 6) {Thread.Sleep(500);};" /> <QuestsSorted Action="RunCode" NameClass="// Enter the Elevator &gt; &#xD;&#xA;&#xD;&#xA;Logging.Write(&quot;[Quester] Will enter the Elevator in 1 second&quot;);&#xD;&#xA;Thread.Sleep(1000);{ wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 900); }" /> <QuestsSorted Action="None" NameClass="We are on the Thunder Bluff Elevator!" /> <QuestsSorted Action="RunLuaCode" NameClass="TurnRightStart();" /> <QuestsSorted Action="Wait" NameClass="YourTurnTimerHere" /> <QuestsSorted Action="RunLuaCode" NameClass="TurnRightStop();" /> <QuestsSorted Action="RunCode" NameClass="// Leave the Elevator &gt; &#xD;&#xA;&#xD;&#xA;Logging.Write(&quot;[Quester] Will leave the Elevator in 16 seconds&quot;);&#xD;&#xA;Thread.Sleep(16000);{ wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 1200); }" /> <QuestsSorted Action="EndIf" NameClass="" /> </QuestsSorted> <NpcQuest /> <Npc /> <Blackspots /> <BlackGuids /> <EasyQuests> <EasyQuest> <Name>GoTo</Name> <QuestId /> <QuestType>FollowPath</QuestType> <QuestClass xsi:type="FollowPathEasyQuestClass"> <Path> <Vector3 X="1234" Y="1234" Z="1234" /> </Path> <IsCompleteWhenAtLastPath>false</IsCompleteWhenAtLastPath> <ForceToStartFirstPosition>false</ForceToStartFirstPosition> <IsHotSpots>true</IsHotSpots> <IsLoop>false</IsLoop> </QuestClass> <ObjectiveCount1>0</ObjectiveCount1> <ObjectiveCount2>0</ObjectiveCount2> <ObjectiveCount3>0</ObjectiveCount3> <ObjectiveCount4>0</ObjectiveCount4> <ObjectiveCount5>0</ObjectiveCount5> <ObjectiveCount6>0</ObjectiveCount6> <ObjectiveCount7>0</ObjectiveCount7> <ObjectiveCount8>0</ObjectiveCount8> <ObjectiveCount9>0</ObjectiveCount9> <ObjectiveCount10>0</ObjectiveCount10> <AutoDetectObjectiveCount1>false</AutoDetectObjectiveCount1> <AutoDetectObjectiveCount2>false</AutoDetectObjectiveCount2> <AutoDetectObjectiveCount3>false</AutoDetectObjectiveCount3> <AutoDetectObjectiveCount4>false</AutoDetectObjectiveCount4> <AutoDetectObjectiveCount5>false</AutoDetectObjectiveCount5> <AutoDetectObjectiveCount6>false</AutoDetectObjectiveCount6> <AutoDetectObjectiveCount7>false</AutoDetectObjectiveCount7> <AutoDetectObjectiveCount8>false</AutoDetectObjectiveCount8> <AutoDetectObjectiveCount9>false</AutoDetectObjectiveCount9> <AutoDetectObjectiveCount10>false</AutoDetectObjectiveCount10> <CanCondition /> <IsCompleteCondition>return (ObjectManager.Me.Position.DistanceTo2D(new Vector3(1234, 1234, 1234)) &lt; 1);</IsCompleteCondition> <RepeatableQuest>false</RepeatableQuest> <NotRequiredInQuestLog>true</NotRequiredInQuestLog> <PickUpQuestOnItem>false</PickUpQuestOnItem> <PickUpQuestOnItemID>0</PickUpQuestOnItemID> <Comment /> <GossipOptionRewardItem>1</GossipOptionRewardItem> <RequiredQuest>0</RequiredQuest> <MaxLevel>100</MaxLevel> <MinLevel>0</MinLevel> <WoWClass>None</WoWClass> </EasyQuest> </EasyQuests> </EasyQuestProfile>  
  4. Like
    Arcangelo got a reaction from Runaro in ("bug") thunder bluff navigation   
    okay fair enough - i would be very happy if you could share that code with me so i could use it in the questing profiles - credit would ofc be made :-)
    As that would make the profiles so much more user frindly.
    I would ofc credit you with a free profile when it is done , as thanks for the time saved :-)
  5. Like
    Arcangelo reacted to Macpod in Closed - Questing profile tester (Alliance)   
    pm'd
  6. Like
    Arcangelo reacted to Runaro in ("bug") thunder bluff navigation   
    Once created, you can use it simply for all your profiles.
    But ye i agree, a implemented function directly in WRobot would be helpful.
  7. Like
    Arcangelo reacted to Droidz in (Bug) Die under water   
    Hello, if you don't use ctm, try this plugin 
     
  8. Like
    Arcangelo got a reaction from Droidz in Casting a spell then target new mob   
    Will do next time I see I happen :)
  9. Like
    Arcangelo got a reaction from Droidz in Vanilla leveling profiles ?   
    Started the project today (for horde this time though)
    Finished:
    1-5 Troll/orc
     
    In progress:
    15-20 Troll/orc
     
    This will follow the VanillaGuide as close as possible (so far 100 %)

    Takes pretty long as i have to level with the profile while i create it
  10. Like
    Arcangelo got a reaction from Hapiguy in WRobot or HB?   
    People in here mostly makes their own stuff, that makes the bot more safe :)
     
    But if the bots get detected, then i wouldent be a diffent if you use hb or wro
     
    But if you just want a 1 click bot, then wrobot is not the bot for you, but if you want to create something and fit it to your needs, and be the only one running it, then wrobot is the way to go.
  11. Like
    Arcangelo reacted to inselmann in Healing out of combat   
    I had a similar problem, so i wrote a small plugin.
    You can use it, casts regrowth out of combat when under <85% life. Edit the regrowth.cs for your need.
    Copy in plugin folder and activate it.
    Have fun
    Regrowth.cs
  12. Like
    Arcangelo reacted to Droidz in Banwave... Update   
    Hello,
    I have found detection method and protect WRobot for bypass this. WRobot is currently  'safe' to use.
    Please update WRobot (use WRobot version => 1.7.0) (if you have used or use yet WRobot version 1.6.*, your Wow account will be probably ban in the next banwave).
  13. Like
    Arcangelo got a reaction from Hapiguy in Questing profile missing 1-110   
    Horde is 1-80 ally 1-70 havent finished the last part of 70-80 yet on the ally side.
     
    But as i stranding in the middel of moving to My New flat, The work with the profile will be at the minimum till im done.
    And yeah as we dont work with droidz it is really really hard to make perfect profiles as the bots pathfinding is sooo yea, lets just say not perfect.
     
    But if you just want everything without douing anything - then this is the wrong bot for you :)
  14. Like
    Arcangelo reacted to Droidz in Banwave...   
    Hello,
    Due to recent banwave, I recommand to not use WRobot on your main account (close all wrobot windows and wow before switch on your main account) and you need to know than currently ban risks is high.
    Ofcourse I have works to avoid new banwave, but keep careful.
    If you want use WRobot launch it and accept update.

    Kind regards, Droidz.
     
    UPDATE: http://wrobot.eu/forums/topic/4516-banwave-update/
  15. Like
    Arcangelo got a reaction from Svennebanan in Problem with farm herbalism correctly   
    Think at it like a map:
     
    Untill you have explored (in this case downloaded) the diffent zone of the map, you can't see whats the map are holden.
     
    So what it means is " the bot need to download the map" to be able to "see / use " the map :)
    - This is simply made, so you only need to download a very small file to get the bot going, instead of downloading like 400 mb of maps
    hope this explained it :)
  16. Like
    Arcangelo got a reaction from Droidz in Legacy servers   
    http://blue.mmo-champion.com/topic/778451-classic-server-update/
     
    Update -
  17. Like
    Arcangelo reacted to Droidz in A little clean up in the bot + features   
    Hello,
    I have keep note of your suggestions, I'll look it when I'll work again on tbc version.
    but since last update, WRobot save quest turnin (quester works)
  18. Like
    Arcangelo reacted to Droidz in Use emotes in quests   
    Hello,
    Use quest type "InteractWithNpc", add position and stolem rams id, in "Macro when interact" put:
    RunMacroText("/whistle")  
  19. Like
    Arcangelo got a reaction from iMod in A little clean up in the bot + features   
    Hello
     
    I have some ideas that would be really use full.
     
    1. Add a propper trainer function:
    Like add choose spell to train by id or spellname, as you simply dosent have enough gold to to train all, and that seems to be the only way to even get the bot to train.
     
    2. Make the fight master function (taxi) working in TBC instead of manual have to set every flightpath
     
    3. Make a save option from Hearthstone
    - so the knows where the bot have hs, and add a possibility to force a heartstone When something like full bag - or to get closer to the New area.
     
    4. Make a better blacklisting, so the bot simply ignore those area.
     
    5. Make a save quest done on turn in.
    I know tbc dont have quest complete feature, but one that simply make the quest done in the bot, with the toon name, so it knows to skip the step the next time you run the profile.
     
    Would really help to make some of this working, as it sucks, to create questing profiles in the bot @ TBC at the moment.
    And the reason i bought this bot in the first place Was to create a questing profile to TBC
  20. Like
    Arcangelo reacted to Vanguard in A note to the webs / moderators   
    I did a re install again of my windows system and I did notice the first time that you have a bad link in your app and website for the Directx installer. 
    Here is the complete package needed for Wrobot to work properly.
    https://www.microsoft.com/en-us/download/details.aspx?id=35&fa43d42b-25b5-4a42-fe9b-1634f450f5ee=True
    Hope it is helpful !!!
     
    V
  21. Like
    Arcangelo reacted to eeny in Fight Class Tutorial Video   
    Ok, this is a MASSIVE subject that cant be done justice in an 8 minute youtube video... but this should get some people started.
     
  22. Like
    Arcangelo got a reaction from eeny in Quest Tutorial Video: Basic Concepts Gatherer   
    1. not hs - that have to be forced with a speficic code, FP yes if you have set the bot up "to use fp"
     
    2. The quick answer is no, there are a guide somewhere explaining some stuff here and there, but not like 1 thats just have all the answers
  23. Like
    Arcangelo got a reaction from Skemez in Getting started with WRobot video   
    "The wall of text"
    Hope you mean the file, you don't have to open it to edit it :) just put it in the bot folder like this:
     
    Profiles go into the profile folder like:
    WRobot\Profiles
    Inside there are several options like
    WRobot\Profiles\Quester (for the quest bot)
    WRobot\Profiles\Grinder (for the grinder)
    and so on
     
    Fightclasses go into the fightclass folder like:
    WRobot\ <- open Fight Class Editor to create your fightclass (unless you are a programmer, but then i guess you don't need this guide ;) )
    WRobot\FightClass  (Put your fightclasses in this folder)
     
    "But Arcangelo, i want to edit the file"
    This is possible as well, unless the files are secured
    To edit a quest profile
    Main -> quester -> product settings -> Easy profile creator -> (new window) open -> choose the file -> tools -> (open these 3) Quest editor, quest tool editor and npc quest giver editor -> change the stuff you want :D
    To edit a Fightclass (There are 2 ways to do this)
    1. Open the Fight Class Editor from the Wrobot folder
    2. open your ingame toon (as you will get all the spells this toon haves) -> open the bot -> tools -> Create fight class -> (Make a new) or load fightclass -> Pick the fightclass you want to edit
    NOTE ! Dont work if the file is coded in c# and lua instead of the fightclass editor
     
    Hope this give you an idea of how it works :) - I could be more specific about the other stuff like grinder and gathere and so on, but i guess you should be able to read "how to do that aswell" from this guide
     
  24. Like
    Arcangelo got a reaction from Ess Bee in Getting started with WRobot video   
    "The wall of text"
    Hope you mean the file, you don't have to open it to edit it :) just put it in the bot folder like this:
     
    Profiles go into the profile folder like:
    WRobot\Profiles
    Inside there are several options like
    WRobot\Profiles\Quester (for the quest bot)
    WRobot\Profiles\Grinder (for the grinder)
    and so on
     
    Fightclasses go into the fightclass folder like:
    WRobot\ <- open Fight Class Editor to create your fightclass (unless you are a programmer, but then i guess you don't need this guide ;) )
    WRobot\FightClass  (Put your fightclasses in this folder)
     
    "But Arcangelo, i want to edit the file"
    This is possible as well, unless the files are secured
    To edit a quest profile
    Main -> quester -> product settings -> Easy profile creator -> (new window) open -> choose the file -> tools -> (open these 3) Quest editor, quest tool editor and npc quest giver editor -> change the stuff you want :D
    To edit a Fightclass (There are 2 ways to do this)
    1. Open the Fight Class Editor from the Wrobot folder
    2. open your ingame toon (as you will get all the spells this toon haves) -> open the bot -> tools -> Create fight class -> (Make a new) or load fightclass -> Pick the fightclass you want to edit
    NOTE ! Dont work if the file is coded in c# and lua instead of the fightclass editor
     
    Hope this give you an idea of how it works :) - I could be more specific about the other stuff like grinder and gathere and so on, but i guess you should be able to read "how to do that aswell" from this guide
     
  25. Like
    Arcangelo got a reaction from Dreamful in Looking for serious tester for Ally profile   
    Hello guys and girls.
     
    I'm in the making of a Alliance Leveling profile, and I am looking for some testers to help me make it run 100% AFK (A person with some coding knowledge would be nice, to help fix the bugs)
     
    What I have created so far (for retail leveling):
    Gnome - Full starting area (+ Continue in the drawf zone and later in westfall)
    Night elf - Full star area (then standing and wait for the boat to continue in stormwind)
    Drawf - full start area (then fligh to westfall and continue)
    Human - full start area + westfall + Redridge Mountains + Duskwood and Northern stranglethorn
     
    So the bot is working pretty flawless from 1-32 with these races - and will continue to make the profiles to 1-70 then add the rest if i'm still in the game by the time is done.
     
    Please only serious PM's
    *Have time to test or even better create and test. 
×
×
  • Create New...