Player killed with vehicle
#1

Hi,

When player kill somebody with vehicle how much damage then he taken?
Reply
#2

It all depends on if they are going really fast, or slow. There is no specific number. Try making a command that just tells you your health, stand still and have someone hit you at different speeds in different cars and see what your health gets to.
Reply
#3

It is not a certain damage. It really depends. As nathan suggested, make a command that gets your health, and just have someone hit you going at different speeds.

pawn Code:
CMD:myhp(playerid, params[])
{
new Float: HP;
GetPlayerHealth(playerid, HP);
new string[126];
format(string, sizeof(string), "Health: %f", HP);
SendClientMessage(playerid,-1,string);
Reply
#4

Get the player's health when it hits with a vehicle, and after that subtract it with the total health of the player (before the hit).
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)