[Ajuda] /avip
#1

pawn Код:
else if(PlayerVip[playerid] == 1)
    {
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", pNome(playerid), Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
Porq nao Ta funcionando, sУ aparece assim:

======Anuncio VIP======|:
VIP [Nick]:

Mais nao ta aparecendo o Texto

Alguem me ajuda? Nao to conseguindo acha o erro.....
Reply
#2

pawn Код:
else if(PlayerVip[playerid] == 1)
    {
        GetPlayerName(i, sendername, sizeof(sendername));
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", sendername , Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
Reply
#3

Quote:
Originally Posted by mau.tito
Посмотреть сообщение
pawn Код:
else if(PlayerVip[playerid] == 1)
    {
        GetPlayerName(i, sendername, sizeof(sendername));
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", sendername , Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
O problema e Texto nao com o nome
Reply
#4

Quote:
Originally Posted by Panico622
Посмотреть сообщение
O problema e Texto nao com o nome
Boiei LoL

@edit poste cmd inteiro
Reply
#5

Fica Assim:


http://i.imgur.com/YGW0L.png



So o Texto nao aparece
Reply
#6

Quote:
Originally Posted by mau.tito
Посмотреть сообщение
Boiei LoL

@edit poste cmd inteiro
pawn Код:
CMD:avip(playerid, params[])
{
    new Texto[128];
    if(PlayerVip[playerid] <= 0)
    {
        SendClientMessage(playerid, -1, "{FF0000}[Erro]{FFFFFF}Vc Nao й um Player Vip");
    }
    else if(PlayerVip[playerid] == 1)
    {
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", pNome(playerid), Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
    else if(PlayerVip[playerid] == 2)
    {
        if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, COR_CINZA, "Use /avip [texto]");
        format(String, sizeof(String), "~y~S-Vip %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    else if(PlayerVip[playerid] == 3)
    {
        if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, COR_CINZA, "Use /avip [texto]");
        format(String, sizeof(String), "~y~Socio %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    return 1;
}
Reply
#7

Tenta ai

pawn Код:
CMD:avip(playerid, params[])
{
    new Texto[128];
    if(PlayerVip[playerid] <= 0) return SendClientMessage(playerid, -1, "{FF0000}[Erro]{FFFFFF}Vc Nao й um Player Vip");
    if(sscanf(params, "s[128]", Texto)) return SendClientMessage(playerid, COR_CINZA, "Use /avip [texto]");
    if(PlayerVip[playerid] == 1)
    {
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", pNome(playerid), Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
    else if(PlayerVip[playerid] == 2)
    {
        format(String, sizeof(String), "~y~S-Vip %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    else if(PlayerVip[playerid] == 3)
    {
        format(String, sizeof(String), "~y~Socio %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    return 1;
}
Reply
#8

Esqueceu do sscanf *-*
pawn Код:
CMD:avip(playerid, params[])
{
    new Texto[128];
    if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, COR_ERRO, "USE: /avip [MENSAGEM]");
    if(PlayerVip[playerid] <= 0)
    {
        SendClientMessage(playerid, -1, "{FF0000}[Erro]{FFFFFF}Vc Nao й um Player Vip");
    }
    else if(PlayerVip[playerid] == 1)
    {
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", pNome(playerid), Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
    else if(PlayerVip[playerid] == 2)
    {
        format(String, sizeof(String), "~y~S-Vip %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    else if(PlayerVip[playerid] == 3)
    {
        format(String, sizeof(String), "~y~Socio %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    return 1;
}
Reply
#9

Quote:
Originally Posted by CidadeNovaRP
Посмотреть сообщение
Esqueceu do sscanf *-*
pawn Код:
CMD:avip(playerid, params[])
{
    new Texto[128];
    if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, COR_ERRO, "USE: /avip [MENSAGEM]");
    if(PlayerVip[playerid] <= 0)
    {
        SendClientMessage(playerid, -1, "{FF0000}[Erro]{FFFFFF}Vc Nao й um Player Vip");
    }
    else if(PlayerVip[playerid] == 1)
    {
        SendClientMessageToAll(0x00FF24FF, ":|======Anuncio VIP======|:");
        format(String,sizeof(String),"VIP %s: %s", pNome(playerid), Texto);
        SendClientMessageToAll(AZUL_CLARO, String);
    }
    else if(PlayerVip[playerid] == 2)
    {
        format(String, sizeof(String), "~y~S-Vip %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    else if(PlayerVip[playerid] == 3)
    {
        format(String, sizeof(String), "~y~Socio %s: ~w~%s", pNome(playerid), Texto);
        GameTextForAll(String, 5000, 4);
    }
    return 1;
}
vlw.....
Reply
#10

Quote:
Originally Posted by Panico622
Посмотреть сообщение
vlw.....
Nads .
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)