06.04.2010, 09:45
pawn Код:
new money; // Varible
money = GetPlayerMoney(playerid); // Assign the varible 'money' to mean 'GetPlayerMoney(playerid)' just to clean up the code.
if(money >= 1000) // If money is more or equals 1000
{
// Do something
}
else // If money is NOT more or DOESN'T equal 1000 - AKA - The oposite of the check
{
//Do something
}
