Skip to content

Commit 3ee4789

Browse files
committed
add setElementHealth and getElementHealth wiki pages
1 parent 8e97753 commit 3ee4789

6 files changed

+133
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
function getMyHealth()
2+
-- output player ped health to chat
3+
outputChatBox("My health is: "..getElementHealth(localPlayer));
4+
5+
-- check if we are in a vehicle
6+
local uVehicle = getPedOccupiedVehicle(localPlayer);
7+
8+
-- if valid vehicle, output its health to chat
9+
if(uVehicle) then
10+
outputChatBox("My vehicle health is: "..getElementHealth(uVehicle));
11+
end
12+
end
13+
addCommandHandler("health", getMyHealth);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
function healMePlease()
2+
-- heal the player if health is 50 or lower
3+
if(getElementHealth(localPlayer) <= 50) then
4+
setElementHealth(localPlayer, 100);
5+
outputChatBox("You got healed!");
6+
end
7+
end
8+
addCommandHandler("healme", healMePlease);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
function setMyHealth(uPlayer, strCommand, fAmount)
2+
-- safety check if we got a valid new health value
3+
local fAmount = tonumber(fAmount);
4+
5+
if(not fAmount) then
6+
return outputChatBox("Invalid health value entered!", uPlayer, 255, 0, 0);
7+
end
8+
9+
-- change the player's health
10+
setElementHealth(uPlayer, fAmount);
11+
outputChatBox("Your health was set to "..fAmount.." HP!", uPlayer, 0, 255, 0);
12+
end
13+
addCommandHandler("sethealth", setMyHealth)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
function repairMyVehicle()
2+
-- check if we are in a vehicle
3+
local uVehicle = getPedOccupiedVehicle(localPlayer);
4+
5+
if(uVehicle) then
6+
-- does our vehicle need repair? remember, vehicle health ranges from 0 to 1000
7+
if(getElementHealth(uVehicle) < 1000) then
8+
-- note: setElementHealth does not repair the visual aspect of vehicles, use fixVehicle instead!
9+
setElementHealth(uVehicle, 1000);
10+
else
11+
outputChatBox("Your vehicle is already at full health!", 255, 0, 0);
12+
end
13+
else
14+
outputChatBox("You are not in a vehicle!", 255, 0, 0);
15+
end
16+
end
17+
addCommandHandler("repairvehicle", repairMyVehicle);
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
shared: &shared
2+
name: 'getElementHealth'
3+
oop:
4+
entity: player
5+
method: getHealth
6+
variable: health
7+
pair: 'setElementHealth'
8+
description: |
9+
This function returns the current health for the specified element. This can be a [[player]], [[ped]], [[vehicle]], or [[object]].
10+
returns:
11+
description: |
12+
Returns a *float* indicating the element's health, *false* otherwise.
13+
values:
14+
- type: 'float'
15+
name: 'health'
16+
examples:
17+
- path: 'examples/getElementHealth-1.lua'
18+
description: |
19+
This example outputs the player and vehicle health (if player is in a vehicle) to chatbox using /health command:
20+
- path: 'examples/getElementHealth-2.lua'
21+
description: |
22+
This example heals the player to 100 HP using /healme command if he's at 50 HP or lower:
23+
issues:
24+
- id: 3791
25+
description: 'setPedArmor and setElementHealth synchronization problems from Client to Server'
26+
- id: 2223
27+
description: 'setElementHealth in onClientPlayerDamage bug'
28+
- id: 1423
29+
description: 'When you setElementHealth under onClientPlayerDamage, the local (hit) player rotates automatically'
30+
31+
server:
32+
<<: *shared
33+
34+
client:
35+
<<: *shared
+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
shared: &shared
2+
name: 'setElementHealth'
3+
oop:
4+
entity: player
5+
method: setHealth
6+
variable: health
7+
pair: 'getElementHealth'
8+
description: |
9+
This function sets the health of a [[player]], [[ped]], [[vehicle]] or [[object]] element.
10+
notes:
11+
- |
12+
info: In the case of the [[vehicle]] element, the following effects appear, depending on the health value:
13+
- |
14+
- *650:* white steam 0%, black smoke 0%
15+
- *450:* white steam 100%, black smoke 50%
16+
- *250:* white steam 0%, black smoke 100%
17+
- *249:* fire with big black smoke
18+
returns:
19+
description: |
20+
Returns *true* if the new health was set successfully, *false* otherwise.
21+
values:
22+
- type: 'bool'
23+
name: 'result'
24+
examples:
25+
- path: 'examples/setElementHealth-1.lua'
26+
description: |
27+
This example changes the player health to new specified value using /sethealth <value> command:
28+
- path: 'examples/setElementHealth-2.lua'
29+
description: |
30+
This example heals the player vehicle using the command /repairvehicle if it's below 1000 HP:
31+
issues:
32+
- id: 3807
33+
description: 'hpbar on hud is not compatible visually with MAX_HEALTH stat'
34+
- id: 3791
35+
description: 'setPedArmor and setElementHealth synchronization problems from Client to Server'
36+
- id: 2223
37+
description: 'setElementHealth in onClientPlayerDamage bug'
38+
- id: 1423
39+
description: 'When you setElementHealth under onClientPlayerDamage, the local (hit) player rotates automatically'
40+
- id: 448
41+
description: 'Crash when plane explode'
42+
43+
server:
44+
<<: *shared
45+
46+
client:
47+
<<: *shared

0 commit comments

Comments
 (0)