Jump to content

pasdoy

Members
  • Posts

    23
  • Joined

  • Last visited

Posts posted by pasdoy

  1. 3 hours ago, DrSeltsam said:

    If I use this, the time left is always zero. The development Tools output also shows:

    PLAYER Buff/Debuff:

    Retribution Aura: ID=7294, Stack=1, TimeLeft=0 ms, Owner=0
    Blessing of Might: ID=19834, Stack=1, TimeLeft=0 ms, Owner=0
    Seal of the Crusader: ID=20162, Stack=1, TimeLeft=0 ms, Owner=0

    Funny I recently came back after a couple of months off and had to remove the TimeLeft check in my cc because it would always be 0. Thought the bug was on my side. Using vanilla.

  2. Hi I just did my first fight class in F# for fun. Well the beginning only. I built the dll but the bot can't run it, big red error in logs. Anyone tried to make a class in F#? I am not sure if it's F# or me building the DLL the wrong way. I am new to F#.

    namespace priestf
    
    open robotManager.Helpful
    open wManager.Wow.Helpers
    
    type Main() = 
        let mutable _loop = false
    
        interface ICustomClass with
            override this.Initialize() = 
                Logging.Write "Start Class"
                _loop <- true
    
            override this.Dispose() = 
                _loop <- false
    
            override this.ShowConfiguration() = ()
    
            override this.Range = 30.0f
    

     

×
×
  • Create New...