Jump to content

Asoter

Members
  • Posts

    59
  • Joined

  • Last visited

Reputation Activity

  1. Confused
    Asoter got a reaction from BetterSister in AH Automation Using TSM   
    After analyzed my Plugin almost everything works. I need 1-3 days for testing & fixing some small bugs and make this much user-friendly than now.

    Pre-requirements:
    - Fully Configurable TSM
    - Disable All Addons (Except TSM)
    - Done my Instruction before starting using them(5 minutes for configure this)

    Features:
    - Configurable IDs Mailboxe, Auctioner, Guild Bank and all Positions
    - Cancelling all items under cut(Automatic Detect End-Canceling)
    - Pickup mail(Automatic Detect when end)
    - Post Items (Automatic Detect when end)
    - Configurable Loop(true/false)
    - Deposit Gold to Guild Bank(true/false)

    Edit:
    Probably Tommorow In the evening(EU) Plugin+Tutorial for Setup will be ready
  2. Thanks
    Asoter got a reaction from Kalos72 in AH Automation Using TSM   
    After analyzed my Plugin almost everything works. I need 1-3 days for testing & fixing some small bugs and make this much user-friendly than now.

    Pre-requirements:
    - Fully Configurable TSM
    - Disable All Addons (Except TSM)
    - Done my Instruction before starting using them(5 minutes for configure this)

    Features:
    - Configurable IDs Mailboxe, Auctioner, Guild Bank and all Positions
    - Cancelling all items under cut(Automatic Detect End-Canceling)
    - Pickup mail(Automatic Detect when end)
    - Post Items (Automatic Detect when end)
    - Configurable Loop(true/false)
    - Deposit Gold to Guild Bank(true/false)

    Edit:
    Probably Tommorow In the evening(EU) Plugin+Tutorial for Setup will be ready
  3. Thanks
    Asoter reacted to Droidz in Change Party Product Settings   
    Hello, https://wrobot.eu/forums/topic/6910-change-profile-in-a-plugin/#comment-31413
  4. Thanks
    Asoter reacted to Matenia in 1 Plugin - 2 or more cs files   
    Compile it yourself in Visual Studio into 1 DLL and it'll work just fine.
  5. Thanks
    Asoter reacted to Droidz in Frame stack on WOW TBC 2.4.3 ?   
    Hello, only "/run DEFAULT_CHAT_FRAME:AddMessage(GetMouseFocus():GetName())" ( https://wrobot.eu/forums/topic/1689-useful-scripts/?do=findComment&comment=8447 ) seem to works in vanilla/tbc
     
  6. Thanks
    Asoter reacted to reapler in Change variable in plugin from quest profile   
    @Asoter Everything looks fine, checked names and values. For me it works: doesn't matter in "RunCode" or in plugin.
    You may try this snippet:
    using System; using System.Linq; using robotManager.Helpful; using wManager.Plugin; public class Main : IPlugin { public bool readyIntoDungeon { get { Logging.Write(this.GetType().GetProperties().FirstOrDefault().Name); return Var.GetVar<bool>(this.GetType().GetProperties().FirstOrDefault().Name); } set { Logging.Write(this.GetType().GetProperties().FirstOrDefault().Name); Var.SetVar(this.GetType().GetProperties().FirstOrDefault().Name, value); } } public void Initialize() { Logging.Write(""+readyIntoDungeon); } public void Dispose() { } public void Settings() { readyIntoDungeon = true; } } Click on settings button then start bot. If it's not printing "true", then something else could be wrong with your plugin. But without an insight into your code, i can't really define the problem.
  7. Thanks
    Asoter reacted to reapler in Change variable in plugin from quest profile   
    @Asoter Hello, in order to make a variable changeable by quester, you can transform your current variable into an property.
    Let's say you have an quest counter in your plugin defined as int:
    public int QuestCounter = 0; So you need to change this into this:
    public int QuestCounter { get { return robotManager.Helpful.Var.GetVar<int>(this.GetType().GetProperties().FirstOrDefault()?.Name); } set { robotManager.Helpful.Var.SetVar(this.GetType().GetProperties().FirstOrDefault()?.Name, value); } } You can still treat as an normal variable.
     
    And in Quester it looks like this:

    robotManager.Helpful.Var.SetVar("QuestCounter", 12);  
  8. Like
    Asoter got a reaction from Droidz in Reloger Issue   
    Dosen't matter that is with or without wow1 wow2 etc.
  9. Like
    Asoter reacted to Droidz in Update Status - Patch 7.2.0 Build 23852   
    Update done
  10. Like
    Asoter got a reaction from BetterSister in Repair dosen't work   
    Hey, repair items dosent work, my character only open NPC and wait for while. Using automation product.

    PS: This bot is awesome! :)
×
×
  • Create New...