drawCorona(float atX, float atY, float atZ, float radius, int type, bool lensflares, int r, int g, int b)
Рисует корону на заданных координатах с заданным типом и цветом
float atX, float atY, float atZ
координаты
float radius
радиус
int type
тип короны
bool lensflares
флаг, влияющий на отображение бликов
int r, int g, int b
цвет в RGB
while true do local x, y, z = getCharCoordinates(PLAYER_PED) drawCorona(x, y, z, 0.5, 1, true, 255, 0, 0) wait(0) end