GetWindVelocity

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function gets the wind velocity in San Andreas.

[[{{{image}}}|link=|]] Note: The function will return false server-side if wind velocity has not been set before the function is called.

Syntax

int, int, int getWindVelocity ( )

Returns

  • velocityX: The velocity on the x-coordinate or false if the wind velocity is default.
  • velocityY: The velocity on the y-coordinate or nil if the wind velocity is default.
  • velocityZ: The velocity on the z-coordinate or nil if the wind velocity is default.

Example

This example returns the wind velocity to a player if they use the command 'getwindvelocity'.

function commandGetWindVelocity(player, command)
   local vx, vy, vz = getWindVelocity()
   if (vx) then
       outputChatBox("Wind Velocity X:"..vx.." Y:"..vy.." Z:"..vz, player, 255, 255, 0)
   else
       outputChatBox("Wind velocity is default.", player, 255, 255, 0)
   end
end
addCommandHandler("getwindvelocity", commandGetWindVelocity)

See Also