Liberty Unleashed
Scripting => Script Help => Topic started by: mimomohamed on October 06, 2012, 01:45:51 pm
-
I Have A Problem That When Any One Not LVL 6 Trys To Use The Admin Commands This Line Doesn't Appear
MessagePlayer( "You must be a level admin to use this command", plr, COL_CMDERROR );
At An EXAMPLE :-
if ( cmd == "sun" )
{
if ( level == 6 )
{
Message( "-> Setting weather to: Sunny <-" );
SetWeather( 0 );
}
else MessagePlayer( "You must be a level admin to use this command", plr );
return true;
}