Jump to content

zzzar

WRobot user
  • Posts

    68
  • Joined

  • Last visited

Everything posted by zzzar

  1. Is there a way to get trade skill text color? Need to determine if skill give skill ups, because GetTradeSkillInfo dont give numSkillUps (at least in wotlk).
  2. Hello, is there a way in relogger to detect if wow account banned\suspended? i wanna do if acc banned => stop profile=> change settings => start again
  3. Hello, i create dll with navigation methods, want use them in profiles. I assume i must put dll in wrobot\bin and can use it in profiles like, for example Nav.To.Kalimdor() ? If so, for some reason it not work, even add using Nav; to profile didn't help
  4. Воспользовался услугами, всё прошло шикарно, всё показал, рассказал что куда тыкнуть чтоб оплатилось
  5. Hello, i make own lightweight lame logger/relogger and stuck at press "Start" button of bot. at first SetForegroundWindow(p.MainWindowHandle); // focus bot window then i try various ways 1) SendKeys.SendWait("%(c)"); 2) keybd_event(0x12, 0, 0x02, UIntPtr.Zero); // press alt Thread.Sleep(1000); keybd_event(0x43, 0, 0x02, UIntPtr.Zero); // press c Thread.Sleep(400); keybd_event(0x12, 0, 0x00, UIntPtr.Zero); // unpress alt keybd_event(0x43, 0, 0x00, UIntPtr.Zero); // unpress c 3) even try to tab between bot window elements but none work, like keys not send to window, but tested on notepad and it works . Is there way to press start button?
  6. As title says, can one tell me pls how to get system message text, like this one?
  7. Типа перелететь на дирижабле\корабле с одного континента на другой? Вот пример такого квеста
  8. https://addonstudio.fandom.com/wiki/API_SetRaidDifficulty
  9. Oh, my bad , GetLFGRoles() return your role, for checking other's roles you need UnitGroupRolesAssigned(Unit); . Taunt code needs to be put in fightclass, or plugin if you wish.
  10. Hello, you can check lfg roles by lua GetLFGRoles(). I assume you want to taunt mobs as tank from party members, you can use something like var targettotaunt = wManager.Wow.ObjectManager.ObjectManager.GetWoWUnitAttackables().Where(q=>q.InCombat && q.TargetObject != ObjectManager.Me).FirstOrDefault(); To check wow class you can use wManager.Wow.ObjectManager.WoWUnit.WowClass
  11. Hello, is it possible to cancel current bot state(i need to cancel ToTown), on lua "MAIL_FAILED" event? When bot send items to mule and mule have his mail full, too many attemps auto mutes your account with message "Your mail and chat prievelegies has been suspended due Game Master review", or something like that . For a while this was not a problem, but recently some servers start ban because of this. Nevermind, fixed it, should try more before creating tread. Delete pls.
  12. Open your profile through profile creator, select "Npc" tab, there you can add and remove profile's vendors/mails etc.
  13. Set vendors/mail in another(closer) town, not in dalaran.
  14. Same here, also if bot running for big amount time, these lags become more often and eventually hang bot. Seems like that lags only happened with .xml fightclass(or autoconverted to c# with fightclass editor feature). If you wanna get rid of them, do your healing fc in c#, like this, for example
  15. why don't just use wManager.Wow.Helpers.Mail.SendMessage?
  16. As i said gm's constantly working on, fixing one quest, broke several others. For example, one profile have 40 quests, one day 30 of them can picked up, second day half of them, third day all of them works. Remove quests is not an option. I look for code like: //pseudocode if (Log.Contains("you can disable profile step'")) { int step = wManager.Wow.Helpers.Quest.QuesterCurrentContext.CurrentStep ; DisableStep(step); } Is that possible to do?
  17. Hello there, I try describe problem how i can,hope my writing will be understandable, english is not my home language:D When bot can't pick up quest, he write log like "[Quester] He's trying to pickup quest XXXX for more than 120 secondes, go to next step (if you get this problem again, you can disable profile step '123'." I play on server where gm's constantly working on, fixing one quest, broke several others. Problem is : When i start\stop bot, he tries to pick up such quests again, and if there are many of them, that can take pretty long. What I want : when bot fails to pick up such quest, he disable that quest for that certain character not only for this session, but forever for this profile(by disabling profile step, or somehow blacklist it). If someone can help me with code that do it that if its possible, or even Droidz wish to add this feature in future, thats be fantastic.
  18. if (ObjectManager.Me.TargetObject.Fleeing) { Fight.StopFight(); wManager.wManagerSetting.AddBlackList(ObjectManager.Me.TargetObject.Guid, 30000); } put this in while loop or add to event
  19. Possible , but if mob fleeing away to his friends ,he pulls them to you anyway. Better solution to use stun or snare to stop them.
  20. var list = new List<string>(); for (int i = 0; i <30; i++) // 30 is example { var x = Lua.LuaDoString<string>(string.Format("name, guild, level, race, class, zone, classFileName = GetWhoInfo({0}); return name", i)); list.Add(x); }
×
×
  • Create New...