Перейти к основному содержимому

CreateObject

Description

Creates an object at specified coordinates in the game world.

NameDescription
modelidThe model to create.
Float:xThe X coordinate to create the object at.
Float:yThe Y coordinate to create the object at.
Float:zThe Z coordinate to create the object at.
Float:rotationXThe X rotation of the object.
Float:rotationYThe Y rotation of the object.
Float:rotationZThe Z rotation of the object.
Float:drawDistance(optional) The distance that San Andreas renders objects at. 0.0 will cause objects to render at their default distances.

Examples

public OnGameModeInit()
{
CreateObject(2587, 2001.195679, 1547.113892, 14.283400, 0.0, 0.0, 96.0); // Object will render at its default distance.
CreateObject(2587, 2001.195679, 1547.113892, 14.283400, 0.0, 0.0, 96.0, 300.0); // Object will render at 300.0 units.
return 1;
}

Notes

подсказка

There is a limit of 1000 objects (MAX_OBJECTS). To circumvent this limit, you can use the streamer plugin.