[AJUDA] pVip
#1

pawn Код:
if (strcmp("/vip", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid, PRETO, "Voce agora й vip nivel %d", pVip);
        PlayerInfo[playerid][pVip] + 1;
        return 1;
    }
nгo tб dando o nнvel para o jogador.
Reply
#2

pawn Код:
PlayerInfo[playerid][pVip] = 1;
Reply
#3

Код:
new Vip[MAX_PLAYERS] = 0;// 0 й pra todo novo player ele nascer sem vip
	if(strcmp(cmd, "/vip", true) == 0)
	{
	new tmp[256], id;
	tmp = strtok(cmdtext, idx);
	id = strval(tmp);
	if(!strlen(tmp)) return SendClientMessage(playerid, branco, "Use: /vip id");
	if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xFFFFFFAA, "Vocк precisa ser Admin para usar este comando.");
	if(!IsPlayerConnected(playerid)) return SendClientMessage(playerid, 0xFFFF00AA, "Este jogador nгo estб conectado!");
	GameTextForPlayer(id, "Agora vocк й um VIP, Obrigado por ajuda ao nosso server :)", 3000, 0);
	Vip[id] = 1;//1 para ser vip
	return 1;
	}
Reply
#4

Amigo nгo testei o cmd nгo sei se irб funcionar faзa um backup do seu cуdigo antes de testar oks?
E se errei me digam o erro ae glr so novato em linguagem pawn!

pawn Код:
new level;
level = strval(tmp);

if(strcmp(cmd, "/vip", true) == 0)
{    
format(string, sizeof string, "Vocк agora й VIP nнvel %d", level );
                    SendClientMessage(para1, COLOR_LIGHTBLUE, string);
}
E se quiser limitar pra admin faзa assim:

pawn Код:
new level;
level = strval(tmp);
new playerid; playerid<MAX_PLAYERS; playerid++;

if(strcmp(cmd, "/vip", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= ?)    // em ? coloque o nivel de adm
format(string, sizeof string, "Vocк agora й VIP nнvel %d", level );
                    SendClientMessage(para1, COLOR_LIGHTBLUE, string);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)