Welcome, Guest. Please login or register.
Did you miss your activation email?
May 03, 2024, 03:25:17 pm *

Login with username, password and session length
  Show Posts
Pages: [1]
1  General Category / General Discussion / Re: Cannot See Effects on Mobs on: December 27, 2019, 01:51:32 pm
You need the Leadership AA's to be able to see buffs/debuffs on targets. Think it's the Inspect Buffs ones. Once I got those it started working for me.
2  General Category / General Discussion / Re: Zone crashes on: December 18, 2019, 11:23:59 am
I haven't tried it without MQ2 yet. It doesn't happen every time I zone into unloaded zones but it does happen enough to be annoying. When I'm playing with my full group it's less of an issue because I'm zoning multiple toons at once which is my workaround of fixing the issue anyway. I recently changed MQ2 builds that I was using in the last few days. Problem still exist with my newer MQ2 build. Will have to do some testing without MQ2 to see if that's what causing it but my money is on the client.

I am using RoF2 like OP said. Might have to try another download if I can find one. I played EZ back in 2013 with Underfoot (I think) and I notice I'm having a ton of issues now that I didn't have back then. Just been dealing with them but if this isn't a common issue for everyone I might try to pin it down.
3  General Category / General Discussion / Re: Zone crashes on: December 18, 2019, 08:51:30 am
Forgot to mention this happens just logging into an unloaded zone as well. Just logged my Warrior in for the first time today and he was logged out inside of one of my instances. Soon as I hit Enter World on Character Select screen that client froze up. Instead of waiting 3-5 minutes for it to unfreeze and knowing my other toons are logged out there, I logged my Cleric in. Soon as Cleric hits Enter World my Warrior unfreezes and both log in at same time.

Not the best work around but it works every time for me.
4  General Category / General Discussion / Re: Zone crashes on: December 17, 2019, 06:03:02 pm
This seems to happen to me a lot. It seems it mostly happens for zones that aren't loaded. The only workaround I know of is once I see one of my toons not zoning I can make another one of my toons enter that zone and soon as the second toon starts zoning the first one unfreezes and they both zone in at the same time.
5  General Category / Quest and Guides / Raid Invite + Raid Group Macro on: December 09, 2019, 11:38:24 am
Lately the server has been going down a ton and I've been loosing my raid groups. I created a 'quality of life' macro to invite my toons to a raid and place them in specified groups. Call me lazy but this saves me a ton of clicking.

I use MQ2AutoGroup plugin which auto accepts raid or group invites for me. I added code to the macro to accept invites for anyone that doesn't use MQ2AutoGroup but I haven't tested it. It should work but I can fix this if anyone has issue with this.

I made the macro easy to setup. There's a Setup section at the top of the macro to enter your toon names and specify which group you want them in. I left my toons coded in the macro as an example. You must change these values before this macro will work. You can add/remove settings to accommodate how many toons you have. You must add the raid leader (toon running the macro) to the settings as well so the macro knows which group to place in. I just used ${Me.Name} in my macro but you can replace that with actual name of toon.



After you change the settings in the macro all you need to do is /macro raidinvite on the toon you want to be raid leader. If you drop any of your toons from raid you can just run this macro again on the raid leader. It will invite missing toons and place them back in their specified group.

Hope someone finds this useful.
Download here: RaidInvite.mac Or copy/paste code below and place into a new file named RaidInvite.mac in your MQ2\Macros folder:
Code:

| ===================================================================== |
| RaidInvite.mac                                                        |
| Written by Othik                                                      |
| Date 12/09/2019                                                       |
| Version 1.1                                                           |
|                                                                       |
| Macro to invite players to raid and move them to specified groups.    |
| ===================================================================== |
| Add/Remove/Change values below.                                       |
| Increment Player# variable for each player.                           |
| Add player names and group number separated by pipe '|' symbol        |
| You must include name of raid leader so macro can place into group    |
|   Example:                                                            |
|       /declare Player1 string outer Julian|1                          |
|       /declare Player2 string outer Dirk|2                            |
| ===================================================================== |

Sub Setup
    | Group 1
    /declare Player1 string outer ${Me.Name}|1
    /declare Player2 string outer Ashinda|1
    /declare Player3 string outer Erfiz|1
    /declare Player4 string outer Vasta|1
    /declare Player5 string outer Liberta|1
    /declare Player6 string outer Tolith|1

    | Group 2
    /declare Player7 string outer Degnok|2
    /declare Player8 string outer Ecrosin|2
    /declare Player9 string outer Nidwin|2
/Return

| ================================ |
| Don't change anything below here |
| ================================ |
Sub Main
    /call Setup
    /if (!${Window[RaidWindow]}) /raidwindow
    /delay 3s ${Window[RaidWindow]}

    /call UnlockRaid
    /call InvitePlayers
    /bca //notify ConfirmationDialogBox Yes_Button LeftMouseUp
    /call LockRaid
    /call GroupPlayers

    /if (${Window[RaidWindow]}) /raidwindow
/Return

Sub UnlockRaid
    :UnlockLoop
        /notify RaidWindow RAID_UnLockButton LeftMouseUp
        /delay 1s !${Raid.Locked}
    /if (${Raid.Locked}) /goto :UnlockLoop
/Return

Sub LockRaid
    :LockLoop
        /notify RaidWindow RAID_LockButton LeftMouseUp
        /delay 1s ${Raid.Locked}
    /if (!${Raid.Locked}) /goto :LockLoop
/Return

Sub InvitePlayers
    /declare i int local
    /declare Player string local
    /for i 1 to 72
        /varset Player ${Player${i}}
        /if (${Player.NotEqual[NULL]} && ${Player.Count[|]}) {
            /raidinvite ${Player${i}.Arg[1,|]}
            /delay 2
        } else {
            /delay 5
            /return
        }
    /next i
/Return

Sub GroupPlayers
    /delay 3
    /declare i int local
    /declare Player string local
    /for i 1 to 72
        /varset Player ${Player${i}}
        /if (${Player.NotEqual[NULL]} && ${Player.Count[|]}) {
            /call MoveToGroup ${Player${i}.Arg[1,|]} ${Player${i}.Arg[2,|]}
        } else {
            /delay 5
            /return
        }
    /next i
    /delay 1s
/Return

Sub MoveToGroup(string Player, int GroupNumber)
    /declare i int
    /for i 1 to  ${Window[RaidWindow].Child[RAID_NotInGroupPlayerList].Items}
        /if (${Window[RaidWindow].Child[RAID_NotInGroupPlayerList].List[${i},2].Equal[${Player}]}) {
            :MoveLoop
                /notify RaidWindow RAID_NotInGroupPlayerList ListSelect ${i}
                /delay 5
                /notify RaidWindow RAID_Group${GroupNumber}Button LeftMouseUp
                /delay 5
            /if (${Window[RaidWindow].Child[RAID_NotInGroupPlayerList].List[${i},2].Equal[${Player}]}) /goto :MoveLoop
            /return
        }
    /next i
/Return


-
Othik
Pages: [1]
TinyPortal v1.0 beta 4 © Bloc