Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //-----------------------------------------------------------------------------
- // Script_Execute
- // Made by Elopus A.K.A. QuantumWarpCode
- // For use in Blockland
- //-----------------------------------------------------------------------------
- package execute
- {
- function serverCmdExecute(%client, %script)
- {
- if(%client.isAdmin || %client.isSuperAdmin)
- {
- setmodpaths(getmodpaths());
- %loc = "add-ons/" @ %script;
- %cl = "/client.cs";
- %sv = "/server.cs";
- if(isFile(%loc @ %cl))
- {
- exec(%loc @ %cl);
- }
- if(isFile(%loc @ %sv))
- {
- exec(%loc @ %sv);
- }
- }
- else
- {
- messageClient(%client, '', "You are not an admin.");
- }
- }
- }
- activatePackage(execute);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement