07.08.2018, 10:06
(17244) : error 010: invalid function or declaration
(17253) : error 029: invalid expression, assumed zero
(17266) : error 010: invalid function or declaration
there's is code
the Public onplayergivedamage it's last error
(17253) : error 029: invalid expression, assumed zero
(17266) : error 010: invalid function or declaration
there's is code
Код:
public OnPlayerTakeDamage(playerid, issuerid, Float: amount, weaponid, bodypart) { new Float: health, Float:armour ; GetPlayerHealth(playerid, health); // Gets the health of the player that took damage, and stores it in the float "health". GetPlayerArmour(playerid, armour); // Gets the armour of the player that took damage, and stores it in the float "armour". switch(bodypart) { case 3: SetPlayerHealth(playerid, health - 30); // Torso. case 4: SetPlayerHealth(playerid, health - 20); // Groin. case 5: SetPlayerHealth(playerid, health - 5); // Left Arm. case 6: SetPlayerHealth(playerid, health - 10); // Right Arm. case 7: SetPlayerHealth(playerid, health - 7); // Left Leg. case 8: SetPlayerHealth(playerid, health - 12); // Right Leg. case 9: SetPlayerHealth(playerid, health - 50); // Head. } return 1; } public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid, bodypart)