GetJetpackWeaponEnabled

From Multi Theft Auto: Wiki
Revision as of 22:38, 6 September 2024 by FileEX (talk | contribs) (→‎See Also)
Jump to navigation Jump to search

This function checks if a weapon is usable while on a Jetpack.

Syntax

bool getJetpackWeaponEnabled(string weapon)

Required Arguments

  • weapon: The weapon that's being checked if it's usable on a Jetpack.

Returns

Returns true if the weapon is enabled, else false if the weapon isn't or invalid arguments are passed.

Example

addCommandHandler("isJPEnabled",function(ped,_,wep)
	if ped then
		outputChatBox(tostring(getJetpackWeaponEnabled(wep)),ped)
	end
end)

Requirements

This template will be deleted.

See Also