Author Topic: non admin minigames  (Read 537 times)

some people on my server want to make minigames, but it says they have to be admin,is there an add on that causes this? or is it a /slash command

I think the /setdefaultminigame mod causes this.

I personally like it because there won't be idiots running around shooting people thinking that it will kill them.

This is caused by Aloshi's "Set Default Minigame" mod. Disable it if you want normal players to be able to create mini-games.

I don't really like the mod for this reason, if the server host isn't actually running a default minigame...

This is caused by Aloshi's "Set Default Minigame" mod. Disable it if you want normal players to be able to create mini-games.

I don't really like the mod for this reason, if the server host isn't actually running a default minigame...

Well there IS a part in the script you can simply delete to remove it.
Like, the script is commented around what part you remove.

When I tried to open that script, my text editor filled with garbage because the newlines in it are broken.

Would deleting that work, anyway? If non-admins can create minigames then they can all escape the "default minigame" by doing that then ending theirs...

Well there IS a part in the script you can simply delete to remove it.
Like, the script is commented around what part you remove.

if you delete that... i found a glitch, you can leave a default mini by making one, and leaving your own

When I tried to open that script, my text editor filled with garbage because the newlines in it are broken.

Would deleting that work, anyway? If non-admins can create minigames then they can all escape the "default minigame" by doing that then ending theirs...

It's the first fifteen lines.
Code: [Select]
//To make starting of minigames not admin-required, remove this:
package MinigameAO
{
function serverCmdCreateMinigame(%client,%a,%b,%c,%d,%e,%f,%g)
{
if(%client.issuperadmin || %client.isadmin)
{
Parent::serverCmdCreateMinigame(%client,%a,%b,%c,%d,%e,%f,%g);
}else{
messageclient(%client,"","Sorry, you are not an admin.");
}
}
};
activatePackage(MinigameAO);
//Stop removing now

Exactly as it is -- I didn't add those comments.
And I dunno, I guess it would break it, but that's probably why it's there in the first place.