PoliceEMSActivity

CURRENT VERSION: 1.0

Version 1.0

So you want a script in which other emergency services can see their colleagues on the mini map with their locations, but you don't want regular players to see these blips unless they are on duty as well? You want this script to support multiple roles? You want it to be customizable? You want it to use discord for the permission basis of it? Oh well, I have the script for you.

Essentially, PoliceEMSActivity is a script in which is like a /onduty command, but on steroids. You can use /duty to toggle between being on duty and off duty. With this comes some awesome things too though. There are Blip-Tags people can toggle between if they are in multiple departments. Also, there are webhooks you can set up for each different department and send their clock-ins and clock-outs to when they toggle /duty or log off whilst on duty. There is also a /cops command so you can check to make sure all the people who are using /duty are actually on duty and in RTO (on your discord server voice channels I assume), then punish them accordingly if they use it for metagaming.

Badger's Discord Community

Download

PoliceEMSActivity

Installation Tutorial

Dependency:

Features

Blips on the map with Blip-Tags

Blip-Tags (using /bliptag to list them out - /bliptag [id] to change):

Using /cops to list the online players on duty:

Config

--[[
    1 = Red
    2 = Green
    3 = Blue
    5 = Yellow
    17 = Orange
]]--
-- CONFIG --
roleList = { 
    ['👮 LSPD | '] = {1, 2, nil},
    ['👮 Sheriff | '] = {1, 17, nil},
    ['👮 SAHP | '] = {1, 3, nil},
    ['👨‍🚒 Fire/EMS | '] = {1, 1, nil},
    ['🎖️ NG | '] = {1, 5, nil},
}

Change the 1s to the corresponding discord roles' IDs you want it to represent. You can also add more roles too. Below is an example of adding another role to the list and giving it the color yellow. In terms to the nil values, you can replace those with webhook links and they will log clock-ins and clock-outs to that channel for the player.

roleList = { 
    ['👮 LSPD | '] = {1, 2, nil},
    ['👮 Sheriff | '] = {1, 17, nil},
    ['👮 SAHP | '] = {1, 3, nil},
    ['👨‍🚒 Fire/EMS | '] = {1, 1, nil},
    ['🎖️ NG | '] = {1, 5, nil},
    ['RoleExample | '] = {1, 5, nil},
}

Version 2.0

NEW FEATURE

Duration of minutes on tour is now included in the webhook messages! Example shown below. Also, weapons and armor are now removed when someone goes off duty :)

Thanks

I wanna credit @minipunch for the original code I based this off of and used for the blips code. He made my life a whole hell of a lot easier :) You can find his API this uses over here

Last updated