22.09.2013, 01:16
Ola,queria saber se alguem tem um sistema de Ajudante
Pois procurei e nao ashei !
Pois procurei e nao ashei !
Cara com tanto lugar pra pesquisar! Com uma simples variбvel global seria possнvel criar um sistema de admin inteiro! Pesquise na wiki, no ******, no forum!
|
new Ajudante[MAX_PLAYERS];//Topo do GM
//Exemplo de cmd
if (!strcmp("/serajudante", cmdtext, true))
Ajudante[playerid] = 1;
#include A_SAMP
#include ZCMD
#include SSCANF
new Ajudante [ MAX_PLAYERS ] ;
stock Nome ( playerid ) {
new xName [ 21 ] ;
GetPlayerName ( playerid, xName, 21 ) ;
return xName ;
}
COMMAND:darajudante ( playerid, params[] ) {
new ID, Nivel, Celulas [ 128 ] ;
if ( sscanf ( params, "ud", ID, Nivel ) )
return SendClientMessage ( playerid, -1, "[ USE ]: /darajudante [ID] [Nivel]" ) ;
if ( Nivel < 1 || Nivel > 100 )
return SendClientMessage ( playerid, -1, "[ ERRO ]: Nнveis de 1 e 100" ) ;
Ajudante [ ID ] = Nivel ;
format ( Celulas, 128, "[ PARABЙNS ]: %s foi promovido a Ajudante nivel %d - Por: %s", Nome ( ID ), Nivel, Nome ( playerid ) ) ;
SendClientMessageToAll ( -1, Celulas ) ;
return true ;
}