28.08.2014, 16:21
@steki.: gtaun.net is up again. Sorry for the downtime.
@DrumYum: You can create a BeforeCheck, to check the adminlevel etc. like this:
This will be called before every command, and if it returns false, the command won't be executed.
@DrumYum: You can create a BeforeCheck, to check the adminlevel etc. like this:
PHP код:
@BeforeCheck
public boolean checkPremission(Player p, String cmd, String params)
{
return p.isAdmin();
}