Files
Elite-Gaming-FiveM/resources/[system]/runcode/runcode.js
T
2021-12-03 01:19:31 +00:00

11 lines
298 B
JavaScript

exports('runJS', (snippet) => {
if (IsDuplicityVersion() && GetInvokingResource() !== GetCurrentResourceName()) {
return [ 'Invalid caller.', false ];
}
try {
return [ new Function(snippet)(), false ];
} catch (e) {
return [ false, e.toString() ];
}
});