24.01.2011, 14:50
can sombody tell me how can i DISABLE when stunt give money
and when i kill sombody
and when i kill sombody
About the give money on death, you need to modificy your OnPlayerDeath callback. About stunt money, isn't possible, since it's a part from the game.
|
EnableStuntBonusForPlayer(playerid, 0);//1 to enable 0 to disable ?
//Or
EnableStuntBonusForAll(0)//again 1 to enable 0 to disable
public OnGameModeInit()
{
EnableStuntBonusForAll(0);
return 1;
}