[Ajuda] Como cria um comando de /aprender por 120min, para admin?
#6

Fiz uma pequena base pra vocк.

pawn Код:
#include A_SAMP   «
#include  ZCMD    «
#include SSCANF2  «

new PlayerPreso [ MAX_PLAYERS ] ;

stock yNome ( playerid ) {

    new Nome [ 21 ] ;
    GetPlayerName ( playerid, Nome, 21 ) ;
    return Nome ;
}

COMMAND:cadeia ( playerid, params[] ) {

    new yID, yTempo, yMotivo [ 30 ], Celulas [ 128 ] ;
   
    if ( sscanf ( params, "uds[30]", yID, yTempo, yMotivo ) )
        return SendClientMessage ( playerid, -1, "[ USE ]: /cadeia [ID] [Tempo] [Motivo]" ) ;
       
    if ( !IsPlayerConnected ( yID ) )
        return SendClientMessage ( playerid, -1, "[ ERRO ]: Jogador nгo estб conectado" ) ;
       
    format ( Celulas, 128, "[ CADEIA ]: %s Foi punido na cadeia por %d minutos pelo Admin: %s. Motivo: %s", yNome ( yID ), yTempo, yNome ( playerid ), yMotivo ) ;
    SendClientMessageToAll ( -1, Celulas ) ;
   
    SetPlayerPos ( yID, 107.2300, 1920.6311, 18.5208 ) ;
    SetPlayerInterior ( yID, 0 ) ;
    PlayerPreso [ yID ] = yTempo * 60 ;
    return true ;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)