Hey, I just love this bit of code right here in the Admin.cs file.
function ServerCmdGrant(%client,%ply,%type,%amt)
{
%ply = findclientbyname(%ply);
if(%ply $= "" || %type $= "" || %amt $= "") {return;}
%ply.Stranded[%type] += %amt;
messageClient(%ply,'',"You have been granted " @ %amt SPC %type @ " by an admin!");
}
Does anybody else like how there is no check for admins so anybody can use this command?