25.08.2011, 11:43
hello guys i have made the basic of this system now i need help...
when the player will tupe /game [num1] [num2] [price] to show the numbers with text draw from the right side of the monitor or near map like dices 1 to 6... but i have one bug here any number i write i says me the numbers is correct and the winning price coming to me
look the code and pls tell me how to make that...
Thanks.
when the player will tupe /game [num1] [num2] [price] to show the numbers with text draw from the right side of the monitor or near map like dices 1 to 6... but i have one bug here any number i write i says me the numbers is correct and the winning price coming to me
look the code and pls tell me how to make that...
pawn Код:
CMD:game(playerid, params[])
{
new number, number2, price, msg[125];
if(sscanf(params, "ddd", number, number2, price)) return SendClientMessage(playerid, COLOR_ORANGE, "USAGE:/game [num1] [num2] [price]");
SendClientMessage(playerid, COLOR_YELLOW, "Remember that the price is automaticly multiplied with 10");
new dice = random(6)+1; // 0-5 +1 = 1-6
if(dice == number, number2)
{
format(msg, sizeof(msg), "You won $%d, you can come again in 2 hours to play again this game.", price*10);
SendClientMessage(playerid, COLOR_GREEN, msg);
GivePlayerMoney(playerid, price*10);
}
else
{
format(msg, sizeof(msg), "You have lose $%d Have a nice day. Come back in 2 hours.", price);
SendClientMessage(playerid, COLOR_RED, msg);
GivePlayerMoney(playerid, - price);
}
return 1;
}