addToWorld

Function Server and Client icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline

Available since Server 1.0.0, Client 1.0.0

void addToWorld(Element element)

The addToWorld function is used to add the element to the game.
This function no longer needs to be called.

Parameters

1) Element element The element to add to the game.

Return

void This function doesn't return a value.

Notes

Examples

Example 1 - JavaScript - Server-Side:

addCommandHandler('vehicle', function(command, parameters, client) {

   if(client.player && parameters.trim() != ) // ensure player is spawned and input text isn't blank
   {
       var model = parseInt(parameters);
       var vehicle = createVehicle(model, client.player.position);
       addToWorld(vehicle); // currently, if the element is created client-side, this line of code isn't needed.
   }

});

Compatibility

  • This function was previously named game.addToWorld in version 1.0.71.

Related

Server Related

        addToWorld


Client Related

        addToWorld
      gta.findGroundZCoordinate
      gta.findRoofZCoordinate
      gta.gravity
    gta.moonSize
        removeFromWorld