How to set permission level for command

GTA V version? latest
Up to date? yes
Legit or Pirate copy? legitimate
Steam/CD/Social Club? steam/social club
Windows version? 10
Did you try to delete caches.xml and try again? yes but irrelevant
Error screenshot (if any) no error
System specifications
What did you do to get this issue? no issue
What server did you get this issue on? my server
CitizenFX.log file no log file relevant
.dmp files/report IDs

If an issue with starting: All answers below irrelevant
GTA V folder screenshot
GTA V/update/x64/dlcpacks screenshot
Filepath to FiveM folder
FiveM client folder screenshot
Did you try to disable/uninstall your Anti-virus?


I ask for some help from some experienced LUA users.

I am using stoned turtles hospital/rp death script which works a charm for reviving but it brings me to a dilemma that with fiddling around i cant seem to find an answer.

Is there a way i can set the command to a permission level so only users with that permission level can use the command (so a whitelist forsay)

This is so i can RP NHS better on my server so all users are unable to use that set command. Making only setting user permission neccesary via ‘/setadmin’ so approved memebers can use it

Could anyone help with a line of coding that i can add that would set a permission level.
This is what the script Lua includes


Script (server.lua) (credits to Stonedturtle who made this)

RegisterServerEvent(‘HOSPITAL:released’)

AddEventHandler(‘HOSPITAL:released’, function(from)
local name = GetPlayerName(from)
TriggerClientEvent(‘chatMessage’, -1, “SYSTEM”, {200,0,0}, name…" has been released from the hospital.")
end)

RegisterServerEvent(‘HOSPITAL:reminder’)

AddEventHandler(‘HOSPITAL:reminder’, function(from, seconds)
TriggerClientEvent(‘chatMessage’, from, “SYSTEM”, {200,0,0}, “You have “…tostring(seconds)…” more seconds before you are released from the hospital.”)
end)

local usageStringHospital = “Usage: /hospital id seconds reason
local usageStringER = “Usage: /er id hospital seconds reason

AddEventHandler(‘chatMessage’, function(from,name,message)
if(message:sub(1,1) == “/”) then

	local args = stringsplit(message, " ")
	local cmd = args[1]
	local cmd = args[1]


	if (cmd == "/hospital" or cmd == '/er') then
		CancelEvent()
		local usageString = usageStringHospital
		local ER = false

		if(cmd == "/er") then
			usageString = usageStringER
			ER = true
		end

		if (args[2] == nil or args[3] == nil or args[4] == nil or (ER and args[5] == nil)) then
			TriggerClientEvent('chatMessage', from, "SYSTEM", {200,0,0}, usageString)
			return
		end

		local playerID = tonumber(args[2])

		if(playerID == nil or GetPlayerName(playerID) == nil) then
			-- Invalid player ID
			TriggerClientEvent('chatMessage', from, "SYSTEM", {200,0,0} , "Invalid PlayerID")
			return
		end

		local userName = GetPlayerName(playerID)
		local hospitalTime = 0
		local hospitalIdentifier = 0

		if (ER) then
			hospitalTime = tonumber(args[4])
			hospitalIdentifier = tonumber(args[3])


			if (hospitalIdentifier == nil) then
				local hospitalText = { paleto = 1,sandy = 2,zonah = 3,pillbox = 4,central = 5}

				local requestText = string.lower(args[3])

				hospitalIdentifier = hospitalText[requestText]

				if(hospitalIdentifier == nil) then
					TriggerClientEvent('chatMessage', from, "SYSTEM", {200,0,0}, usageString)
					return
				end
			end

		else
			hospitalIdentifier = 0
			hospitalTime = tonumber(args[3])
		end

		if(hospitalTime == nil) then
			TriggerClientEvent('chatMessage', from, "SYSTEM", {200,0,0} , usageString)
			return
		end

		if (hospitalTime > 600) then
			hospitalTime = 600
		end

		local hospitalReason = ""

		if (ER) then
			hospitalReason = table.concat(args, " ", 5)
		else
			hospitalReason = table.concat(args, " ", 4)
		end


		local eventMessage = userName.." was hospitalized for "..tostring(hospitalTime).." seconds due to "..tostring(hospitalReason..".")

		TriggerClientEvent('chatMessage', -1, "SYSTEM", {200,0,0}, eventMessage)

		TriggerClientEvent('HOSPITAL:hospitalize', playerID, hospitalTime, hospitalIdentifier)
	end



end

end)

– String splits by the separator.
function stringsplit(inputstr, sep)
if sep == nil then
sep = “%s”
end
local t={} ; i=1
for str in string.gmatch(inputstr, “([^”…sep…"]+)") do
t[i] = str
i = i + 1
end
return t
end

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.