Jump to content

Matenia

Elite user
  • Posts

    2226
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Matenia got a reaction from eniac86 in C# Framework for wRobot 1.12.1 Fightclasses   
    Hey guys,
    I recently ported some of my fightclass framework to vanilla. I'm happy with where it currently is but will probably push updates.
    You can find a working version (and any future update) in my repository on GitHub. This framework is intended for all the developers on the wRobot Discord channel who keep working on the same issues over and over again. Hopefully this will encourage people to make pull requests and contribute to an overall community effort. 
    Also, hopefully it will help with some of the more regular Discord users not having to answer a lot of questions over and over.
    Enjoy:
    https://github.com/Schaka/VanillaFightclassFramework
  2. Like
    Matenia got a reaction from maukor in Food/Drink amount more than 50   
    That setting doesn't work, @Droidz. For some reason, in vanilla (I think TBC too), it only buys 50, even if you set the number to 200.
  3. Like
    Matenia reacted to Droidz in Change time to release spirit   
    Hello, try plugin like: Main.cs
    public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnRunState += delegate (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) { if (wManager.Wow.Helpers.Battleground.IsInBattleground() && state is wManager.Wow.Bot.States.ResurrectBG) { System.Threading.Thread.Sleep(1000); } }; } public void Dispose() { } public void Settings() { } } (replace 1000 by wait time in ms)
  4. Like
    Matenia reacted to Droidz in Bot on the way to flightmaster?   
    Hello, you can try to read log:
    robotManager.Events.LoggingEvents.OnAddLog += delegate(Logging.Log log) { if (!string.IsNullOrWhiteSpace(log.Text) && log.Text.StartsWith("[FlightMaster] Try to take taxi at ")) { // ... } };  
  5. Like
    Matenia reacted to penumbra in Bot on the way to flightmaster?   
    Hello,
    I'm having problems with my script that it should stop executing when the bot is on it's way to a flight mater (preferably when it is close to it)
    I've noticed that the log produces a "11:35:55.664 - [FlightMaster] Try to take taxi at <location>" but I am unsure if i can use something like the below to see if the bot is in a "seek out flightmaster"-state
    robotManager.Helpful.Logging.Status == "Regeneration" Does anyone know, or is there some documentation regarding the functions that I can call to understand where the bot is going and the purpose?
    Thanks!
  6. Like
    Matenia got a reaction from Droidz in Food/Drink amount more than 50   
    That setting doesn't work, @Droidz. For some reason, in vanilla (I think TBC too), it only buys 50, even if you set the number to 200.
  7. Like
    Matenia reacted to Droidz in Vendor Problem   
    Hello,
    - Remove NPCs already in your list (in main wrobot window, go to tab "Tools" > "Npc DB" > select your npc and press key "Del" to remove it from the list (restart wrobot)).
    - In advanced general settings tab "Other..." disable all options in "Automatically add nearest NPCs to database".
    - Add your NPCs in 'NPC db' (or in your profile)
  8. Like
    Matenia reacted to FNV316 in Questbot von 1-110 und viele weitere Profile   
    Dein Posting wirkt unseriös. Daher ist Misstrauen auf jeden Fall angebracht, insbesondere bei einem neuen User ohne bisherige Beiträge. Ob es das am Ende auch ist, steht auf einem anderen Blatt. Am besten du gehst den offiziellen Weg, testest dein Profil und bewirbst es erst im Anschluss. Dadurch vermeidest du Situationen wie diese.
  9. Like
    Matenia reacted to Rackmaster in Questbot von 1-110 und viele weitere Profile   
    Ja das stimmt hatte ich mir denken können eigentlich naja jetzt ist der Post da muss ich auf die Freischaltung warten und wenn es dann klappt hoffe ich das dieses Misstrauen weg ist 
  10. Like
    Matenia got a reaction from willi1105 in Questbot von 1-110 und viele weitere Profile   
    Würde ihm nicht trauen.
    Nen Quester in wRobot zu schreiben für 1-110 dauert Monate, nicht zwei Tage. Vorallem kann man das nicht mal eben von einem anderen Bot konvertieren. Wenn man jetzt noch mit einbezieht, dass er behauptet noch haufenweise Worldquester Profile zu haben, die camelot bisher als EINZIGER mit viel Aufwand und Mühe pflegt - halte ich das mal für einen Scam - also nicht den Typen PM'n und irgendwas privates zahlen. Ihr werdet 100%ig gescamt.
    Als Seller muss man sich nicht eintragen, man kauft den Status ein. Dafür zahlt man 9€ für 3 Monate und muss dann nur einmal die Profile von Droidz absegnen lassen (er guckt kurz drüber - damit es sich nicht um offensichtliche Viren handelt o.Ä.).
  11. Like
    Matenia reacted to maukor in Food/Drink amount more than 50   
    @Droidz is there  a way to set food/drink More than 50? cause 50 it's too low amount for vanilla. about 50-150mobs only. in some areas it runs to vendor too often. i would like to set drink to 100+ but i cant : (
  12. Like
    Matenia reacted to marrvin in Check hearthstone area id/hearthstone zone   
    you can use LUA to get the Bind location:
    http://wowwiki.wikia.com/wiki/API_GetBindLocation
     
     
  13. Like
    Matenia got a reaction from ScripterQQ in [ROGUE] Stop Attacking if target Gouge/Blind   
    static Main { wManager.Events.FightEvents.OnFightLoop += GougeHandler; } static void GougeHandler(WoWUnit unit, CancelEventArgs cancelable) { if(unit.HaveBuff("Gouge")) { Lua.LuaDoString("StopAttack();"); Thread.Sleep(500); } } I believe you can add C# code like that (probably public static void - not sure how wRobot works in that regard) to your fightclass.
     
  14. Like
    Matenia got a reaction from penumbra in Nearby Totem?   
    It's not a game object, it's an NPC.
    So check WoWUnits. If you wanna confirm it's yours, try unit.IsMyPet or unit.SummonedBy == ObjectManager.Me.Guid
  15. Like
    Matenia got a reaction from Avvi in Nearby Totem?   
    It's not a game object, it's an NPC.
    So check WoWUnits. If you wanna confirm it's yours, try unit.IsMyPet or unit.SummonedBy == ObjectManager.Me.Guid
  16. Like
    Matenia got a reaction from Droidz in Extend combat timer?   
    hey,
    bot doesn't miss the enemy. It goes towards it, keeps walking, walking, walking. Sometimes, just before you reach the enemy, the log says:
    "Mob seem bugged, blacklist" and stops. I tried to record a video of it but couldn't really get a good example.
    Maybe @maukor can record a better video.
  17. Like
    Matenia got a reaction from Droidz in Bot rezzing ontop of mobs   
    Hey Droidz,
    the problem is "smart rezz" feature (which works) is a bit bugged on private servers because on private servers while you're dead NPCs around you only load with delay and sometimes it takes quite a while.
    So wRobot doesn't find a safe spot to rezz, because it thinks there are no enemies around. Try to check continously before rezzing and it should improve vastly.
  18. Like
    Matenia reacted to Avvi in Avvi's C# Tips & Tricks with Helpful Code Snippets   
    Added information about WRobot States.
  19. Like
    Matenia reacted to maukor in Extend combat timer?   
    Have the same problem for casters. When bot selects target and runs to it. He need time to Cast. so pretty often during cast bot says : target seems bugged. blacklisting. But it's NOT. he's blacklisting enemies too fast
  20. Like
    Matenia reacted to KingFarm in Vanilla upgrade profile is too small   
    Lol .. The current world record is 4 days 20 hours /played (during an 8 day span) your name should be there :)
    Cheers.
  21. Like
    Matenia reacted to Avvi in Totown state?   
    bool goToTown = false; public void Initialize(){ initializeToTownWatcher(); } private void initializeToTownWatcher() { robotManager.Events.FiniteStateMachineEvents.OnRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "To Town") { goToTown = true; Logging.Write("Going to Town State has been initiated."); } }; robotManager.Events.FiniteStateMachineEvents.OnAfterRunState += (engine, state) => { if (state != null && state.DisplayName == "To Town") { goToTown = false; Logging.Write("We have completed going To Town State."); } }; } I recommend doing it by watching for state change. I've not used Matenia's version, but if that doesn't work you can use my code and use the goToTown boolean. 
     
     
  22. Like
    Matenia reacted to Coleman in Is the bin folder included in custom quest code (for imports)   
    I want to use reaplers DB in the custom quest code (build dll), if I use fully qualified class names, I still get a reference error when running the custom code, if the .dll is in the bin folder, will I have access to it?
     
    for example, in my quest code I have this line:
    DatabaseManager.Filter.CreatureFilter killList2 = new DatabaseManager.Filter.CreatureFilter { ContinentId = (ContinentId) Usefuls.ContinentId, Name = "Mindless Zombie" }; I get the error:
    The type or namespace name 'DatabaseManager' could not be found (are you missing a using directive or an assembly reference)...
    How can I fix this?
    Edit: It's not an error in visual studio or the IDE, it's at runtime in Wrobot
  23. Haha
    Matenia got a reaction from Master_DeluXXXe in RE: questing 1-110 Horde profile   
    Nobody is dispusting that HB was more polished. But you thinking that its pathing was inheritely better is idiotic.
    Also, you understand how cracked versions work, right? It's still the EXACT same software, it just doesn't require a server to authenticate with.
    So if the cracked version that people use to on older versions of the game (and once worked on retail, when it was at that patch) is shit, then so is HB in general. Make up your mind or first try to understand how these things work.
  24. Like
    Matenia got a reaction from ScripterQQ in Assign Talents for 3.3.5 WOTLK   
    That's why I said decompile it (use dotPeek), adjust it and recompile.
    With Lua, you'll also have to define the order, there's no way around that.
    Every talent has to be matched to a level in your data structure.
  25. Like
    Matenia got a reaction from BetterSister in Christmas Special - Matenia Products   
    Happy Holidays, fellow botters!

    I hope you have a great time with your family and friends.
    As a little gift from me, you'll be receiving a coupon (limited number of uses, valid until December 26th) for ALL my products!
    The code is: christmas20off
×
×
  • Create New...