[Release] sPerms - Real time discord perms

sPerms

This resource offers real time perms using discord roles. It takes a object of roles and return the same object, but true of false depending on if the they have the role. This also offer a feature to disallow people joining if they don’t have discord linked. That is set to false by default, but can be changed in the config. This doesn’t work with most common discord perms resources, but it can with some work. You NEED this resource in order for this resource to work!


Video

Installation

  • Clone or download resource into your resources folder
  • Configure the config to your liking
  • Add sPerms to your server.cfg

Exports

getUserRoles (server)

The getUserRoles export takes the server id of the player and returns their permissions object.

Example Usage

LUA

print(exports['sPerms']:getPlayerPerms(soruce))

JS

console.log(exports.sPerms.getPlayerPerms(source));

Events

sPerms:setPerms (client)

The event sPerms:setPerms will fire whenever a discord member roles changes, or when the player spawns in. It will return the permission object. This will only send the data to the client that had updated perms, not everyone. Note: It will only update when a roles are updated in the guild you have set in the sDiscord resource.

Example Usage

LUA

RegisterNetEvent('sPerms:setPerms')

AddEventHandler('sPerms:setPerms', function(perms)
  if perms.category.fivem then
    print('You have the FiveM role!')
  end
end)

JS

onNet('sPerms:setPerms', (perms) => {
  console.log(perms);
});

Download

You can download this resource here

10 Likes

Smexy

1 Like

Love it

interesting name… haha. looks good

Is there any way to get space’s discord and perms plugins to work with the DiscordAcePerms to where real-time updates in discord can change a user’s group (and therefore their perms) in the server? I can’t tell if this works or not with this sPerms plugin but if there is a way to do that please lmk!

how to setup the script
because it doesn’t show anythink in the console
please help

Does this resource still work?

[ script:sPerms] SCRIPT ERROR in event `sPerms:getPerms’: Error: No such export getUserRoles in resource sDiscord
[ script:sPerms] > getPerms (@sPerms/src/server/index.js:9)
[ script:sPerms] > (@sPerms/src/server/index.js:35)
[ script:sPerms] > addToQueue (@pQueue/src/server/index.js:130)

any help with this plz and than you

I would verify that sDiscord has started without error. If it hasn’t, try getting the latest version