13.04.2012, 17:19
yes, there are a lot ways, like make function to give hit
try this
now you can use them function in your script
try this
pawn Code:
new HitP[MAX_PLAYERS];
stock RemovePlayerHit(playerid)
{
HitP[playerid] = 0;
return HitP[playerid];
}
stock GivePlayerHit(playerid,money)
{
HitP[playerid] = HitP[playerid] + money;
return HitP[playerid];
}
stock SetPlayerHit(playerid,money)
{
HitP[playerid] = money;
return HitP[playerid];
}