Author Topic: admin only events?  (Read 507 times)

Is this possible? I am pretty sure it is because the minigame center prints don't work for non admins. If so, how would it be formatted?


If you can find the brick the event stems from in the event you can check the isadmin or issuperadmin of the owner.

Something like %brick.brickclient or %brick.client

if(%client.isAdmin)
{
//insert crap here
}

if(%client.isAdmin)
{
//insert crap here
}
Wrong, don't try to help if you have no idea what you're doing

You could use $InputTarget_["Self"].client.isAdmin, but if the event is scheduled and another event is triggered before the scheduled event occurs, it will do the admin check on the brick that the more recently triggered event occurred on.