04.06.2013, 00:56
Sу uma base, agora sу fazer o salvamento.
flw
flw
PHP код:
new bool:xAfastado [ MAX_PLAYERS ] ;
COMMAND:afastarpolicial ( playerid, params[] )
{
static
xCelulas [ 128 ], xNome [ 21 ] ;
if ( isnull ( params ) )
return SendClientMessage ( playerid, -1, "[ USE ]: /afastarpolicial [ID]" ) ;
GetPlayerName ( playerid, xNome, 21 ) ;
format ( xCelulas, 128, "[ AVISO ]: Vocк foi afastado pelo policial da corregedoria %s", xNome ) ;
SendClientMessage ( strval ( params ), -1, xCelulas ) ;
xAfastado [ strval ( params ) ] = true ;
return 1 ;
}
COMMAND:retirarafastamento ( playerid, params[] )
{
static
xCelulas [ 128 ], xNome [ 21 ] ;
if ( isnull ( params ) )
return SendClientMessage ( playerid, -1, "[ USE ]: /retirarafastamento [ID]" ) ;
GetPlayerName ( playerid, xNome, 21 ) ;
format ( xCelulas, 128, "[ AVISO ]: Vocк foi retirado do afastamento pelo policial da corregedoria %s", xNome ) ;
SendClientMessage ( strval ( params ), -1, xCelulas ) ;
xAfastado [ strval ( params ) ] = false ;
return 1 ;
}