20.03.2016, 11:19
PHP код:
/ This functions gives the player the given amount of money and scorepoints
RewardPlayer(playerid, Money, Points)
{
// Add the given amount of money to the player's account
APlayerData[playerid][PlayerMoney] = APlayerData[playerid][PlayerMoney] + Money;
// Add the given amount of scorepoints to the player's account
APlayerData[playerid][PlayerScore] = APlayerData[playerid][PlayerScore] + Points;
}