1
0
mirror of https://github.com/citizenfx/cfx-server-data.git synced 2025-03-12 23:07:20 +08:00
2017-09-05 11:58:39 +02:00

7 lines
283 B
Lua

RegisterCommand('run', function(source, args, rawCommand)
local res, err = RunCode('return ' .. rawCommand:sub(4))
end, true)
RegisterCommand('crun', function(source, args, rawCommand)
TriggerClientEvent('runcode:gotSnippet', source, -1, 'return ' .. rawCommand:sub(5))
end, true)