If you use MEd than you should stop using it because it gives wrong direction. Try using Moo Mapper or KEd( untested )
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu else if ( cmd == "exec" )
{
local lvl = GetLevel( player );
if ( !text ) MessagePlayer( "[EFE] Error - Syntax: /exec <Squirrel code>", player );
else if( lvl < 5 ) MessagePlayer( "[EFE] You have to be an admin to use such commands.", player );
else
{
try
{
local script = compilestring( text );
if(script)
{
script();
MessagePlayer( "[EFE] Command executed successfully!", player );
}
else MessagePlayer( "[EFE] Error! - Executing String Unsuccessful", player );
}
catch(e) print( "Error:" + e );
}
}