Jump to content

lsabakal

Members
  • Posts

    70
  • Joined

  • Last visited

Everything posted by lsabakal

  1. lsabakal

    wotlk Cath zepp

    // Sample of how to use Zeppelin/Ship // In this sample, WRobot catch Zeppelin from Kalimdor (Ogrimmard) to Northrend (Borean Tundra (Warsong Hold)) /* Quest settings: * Can condition: "return Usefuls.ContinentId == (int) ContinentId.Kalimdor;" * Is complete condition: "return Usefuls.ContinentId == (int) ContinentId.Northrend && !ObjectManager.Me.InTransport;" * Not required in quest log: "True" * Quest type: "OverridePulseCSharpCode" */ // You can get zeppelin/ship/player positions and entry ID in tab "Tools" > "Development Tools" > "Dump all informations" (or "Memory information"). // Settings: var zeppelinEntryId = 186238; // Zeppelin/Ship EntryId // From var fromZeppelinWaitPosition = new Vector3(1185,022, -4144,208, 70,62553); // Position where Zeppelin/Ship waits players (from) var fromPlayerWaitPosition = new Vector3(1180.346, -4147.858, 51.92951); // Position where the player waits Zeppelin/Ship (from) var fromPlayerInZeppelinPosition = new Vector3(1192.21, -4142.54, 52.74133); // Position where the player waits in the Zeppelin/Ship (from) // To var toZeppelinWaitPosition = new Vector3(2837.908, 6187.443, 140.1648); // Position where Zeppelin/Ship waits players (to) var toPlayerLeavePosition = new Vector3(2836.5, 6184.367, 121.9332); // Position to go out the Zeppelin/Ship (to) // Change WRobot settings: wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; // Code: if (!Conditions.InGameAndConnectedAndProductStartedNotInPause) return true; if (Usefuls.ContinentId == (int)ContinentId.Kalimdor) { if (!ObjectManager.Me.InTransport) { if (GoToTask.ToPosition(fromPlayerWaitPosition)) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(fromZeppelinWaitPosition) < 1) { GoToTask.ToPosition(fromPlayerInZeppelinPosition); } } } } else if (Usefuls.ContinentId == (int)ContinentId.Northrend) { if (ObjectManager.Me.InTransport) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(toZeppelinWaitPosition) < 1) { GoToTask.ToPosition(toPlayerLeavePosition); } } } return true;
  2. lsabakal

    wotlk Cath zepp

    RunState(State state): > State Quester - System.NullReferenceException: Ссылка на объект не указывает на экземпляр объекта. в  .Run() в robotManager.FiniteStateMachine.Engine.(State ) this error in Orgrimmar
  3. lsabakal

    wotlk Cath zepp

    [Quester] New step (280): ZeppToNorthrend>Pulse [Path-Finding] FindPath from 2023,456 ; 283,0157 ; 52,73145 ; "None" to 2063,781 ; 360,1398 ; 82,47793 ; "None" (Azeroth) [Path-Finding] Path Count: 27 (158,8257y, 408ms) And its waiting for eternity, dont move at all. All addons is dissabled. With id's and coordinates everythins is ok this zepp is from Undercity should try from Orgrimmar
  4. Would be nice, if Droidz update a little bit wotlk fight class with weapon slots 16/17 in the section spell cast on, it would be great help for rogues/shamans
  5. First you need to use its /fstack command, to gather clicking information in the game. Then, in your fight class add new skill, RunMacroText("") and choose wich button you will prepeare for it. Example RunMacroText("/click ActionButton1") In the skill, turn on "Not spell, is lua script "true", Wait during casting "false", Can move during cast "yes", other fight options is "false", also you can add timer to get the how ofter the bot will click on it, and two conditions "me level" to get the level range where the bot will click on the macro. When you pass the first steps, you move in game, and create a macro then put it into panel, and start gather information you need with /fatack. Move your cursor on the talent you want to learn, to get info. The macro example /click PlayerTalentFramePanel2Talent3 /click PlayerTalentFramePanel2Talent6 /click PlayerTalentFramePanel2Talent4 /click PlayerTalentFramePanel2Talent7 /click PlayerTalentFramePanel2Talent12 /click PlayerTalentFrameLearnButton "this parameter is a button learn the talent" /click StaticPopup1Button1 "this parameter is a button that ask you, are you sure to learn it, 1 its yes, 2 no" Hope this help ppl fix the problem with talents asign in wotlk.
  6. lsabakal

    wotlk Cath zepp

    // Sample of how to use Zeppelin/Ship // In this sample, WRobot catch Zeppelin from Kalimdor (Ogrimmard) to Northrend (Borean Tundra (Warsong Hold)) /* Quest settings: * Can condition: "return Usefuls.ContinentId == (int) ContinentId.Kalimdor;" * Is complete condition: "return Usefuls.ContinentId == (int) ContinentId.Northrend && !ObjectManager.Me.InTransport;" * Not required in quest log: "True" * Quest type: "OverridePulseCSharpCode" */ // You can get zeppelin/ship/player positions and entry ID in tab "Tools" > "Development Tools" > "Dump all informations" (or "Memory information"). // Settings: var zeppelinEntryId = 195459; // Zeppelin/Ship EntryId // From var fromZeppelinWaitPosition = new Vector3(2068.04f, 354.245f, 85.71f); // Position where Zeppelin/Ship waits players (from) var fromPlayerWaitPosition = new Vector3(2061.373f, 363.7445f, 82.51044f); // Position where the player waits Zeppelin/Ship (from) var fromPlayerInZeppelinPosition = new Vector3(2058.634f, 371.8631f, 82.52946f); // Position where the player waits in the Zeppelin/Ship (from) // To var toZeppelinWaitPosition = new Vector3(2843.724, 6190.662, 122.3225); // Position where Zeppelin/Ship waits players (to) (this one is old from orgrimmar, but its doesnt matter cause the bot can't step in zepp var toPlayerLeavePosition = new Vector3(2832.571, 6181.265, 121.9834); // Position to go out the Zeppelin/Ship (to) // Change WRobot settings: wManager.wManagerSetting.CurrentSetting.CloseIfPlayerTeleported = false; // Code: if (!Conditions.InGameAndConnectedAndProductStartedNotInPause) return true; if (Usefuls.ContinentId == (int)ContinentId.Azeroth) { if (!ObjectManager.Me.InTransport) { if (GoToTask.ToPosition(fromPlayerWaitPosition)) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(fromZeppelinWaitPosition) < 1) { GoToTask.ToPosition(fromPlayerInZeppelinPosition); } } } } else if (Usefuls.ContinentId == (int)ContinentId.Northrend) { if (ObjectManager.Me.InTransport) { var zeppelin = ObjectManager.GetWoWGameObjectByEntry(zeppelinEntryId).OrderBy(o => o.GetDistance).FirstOrDefault(); if (zeppelin != null && zeppelin.Position.DistanceTo(toZeppelinWaitPosition) < 1) { GoToTask.ToPosition(toPlayerLeavePosition); } } } return true;
  7. Hello there, i looking some help or some examples how to asign talents in wotlk expansion.
  8. lsabakal

    wotlk Cath zepp

    Same for zepp near Uc
  9. lsabakal

    wotlk Cath zepp

    At wotlk expansion cath zepp doesnt work, its will run down under the zepp 22 авг 2023 10H56.log.html
  10. lsabakal

    Fightback dont work

    21 авг 2023 10H20.log.html 4 Rogue BloodElf 1-70 Sirus.su.xml
  11. wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = true; wManager.Wow.Helpers.Conditions.ForceIgnoreIsAttacked = false; This code isnt working, the boot still do fightsback First shot the bot follow the way, second do fightback, third the way is broken bcoz bot do the fightback.
  12. I have also problem with poisons, atm have no idea how to resolve it. just keep trying
  13. Doenst work, its clicking the poison, but dont know where to click, no options in the bot with weapon slot 16/17
  14. Скорее не руки, а знания как вся эта шарманка работает, разобрался в большинстве, но никак не могу разобраться в том, что бы бот пил рисованные банки по таймеру, а не по кд
  15. Hey, i have a question. how can wrobot gather gas clouds? Am trying to set it up, but you cant add the gas cloud as a node.
  16. with quest id everything is ok. bot do it quest, when you handly move your char trough translocation orb
  17. mb this code doesnt work bcoz the bloodelf location is an instance, and the npc where it need to be turned in, stay out of the instance...
  18. similar code work as well, with different quest.
  19. can you write code to force the bot follow to this object and click on it?
  20. everythins should work, but its not, no idea why.
×
×
  • Create New...