Jump to content

Group Menu broken? Kick / Invite for Admin not possible


He-Man

Recommended Posts

  • 2 weeks later...

To give the Buttons their functions back, change in ...\mpmissions\epoch.xxx\epoch_code\init\client_init.sqf:

EPOCH_group_level_img = ["x\addons\a3_epoch_code\Data\owner.paa", "x\addons\a3_epoch_code\Data\mod.paa", "x\addons\a3_epoch_code\Data\member.paa"];

to

EPOCH_group_level_img = ["x\addons\a3_epoch_code\data\owner.paa", "x\addons\a3_epoch_code\data\mod.paa", "x\addons\a3_epoch_code\data\member.paa"];

 

When adding a member / change moderators...

The diplay reloads, but is empty. To prevent an empty display add in ...\mpmissions\epoch.xxx\epoch_code\gui\scripts\group\EPOCH_Group_update.sqf a sleep:

if (!isNull (findDisplay -1300)) then {
    (findDisplay -1300) closeDisplay 0;
    createDialog "Epoch_myGroup";
};

to

if (!isNull (findDisplay -1300)) then {
    (findDisplay -1300) closeDisplay 0;
    uisleep 0.2;     // new
    createDialog "Epoch_myGroup";
};
 

Optional: By changing moderators...

If the player is not ingame, you become a "dead player" in your group array. To prevent this, you can take the player name from the db. To do this, change in ...\a3_epoch_server\compile\epoch_group\EPOCH_server_upgradeGroup.sqf:

  Reveal hidden contents

to 

  Reveal hidden contents

I hope this helps...

He-Man

Link to comment
Share on other sites

Here the complete working files:

client_init.sqf

  Reveal hidden contents

EPOCH_Group_update.sqf:

  Reveal hidden contents

EPOCH_server_upgradeGroup.sqf:

  Reveal hidden contents

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...