[Ajuda] Pфr randon valor em mensagem de texto - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Pфr randon valor em mensagem de texto (
/showthread.php?tid=600151)
Pфr randon valor em mensagem de texto -
qSmoke - 04.02.2016
Код:
if(Del[playerid] == 1) // This checks if our variable equals to 1, if so: it continues
{
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
GivePlayerMoney(playerid, DinheiroEntrega[rand][0]);
SendClientMessage(playerid, 0xFFFFFFFF, "Vocк ganhou %d dуlares pelo trabalho");
return 1;
}
Quero por o mesmo valor DinheiroEntrega na mensagem ali, alguйm ajuda?
Re: Pфr randon valor em mensagem de texto -
Coringa_Vilao - 04.02.2016
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
GivePlayerMoney(playerid, DinheiroEntrega[rand][0]);
SendClientMessage(playerid, 0xFFFFFFFF, "Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega[rand][0]);
return 1;
}
Re: Pфr randon valor em mensagem de texto -
qSmoke - 04.02.2016
Quote:
Originally Posted by Coringa_Vilao
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
GivePlayerMoney(playerid, DinheiroEntrega[rand][0]);
SendClientMessage(playerid, 0xFFFFFFFF, "Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega[rand][0]);
return 1;
}
|
Nгo foi x(((((
Re: Pфr randon valor em mensagem de texto -
Coringa_Vilao - 04.02.2016
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
GivePlayerMoney(playerid, DinheiroEntrega);
SendClientMessage(playerid, 0xFFFFFFFF, "Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega);
return 1;
}
Re: Pфr randon valor em mensagem de texto -
LockedLucas - 04.02.2016
Esqueceu de formatar...
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
new string[30];
GivePlayerMoney(playerid, DinheiroEntrega);
format(string,sizeof(string),"Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
Re: Pфr randon valor em mensagem de texto -
qSmoke - 04.02.2016
Quote:
Originally Posted by LockedLucas
Esqueceu de formatar...
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
new string[30];
GivePlayerMoney(playerid, DinheiroEntrega);
format(string,sizeof(string),"Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
|
Deu certo, valeu
Re: Pфr randon valor em mensagem de texto -
Coringa_Vilao - 04.02.2016
Quote:
Originally Posted by LockedLucas
Esqueceu de formatar...
PHP код:
if(Del[playerid] == 1){
DisablePlayerCheckpoint(playerid); // This makes sure that there will be a new checkpoint
Del[playerid] = 0; // Changes the variable, so we can use it later again with OnPlayerEnterCheckpoint
new rand = random(sizeof(DinheiroEntrega));
new string[30];
GivePlayerMoney(playerid, DinheiroEntrega);
format(string,sizeof(string),"Vocк ganhou %d dуlares pelo trabalho", DinheiroEntrega);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return 1;
}
|
falta de atenзгo minha...