- 278
- 34
- Версия MoonLoader
- .027.0-preview
Пацаны, я не могу понять, как получить объекты при включении команды?
lua:
local veh = {}
act = false
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("testt", function() act = not act end)
if act then
end
wait(-1)
end
if act then
for _, obj in pairs(getAllObjects()) do
if getObjectModel(obj) == 864 then
sampAddChatMessage("ep", -1)
end
end
end