Hi everybody,my question is simple.I have this syntax,so how can i make it ?I want players mustn't type if they weren't spawned.
function onPlayerChat( player, text )
{
if ( player.IsSpawned ) return 1;
return 0;
}
Quote from: Xmair on Aug 18, 2017, 04:18 PMfunction onPlayerChat( player, text )
{
if ( player.IsSpawned ) return 1;
return 0;
}
Thanks sir but can you make a full function,i make this,is it true ?function onPlayerChat( player, text )
{
if ( player.IsSpawned )
print( player.Name + ": " + text );
return 1;
}
http://forum.vc-mp.org/?topic=5100.0