Jump to content
  • Only checks party, and not raid.


    Ordush
    • Version: All Product: Developers Type: Bug Status: Not Added

    Hey Droidz
    Not sure if it's a bug or it is intended, but when you use the class editor, and you set it to check friends (For healing group).
    It only casts on the group. Is there a way to change that to raid?
    I am guessing that you are doing variableName {"party1", "party2", "party3" etc.} or some variation of that. (Array)

    Should be possible to change that into raid1 raid2 etc. based on you being in a party or raid.
     

    group = false
    if not group then
    	group = "solo"
    end
    groupmembers = false
    if not groupmembers then
    	groupmembers = 0
    end
    		
    if GetNumPartyMembers() > 0 then
    	group ="party"
    	groupmembers = GetNumPartyMembers()
    end
    if GetNumRaidMembers() > 0 then
    	group = "raid"
    	groupmembers = GetNumRaidMembers()
    end

    This is how I personally define if i am in a group/raid/solo



    User Feedback

    Recommended Comments

    BetterSister

    Posted

    Old problem. There is a way with LUA to make raid to work but it was never added into wrobot API

    BetterSister

    Posted

    Changed Status to Confirmed

    Changed Product to Developers

    Changed Version to All

    Ordush

    Posted

    Yeah, the way to make it work with raid, is what i wrote above. :P
    Will it be added, or will i have to manually rewrite all my code to use lua instead?

    BetterSister

    Posted

    Depends on Droidz. Would be faster most likely if you make it yourself for now



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...