08.11.2016, 09:32
Quote:
Its not going like that m8..
Read this https://sampforum.blast.hk/showthread.php?tid=581106 BUT READ DON'T COPY-PASTE |
OT: Try this sean,
PHP код:
stock GetCoilFlip(playerid)
{
new string[64], playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
new coinflip;
coinflip = random(2);//only two cases occur here and thats 0 and 1
if(coinflip == 0)
{
format(string,sizeof(string),"%s flipped a coin! landed on heads",playername);
}
else
{
format(string,sizeof(string),"%s flipped a coin! landed on tails",playername);
}
return string;
PHP код:
SendClientMessage(playerid, 0xAFAFAFAA, GetCoilFlip(playerid));
or
SendClientMessageToAll(0xAFAFAFAA, GetCoilFlip(playerid));