08.01.2011, 13:44
Quote:
Will that check for armor first and if he does have armor, take it? Or would I have to write below it..
SetPlayerArmor(target, A-100) And I probably sound stupid, but how do I make a .inc? |
pawn Код:
public OnPlayerShootPlayer(shooter, target, Float:damage)
{
new Float:A, Float:H, Float:health, Float:armour;
GetPlayerHealth(target, H);
GetPlayerArmour(target, A);
armour = 100 - A;
health = H - armour;
SetPlayerArmour(target, armour);
SetPlayerHealth(target, health);
return 1;
}

However about the include: Just make an new file named "{name}.inc" and put it in pawno/includes

But you need to make the include. Just make functions etc. If you need something like "OnPlayerConnect", use CallRemoteFunction/CallLocalFunction