SetVehicleDoorsUndamageable: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(OOP)
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
__NOTOC__  
__NOTOC__  
{{Server client function}}
{{Server client function}}
This function is used to make a cars doors undamageable.
This function makes a vehicle's doors undamageable, so they won't fall off when they're hit. Note that the vehicle '''has''' to be locked using [[setVehicleLocked]] for this setting to have any effect.


==Syntax==  
==Syntax==  
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool setVehicleDoorsUndamageable ( vehicle thevehicle, bool state )
bool setVehicleDoorsUndamageable ( vehicle theVehicle, bool state )
</syntaxhighlight>  
</syntaxhighlight>  
 
{{OOP||[[vehicle]]:setDoorsUndamageable|doorsUndamageable}}
===Required Arguments===  
===Required Arguments===
*'''thevehicle:''' The vehicle of which you wish to set the car door damageability.
*'''theVehicle:''' The [[vehicle]] of which you wish to set the car door damageability.
*'''state:''' ''true'' or ''false''.
*'''state:''' A boolean denoting whether the vehicle's doors are undamageable (''true'') or damageable (''false'').


===Returns===
===Returns===
Returns ''true'' if successful, ''false'' otherwise.
Returns ''true'' if the damageability state was successfully changed, ''false'' if invalid arguments were passed.


==Example==  
==Example==
<!-- Explain what the example is in a single sentance -->
Here you can disable all vehicles doors damage with /nodamage, and enable it with /adddamage.
This example does...
<!-- Add the code below, an emphasis should be on making it clear, not optimized. You could provide two versions if you wish, one clear and well commented, the other optimized -->
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
function doorsLikeGod()
blabhalbalhb --abababa
for i, car in ipairs( getElementsByType ("vehicle") ) do
--This line does this...
setVehicleDoorsUndamageable ( car, true )
mooo
end
outputChatBox("All vehicles doors is not damageable")
end
addCommandHandler("nodamage", doorsLikeGod)
 
function doorsNotLikeGod()
for i, car in ipairs( getElementsByType ("vehicle") ) do
setVehicleDoorsUndamageable ( car, false )
end
outputChatBox("Now everyone can kick vehicles doors and throw them away.")
end
addCommandHandler("adddamage", doorsNotLikeGod)
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
<!-- Change FunctionArea to the area that this function is in on the main function list page, e.g. Server, Player, Vehicle etc -->
{{Vehicle functions}}
{{FunctionArea_functions}}
[[Category:Incomplete]] -- leave this unless you complete the function

Latest revision as of 23:30, 17 December 2014

This function makes a vehicle's doors undamageable, so they won't fall off when they're hit. Note that the vehicle has to be locked using setVehicleLocked for this setting to have any effect.

Syntax

bool setVehicleDoorsUndamageable ( vehicle theVehicle, bool state )

OOP Syntax Help! I don't understand this!

Method: vehicle:setDoorsUndamageable(...)
Variable: .doorsUndamageable


Required Arguments

  • theVehicle: The vehicle of which you wish to set the car door damageability.
  • state: A boolean denoting whether the vehicle's doors are undamageable (true) or damageable (false).

Returns

Returns true if the damageability state was successfully changed, false if invalid arguments were passed.

Example

Here you can disable all vehicles doors damage with /nodamage, and enable it with /adddamage.

function doorsLikeGod()
	for i, car in ipairs( getElementsByType ("vehicle") ) do
		setVehicleDoorsUndamageable ( car, true )
	end
	outputChatBox("All vehicles doors is not damageable")
end
addCommandHandler("nodamage", doorsLikeGod)

function doorsNotLikeGod()
	for i, car in ipairs( getElementsByType ("vehicle") ) do
		setVehicleDoorsUndamageable ( car, false )
	end
	outputChatBox("Now everyone can kick vehicles doors and throw them away.")
end
addCommandHandler("adddamage", doorsNotLikeGod)

See Also