как сделать рендер на скин

Решение
Lua:
local Font = renderCreateFont('Trebuchet MS', 13, 5)

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        for _, ped in ipairs(getAllChars()) do
            if isCharOnScreen(ped) and getCharModel(ped) == ИД СКИНА then
                local x, y = convert3DCoordsToScreen(getCharCoordinates(ped))
                renderFontDrawText(Font, 'ПИДАРАС', x, y, -1)
            end
        end
    end
end

chapo

чопа сребдс // @moujeek
Модератор
8,868
11,576
Lua:
local Font = renderCreateFont('Trebuchet MS', 13, 5)

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        for _, ped in ipairs(getAllChars()) do
            if isCharOnScreen(ped) and getCharModel(ped) == ИД СКИНА then
                local x, y = convert3DCoordsToScreen(getCharCoordinates(ped))
                renderFontDrawText(Font, 'ПИДАРАС', x, y, -1)
            end
        end
    end
end
 
Последнее редактирование:

Vespan

Чешский луашер
Проверенный
2,119
1,720
В чем проблема найти рендер с открытым кодом и зайти туда?
 
  • Нравится
Реакции: hanzohasani

Lance_Sterling

Известный
963
336
Lua:
local Font = renderCrateFont('Trebuchet MS', 13, 5)

function main()
    while not isSampAvailable() do wait(0) end
    while true do
        wait(0)
        for _, ped in ipairs(getAllChars()) do
            if isCharOnScreen(ped) and getCharModel(ped) == ИД СКИНА then
                local x, y = convert3DCoordsToScreen(getCharCoordinates(ped))
                renderFontDrawText(Font, 'ПИДАРАС', x, y, -1)
            end
        end
    end
end
renderCreateFont('Trebuchet MS', 13, 5)
 
  • Нравится
Реакции: hanzohasani

kyrtion

Известный
904
321
как сделать рендер на скин?
Может это? Надеюсь сам управишься с кодом
 
  • Нравится
Реакции: hanzohasani