Jump to content

Wiceradon

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by Wiceradon

  1. Hey all,

    the Bot sometimes seems to freeze when using zeppellins (bot can`t be accessed anymore and will not get off the zeppellin). My test character started just riding the zeppellin for hours a few days ago. last week he was using the zeps correctly and got off at his destination. Does anyone else experience this problem? And is there a way for me to fix it?

  2. Hey, I'm currently testing my custom quester profile on warmane and got banned there already on 2 accounts. I've only been botting for about 3-5 hours a day and got the accounts banned after a while botting with no interaction from anyone or anything. Does anyone know about their "Anticheat" measures? Can they detect the bot or was it just bad luck?

     

     

     

  3. 15 hours ago, Droidz said:

    Try this code:

    
    var itemToBuy = new wManager.Wow.Class.Buy
    {
        ItemName = "Instant Poison",
        VendorItemClass = wManager.Wow.Class.Npc.NpcVendorItemClass.Consumable,
        GoToVendorIfQuantityLessOrEqual = 5,
        Quantity = 20,
        ScriptCanCondition = "return ObjectManager.Me.Level >20 && ObjectManager.Me.WowClass == WoWClass.Rogue;"
    };
    wManager.wManagerSetting.CurrentSetting.BuyList.Add(itemToBuy);

     

    Okay thank you DroidZ, it nearly works like I intended it to.

    I have one last question about the can condition. I have to change it into C# like:

    return wManager.Wow.ObjectManager.ObjectManager.Me.Level >20;

     

    Is it possible to run the code in other languages? Because it's easier for me to use codes like I posted here

    (ObjectManager.Me.Level >20 etc.)

    Is there a way to create a complete condition like

    wManager.wManagerSetting.CurrentSetting.BuyList.Contians(Instant Poison);

    ?

  4. 5 hours ago, Droidz said:

    Hello, you want do it with code or with interface?

    Hey Droidz,

     

    I want to do it with Code like: 

    wManager.wManagerSetting.CurrentSetting.BuyList.Add("Instant Poison"); 

    + Vendor Item Class: Consumable, Go to Vendor if Quantity Less or Equal: 5, Quantity 20, Script can condition: ObjectManager.Me.Level >20 && ObjectManager.Me.WowClass == WoWClass.Rogue;

    Is it possible?

  5. Hey everyone,

    I'd like to put items on the BuyList like this: 

     

    Item Name: Instant Poison I, Vendor Item Class: Consumable, Go to Vendor if Quantity Less or Equal: 5, Quantity 20, Script can condition: ObjectManager.Me.Level >20 && ObjectManager.Me.WowClass == WoWClass.Rogue;

     

    I cant figure out how to make this work. Does anyone have an idea? 

     

    Best,

    W

     

     

  6. 12 minutes ago, pudge said:
    
    wManager.Wow.Helpers.SpellManager.UpdateSpellBook();
    if(wManager.Wow.Helpers.SpellManager.ExistSpellBook("White Kodo")) 
    { 
    Logging.Write("Exist");
    wManager.wManagerSetting.CurrentSetting.GroundMountName = "White Kodo"; 
    }
    

    or use lua check

    
    
    if (Lua.LuaDoString<bool>(@"for i=1,GetNumCompanions('MOUNT') do _,creatureName = GetCompanionInfo('MOUNT', i) if creatureName == 'White Kodo' then return true end end"))
    { 
    Logging.Write("Exist");
    wManager.wManagerSetting.CurrentSetting.GroundMountName = "White Kodo"; 
    }

    both should work

    It works! Thank you!

  7. For me it doesn't seem to be working. I want to check if the character has learned the mount yet. My code looks like this and it isnt working:

    if(wManager.Wow.Helpers.SpellManager.ExistMount("White Kodo")) { wManager.wManagerSetting.CurrentSetting.GroundMountName = "White Kodo"; }

    I`m using this complete condition for it:

    return wManager.wManagerSetting.CurrentSetting.GroundMountName == "White Kodo" ;

    Can you help me?

×
×
  • Create New...