20.09.2012, 18:01
In what file i can change money when user join the game??
GivePlayerMoney(playerid,amount);
//Playerid refers to the player whom we are giving money.
//Change the amount to the amount, to give to the player.
public OnPlayerSpawn(playerid) //When player gets spawned.
{
GivePlayerMoney(playerid,100); //We've given $100 to the player who got spawned.
return 1; //returning the function.
}