SetPedHeadless: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(New page: __NOTOC__ {{Client function}} With this function, you can set if a ped has a head or not. ==Syntax== <syntaxhighlight lang="lua">bool setPedHeadless ( ped thePed )</syntaxhighlight> ===Required Arguments=== *'''t...)
 
m (t)
 
(14 intermediate revisions by 13 users not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{Client function}}
{{Server client function}}
With this function, you can set if a ped has a head or not.
With this function, you can set if a ped has a head or not.
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">bool setPedHeadless ( ped thePed )</syntaxhighlight>
<syntaxhighlight lang="lua">
bool setPedHeadless(ped thePed, bool headState)
</syntaxhighlight>
[[File:Headless.png|thumb|exmaple]]
{{OOP||[[ped]]:setHeadless|headless}}


===Required Arguments===
===Required Arguments===
*'''thePed''': The [[ped]] to check.
*'''thePed''': The [[ped]] to check.
*'''headState''': head state, use true if you want the ped be headless, use false to give back the head.


===Returns===
===Returns===
Line 12: Line 17:


==Example==
==Example==
<section class="client" name="Client" show="true">
<section name="Server" class="server" show="true">
TODO
This example enables a player to behead themselves (or give themselves their head back)
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO
function beheadMe(p, cmd)
local hasHead = not isPedHeadless(p)
 
if hasHead then
setPedHeadless(p, true) -- Remove head
outputChatBox("You have been beheaded!", p, 255, 0, 0) -- A confirmation message for the player
else
setPedHeadless(p, false) -- Restore head
outputChatBox("You have been given a head!", p, 255, 0, 0) -- A confirmation message for the player
end
end
addCommandHandler("togglehead", beheadMe)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 21: Line 37:
==See Also==
==See Also==
{{Ped functions}}
{{Ped functions}}
[[ru:setPedHeadless]]

Latest revision as of 06:55, 23 August 2021

With this function, you can set if a ped has a head or not.

Syntax

bool setPedHeadless(ped thePed, bool headState)
exmaple

OOP Syntax Help! I don't understand this!

Method: ped:setHeadless(...)
Variable: .headless


Required Arguments

  • thePed: The ped to check.
  • headState: head state, use true if you want the ped be headless, use false to give back the head.

Returns

Returns true if successful, false otherwise

Example

Click to collapse [-]
Server

This example enables a player to behead themselves (or give themselves their head back)

function beheadMe(p, cmd)
	local hasHead = not isPedHeadless(p)

	if hasHead then
		setPedHeadless(p, true) -- Remove head
		outputChatBox("You have been beheaded!", p, 255, 0, 0) -- A confirmation message for the player
	else
		setPedHeadless(p, false) -- Restore head
		outputChatBox("You have been given a head!", p, 255, 0, 0) -- A confirmation message for the player
	end
end
addCommandHandler("togglehead", beheadMe)

See Also