30.05.2014, 02:14
Bom Galera,Estou Aqui para Pedir ajuda com Um Dialog Bom Vamos lб.
Eu Gostaria de Colocar em Dialog Style Input o Seguinte Comando.
Alguйm Poderia me dar Uma Luz de Como Fazer,Agradeзo desde ja.
Eu Gostaria de Colocar em Dialog Style Input o Seguinte Comando.
pawn Код:
if(strcmp(cmd, "/loteria", true) == 0)
{
if(PlayerToPoint(1, playerid,822.0201,4.2154,1004.1797) || PlayerToPoint(1, playerid,822.0099,6.3927,1004.1797) || PlayerToPoint(1, playerid,822.0087,-0.1116,1004.1797) || PlayerToPoint(1, playerid,822.0237,1.7826,1004.1797) || PlayerToPoint(1, playerid,-2159.1855,640.3618,1052.3817) || PlayerToPoint(1, playerid,-2161.0527,640.3587,1052.3817))
{
if(PlayerInfo[playerid][pLottoNr] > 0)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк jб tem um bilhete de loteria !");
return 1;
}
if(GetPlayerMoney(playerid) < 800)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк Nao tem R$800 para pagar o numero de loteria !");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) {
SendClientMessage(playerid, COLOR_WHITE,"USE: /loteria [numero]");
return 1;
}
new lottonr = strval(tmp);
if(lottonr < 1 || lottonr > 80) { SendClientMessage(playerid, COLOR_GREY, " numero da loteria, de 1 a 80 !"); return 1; }
format(string, sizeof(string), "* Vocк comprou um bilhete de loteria com numero: %d.", lottonr);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
GivePlayerMoney(playerid, - 800);
PlayerInfo[playerid][pLottoNr] = lottonr;
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " Vocк Nao estб na Loterica !");
}
return 1;
}