SetVehicleDummyPosition

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 sets the position of the dummy for the given vehicle.

Syntax

bool setVehicleDummyPosition ( vehicle theVehicle, string dummy, float x, float y, float z )

OOP Syntax Help! I don't understand this!

Method: vehicle:setDummyPosition(...)
Counterpart: getVehicleDummyPosition


Required Arguments

  • theVehicle: The vehicle you want to set the dummy position for.
  • dummy: The dummy whose position you want to set.
  • x, y, z The new dummy position.

Allowed Dummies

  • light_front_main: Primary front lights position.
  • light_rear_main: Primary rear lights position.
  • light_front_second: Secondary front lights position.
  • light_rear_second: Secondary rear lights position.
  • seat_front: Front seat position.
  • seat_rear: Rear seat position.
  • exhaust: Exhaust fumes start position.
  • engine: Engine smoke start position.
  • gas_cap: Vehicle gas cap position (shooting it will explode vehicle).
  • trailer_attach: Point at which trailers will be attached to vehicle.
  • hand_rest: Point at which the steer of a bike is held.
  • exhaust_second: Secondary exhaust position (for example in NRG-500)
  • wing_airtrail: Point from which air trail will show in airplanes, visible while in sharp turns.
  • veh_gun: Vehicle gun position (ex. Rustler).

Returns

Returns true if the dummy position has been successfully set, false otherwise.

Example

Accessories-text-editor.png Script Example Missing Function SetVehicleDummyPosition needs a script example, help out by writing one.

Before submitting check out Editing Guidelines Script Examples.


Requirements

Minimum server version n/a
Minimum client version 1.5.8-9.20797

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.8-9.20797" />

See Also