Jump to content

Marsbar

Elite user
  • Posts

    411
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Marsbar got a reaction from sith500 in Full Refund   
    I have no idea how you could think he deserves a refund. There's plenty of information on the site to get a grasp on how to use the bot. There's also plenty of ban threads where people talk about their experiences on various servers. If he went ahead and just ran some random public profile without monitoring his bot for the first few hours of use it's definitely his own fault.
    Also can you elaborate on what kind of information or tutorial you feel like is missing? Maybe we as community can work on that.
  2. Thanks
    Marsbar reacted to Droidz in How do the BeforeStates and NextStates work?   
    Method check if needtorun return true (it is the method than I shared code)
  3. Thanks
    Marsbar reacted to Droidz in How do the BeforeStates and NextStates work?   
    Hello, like that (in simplified):
    bool RunState(State currentState) { if (currentState.NeedToRun) { foreach (var beforeState in currentState.BeforeStates) { RunState(beforeState); } currentState.Run(); foreach (var nextState in state.NextStates) { RunState(nextState); } return true; } return false; }  
  4. Thanks
    Marsbar got a reaction from newrobot() in Kill Mobs while gathering   
    2 options:
    Easy: make a grinder that does your gathering loop and add that mob to the kill list
    Harder: In a plugin add a state which is at a higher priority than gathering. Have a look at the grinder example bot project that droidz posted in the tutorials section on how to make a product. This should show you how states are added to the engine and an approximate priority you should make your state.
    There's a little bit of info about states at the bottom of this post too but you'll get the majority of info from that example project.
    edit: link to droidz example
     
  5. Thanks
    Marsbar got a reaction from Stresse in Can't Figure Out Why WR Doesn't Want My Plugin...   
    public class Lootoggle : wManager.Plugin.IPlugin  
    The class has to be called Main.
  6. Like
    Marsbar got a reaction from SigmaSupps in WRobot for private server   
    When you download the main wrobot from https://wrobot.eu/files/file/2-wrobot-official/ and launch the updater.exe there is a drop down for each version you can download.
    Have a install folder for each expansion!
  7. Like
    Marsbar got a reaction from Matenia in Bot not saving settings/order IDs   
    Also try running the bot as admin? maybe it cannot create the settings files, thus it doesn't save.
  8. Like
    Marsbar reacted to Matenia in How to heal on vanilla wow   
    No. You've been spoonfed for months now, you never contribute anything back. If you can't create a C# fightclass when I already give you everything you need, you actually need to start teaching yourself some stuff instead of relying on others to do all the work for you.
  9. Like
    Marsbar reacted to Gunkas in Careful with Botting on Netherwing!   
    So I have come to the conclusion this it really is the server. So as an experiment I made two Alliance and two Horde and ran them non-stop for 48 hours turning off ALL the security features. I reported one of the Horde and Alliance at the same time after this 48 hour non-stop session. Less than two hours after I sent the report email, the Alliance character was spot checked and account closed. The Horde character went about his business undisturbed. About 12 hours later I reported the last Horde and Alliance character. Like the first time, the Alliance character was spot checked in about 2 hours and account closed.
    That was 80 hours ago, and both the reported Horde characters have been going non-stop with no logging in or out. So there is definitely something weird about this server, either the GMs don't give a shit about Horde or there were other reports filed against my Alliance characters prior to my own reports. But since they both were spot checked about the same time after I sent the report, it feels unlikely.
  10. Like
    Marsbar reacted to Matenia in How to heal on vanilla wow   
    You can't. You HAVE TO target. Vanilla client doesn't allow casting on other units. There are PLENTY of topics all over the forums on how to do this.
  11. Thanks
    Marsbar got a reaction from Floood0 in Buff Players Plug-In   
    It was only compatible with Vanilla due to an actionbar method I was using, tbc compatible version attached
    Buffer.dll
  12. Thanks
    Marsbar got a reaction from Gunkas in Buff Players Plug-In   
    It was only compatible with Vanilla due to an actionbar method I was using, tbc compatible version attached
    Buffer.dll
  13. Thanks
    Marsbar got a reaction from saleh 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
  14. Like
    Marsbar reacted to bio33 in Suggestion: Force mail gold.   
    Hi you need this plugin
     
  15. Thanks
    Marsbar got a reaction from vodkalol in Unofficial WRobot API Documentation   
    Hi!
    There are often questions regarding the wrobot api and what functions it has, generally you're told to either decompile the dlls or reference them in your visual studio project and use the object browser.
    Some people only want to know a certain function name and don't wish to go into the deeper realms of development. There isn't a resource they can use to obtain that info without some effort on their part, that's hopefully where this site I generated will come in handy:

    Unofficial WRobot API Docs
    It was created by decompiling the vanilla wmanager and robotmanager dlls and generating an api web template using docfx.
    Currently it doesn't give you anything more than you'd have by decompiling the dlls yourself but I'm hoping to update this with method, property, constructer etc. descriptions and potentially basic code snippets for a better understanding of the wrobot api.
    If you're interested in contributing let me know and I can add you to the gitlab project (sorry if you don't like gitlab but it was quick and easy with free private repos).
  16. Like
    Marsbar got a reaction from shaded in Turn off /say   
    You're probably using this:
    https://wrobot.eu/files/file/1709-simple-antidetection/
     
  17. Like
    Marsbar got a reaction from Garub in Unofficial WRobot API Documentation   
    Hi!
    There are often questions regarding the wrobot api and what functions it has, generally you're told to either decompile the dlls or reference them in your visual studio project and use the object browser.
    Some people only want to know a certain function name and don't wish to go into the deeper realms of development. There isn't a resource they can use to obtain that info without some effort on their part, that's hopefully where this site I generated will come in handy:

    Unofficial WRobot API Docs
    It was created by decompiling the vanilla wmanager and robotmanager dlls and generating an api web template using docfx.
    Currently it doesn't give you anything more than you'd have by decompiling the dlls yourself but I'm hoping to update this with method, property, constructer etc. descriptions and potentially basic code snippets for a better understanding of the wrobot api.
    If you're interested in contributing let me know and I can add you to the gitlab project (sorry if you don't like gitlab but it was quick and easy with free private repos).
  18. Like
    Marsbar reacted to Droidz in Happy new year 2019!   
    View full article
  19. Thanks
    Marsbar got a reaction from Zer0 in Unofficial WRobot API Documentation   
    Hi!
    There are often questions regarding the wrobot api and what functions it has, generally you're told to either decompile the dlls or reference them in your visual studio project and use the object browser.
    Some people only want to know a certain function name and don't wish to go into the deeper realms of development. There isn't a resource they can use to obtain that info without some effort on their part, that's hopefully where this site I generated will come in handy:

    Unofficial WRobot API Docs
    It was created by decompiling the vanilla wmanager and robotmanager dlls and generating an api web template using docfx.
    Currently it doesn't give you anything more than you'd have by decompiling the dlls yourself but I'm hoping to update this with method, property, constructer etc. descriptions and potentially basic code snippets for a better understanding of the wrobot api.
    If you're interested in contributing let me know and I can add you to the gitlab project (sorry if you don't like gitlab but it was quick and easy with free private repos).
  20. Thanks
    Marsbar got a reaction from hunter79 in Unofficial WRobot API Documentation   
    I'm going to slowly start adding small code snippets / tutorials to this eg. https://marsbars.gitlab.io/unoffical-wrobot-api-docs/articles/plugin.html
    Let me know if you spot anything wrong with it or have suggestions on what to add.
  21. Like
    Marsbar got a reaction from Stresse in Unofficial WRobot API Documentation   
    Hi!
    There are often questions regarding the wrobot api and what functions it has, generally you're told to either decompile the dlls or reference them in your visual studio project and use the object browser.
    Some people only want to know a certain function name and don't wish to go into the deeper realms of development. There isn't a resource they can use to obtain that info without some effort on their part, that's hopefully where this site I generated will come in handy:

    Unofficial WRobot API Docs
    It was created by decompiling the vanilla wmanager and robotmanager dlls and generating an api web template using docfx.
    Currently it doesn't give you anything more than you'd have by decompiling the dlls yourself but I'm hoping to update this with method, property, constructer etc. descriptions and potentially basic code snippets for a better understanding of the wrobot api.
    If you're interested in contributing let me know and I can add you to the gitlab project (sorry if you don't like gitlab but it was quick and easy with free private repos).
  22. Thanks
    Marsbar got a reaction from Razzue in Unofficial WRobot API Documentation   
    I'm going to slowly start adding small code snippets / tutorials to this eg. https://marsbars.gitlab.io/unoffical-wrobot-api-docs/articles/plugin.html
    Let me know if you spot anything wrong with it or have suggestions on what to add.
  23. Like
    Marsbar reacted to Matenia in Can you make it, so wrobot does not count quiver/ammobag slots als normal bag slots?   
    @Marsbar you can do this completely automatically:
     
    Lua.LuaDoString(@" if GetItemInfoFromItemLink ~= nil then return end function GetItemInfoFromItemLink(link) local itemId = nil; if ( type(link) == 'string' ) then _,_, itemId = string.find(link, 'item:(%d+):'); if (itemId) then local version, build, date = GetBuildInfo(); if (tonumber(build) > 5875) then local itemName, itemLink, itemQuality, itemLevel, itemMinLevel, itemType, itemSubType, itemCount, itemEquipLoc, itemTexture = GetItemInfo(itemId); return itemName, itemLink, itemQuality, itemLevel, itemType, itemSubType, itemCount, itemTexture; else return GetItemInfo(itemId); end end end end "); uint quiverSlotCount = Lua.LuaDoString<uint>(@" for slot = 20,23 do local link = GetInventoryItemLink('player', slot); if link then then local itemName, itemLink, itemQuality, itemLevel, itemType, itemSubType, itemCount, itemTexture = GetItemInfoFromItemLink(link); if itemType == 'Quiver' then return GetContainerNumSlots(slot - 19); -- gets back slot end end end "); Works at least vanilla => WotLK. So you can turn that into a free plugina nd post it here :)
  24. Like
    Marsbar got a reaction from eniac86 in Can you make it, so wrobot does not count quiver/ammobag slots als normal bag slots?   
    Try this plugin, I made it ages ago for a friend, i think it does what you're after, you just have to give it the correct bag slot id, id 1 is the first bag next to your backpack, then its 2, 3, 4.
    AmmoV2.cs
    edit: if it works for you let me know and I'll post it for other people, i thought there was another plugin or something that covers this but can't find anything atm.
  25. Like
    Marsbar got a reaction from Dreamful in Unofficial WRobot API Documentation   
    I'm going to slowly start adding small code snippets / tutorials to this eg. https://marsbars.gitlab.io/unoffical-wrobot-api-docs/articles/plugin.html
    Let me know if you spot anything wrong with it or have suggestions on what to add.
×
×
  • Create New...