- Версия MoonLoader
- .026-beta
Как сделать дым? Функция не работает. Должно просто создать дым на координатах игрока. Другие значения позиции, скорости, цвета, размера, множителя ни к чему не приводят. Та же самая функция в Cleo работает без проблем. MoonLoader 026, чистая игра и всё тоже самое.
Lua:
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(0) end
while true do wait (0)
local x, y, z = getCharCoordinates(PLAYER_PED)
--addSmokeParticle(float atX, float atY, float atZ, float velocityX, float velocityY, float velocityZ, int r, int g, int b, int a, float size, float factor) -- 095C
--095C: add_smoke_particle 1@ 2@ 3@ velocity 0.15 0.15 -1.0 rgba 1.0 0.0 0.0 1.0 size 0.5 last_factor 0.8
addSmokeParticle(x, y, z, 0.15, 0.15, -1.0, 1.0, 0.0, 0.0, 1.0, 0.5, 0.8)
end
end