26.10.2011, 15:55
Galera fiz um sistema, que so os adm poderia usar essas skin 269,270,271. Mais oq eu fiz nao ta bloqueando a skin, so saindo a mensagen que ela e para adm. Entao queria a ajuda para ajeita o pawno, para bloquear o uso. aki as linhas
PHP код:
if(dialogid == skins)
{
if(response == 1)
{
new aname[MAX_PLAYER_NAME];
new skinid;
GetPlayerName(playerid, aname, sizeof(aname));
format(file, sizeof(file), PASTA_CONTAS, aname);
new grana;
grana = GetPlayerGrana(playerid);
if(grana > 49){
dini_Set(file, "Skin", inputtext);
SetPlayerSkin(playerid, dini_Int(file, "Skin"));
GivePlayerGrana(playerid, -50);
SendClientMessage(playerid, Verde, "New World: Vocк comprou uma nova roupa com sucesso !");
} else {
SendClientMessage(playerid, Vermelho, "New World: Vocк nгo tem dinheiro para comprar uma roupa");
}
skinid = GetPlayerSkin(playerid);
if(skinid == 260 || skinid == 270 || skinid == 271)
{
if(!(pAdmin[playerid] == 2))
{
SendClientMessage(playerid, -1,"Skins bloqueada.e so para admins. Escolha outra skin");
return 0;
}
}
}
}