WoW:API UnitInVehicle: Difference between revisions
Jump to navigation
Jump to search
(New page: {{wowapi}} Checks whether a specified unit is within an vehicle. == Arguments == ("unit") '''unit''' - the Unit to check == Returns == isTrue '''isTrue''' - return...) |
m (→Example) |
||
Line 12: | Line 12: | ||
== Example == | == Example == | ||
if UnitInVehicle("target") then | |||
SendChatMessage("My Target is in a vehicle.", "SAY"); | |||
else | |||
SendChatMessage("My Target is not in a vehicle.", "SAY"); | |||
end | |||
== Result == | |||
Says "My Target is in a vehicle." if the target is in a vehicle, "My Target is not in a vehicle." otherwise. | |||
[[Category:World of Warcraft API]] | [[Category:World of Warcraft API]] |
Revision as of 03:40, 20 April 2009
← WoW API < UnitInVehicle
Checks whether a specified unit is within an vehicle.
Arguments
("unit")
unit - the Unit to check
Returns
isTrue isTrue - returns 1 if the specified unit is in a vehicle, nil otherwise.
Example
if UnitInVehicle("target") then SendChatMessage("My Target is in a vehicle.", "SAY"); else SendChatMessage("My Target is not in a vehicle.", "SAY"); end
Result
Says "My Target is in a vehicle." if the target is in a vehicle, "My Target is not in a vehicle." otherwise.