Lumaktaw patungo sa pangunahing content

ResetPlayerMoney

Description

Reset a player's money to $0.

NameDescription
playeridThe ID of the player to reset the money of.

Returns

1 - The function was executed successfully.

0 - The function failed to execute. This means the player is not connected.

Examples

public OnPlayerDeath(playerid, killerid, WEAPON:reason)
{
SendClientMessage(playerid, 0xFFFFFFAA, "You died and lost all of your cash!");
ResetPlayerMoney(playerid);
return 1;
}