14.12.2017, 08:43
Vocк colocou muitas chaves desnecessбrias, como por exemplo:
if(PlayerInfo[ playerid][pProfissao] == Assasino){
{ Essa ta errada vocк jб tinha colocado uma ali em cima onde estб de verde!
if(PlayerInfo[ playerid][pProfissao] == Assasino){
{ Essa ta errada vocк jб tinha colocado uma ali em cima onde estб de verde!
PHP код:
if(strcmp(cmd,"/anuncio",true)==0)
{
new PlayerName[MAX_PLAYER_NAME];
GetPlayerName(playerid, PlayerName, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, PlayerName(playerid));
if(PlayerInfo[ playerid][pProfissao] == Assasino){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Estб Cansado de Alguйm? Assasino {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == Mecanico){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Esta Precisando de Mecвnico ? use: /Mecanico {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == VendedorSkin){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Estб Precisando de uma Skin nova? Vendedor de Skin {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == Taxista){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Esta Perdido ? Precisa de Taxi /taxi local {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == Paramedico){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Esta Com Pouca Vida ? Chame um Paramedico {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == Advogado){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Estб Preso ? Precisa de Advogado ? /advogado {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid][pProfissao] == Sorveteiro){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Esta com calor ? Chame um sorveteiro {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid ][pProfissao] == MOnibus){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Estou disponнvel pela cidade фnibus de luxo {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
if(PlayerInfo[ playerid ][pProfissao] == EPizza){
SendClientMessage(playerid, Branco, "[ X ] Vocк anunciou com sucesso!");
format(string, sizeof(string), "ANUNCIO {FFFFFF} -> Esta Com Fome ? Peзa Uma Pizza Entregador: {299C29} CONTATO {FFFFFF} %s {FFD700}ID:%d {13A9F6} !", PlayerName(playerid),playerid);
SendClientMessageToAll(0x299C29AA,string);
}
else
{
SendClientMessage(playerid,Vermelho,"| ERRO | Vocк nгo tem uma profissгo adequada para anunciar .");
return 1;
}
return 1;
}