- 43
- 4
- Версия MoonLoader
- .027.0-preview
Добрый день дорогие все форумные люди, сегодня столкнулся с такой проблемой хотел сделать Render Линий и текста на текст, но есть одна загвостка.
Мне надо только чтобы рендарилось на эту ферму а на другую не надо, есть какое нибудь решение нижу приложу код.
Мне надо только чтобы рендарилось на эту ферму а на другую не надо, есть какое нибудь решение нижу приложу код.
lua:
local ev = require 'lib.samp.events'
function main()
sampAddChatMessage('Fermer Bot | Успешно загружен!',-1)
sampRegisterChatCommand('fermer',command_state)
while true do wait(0)
if state then
for id = 0, 2048 do
if sampIs3dTextDefined(id) then
local text, color, posX, posY, posZ, distance, ignoreWalls, player, vehicle = sampGet3dTextInfoById(id)
if text:find("можно собрать") then
if isPointOnScreen(posX, posY, posZ, 1) then
local x, y, z = getCharCoordinates(1)
local xx, yy = convert3DCoordsToScreen(x, y, z)
local px, py = convert3DCoordsToScreen(posX, posY, posZ)
renderDrawLine(xx, yy, px, py, 3, 0xff4343c9)
end
end
end
end
end
end
end
function command_state()
state = not state
if state then
else
end
end