- Версия SA-MP
-
- Любая
Хочу сделать вх на обьект олени, медведи зная их айди делал так:
if oxota_wh then
for _, value in ipairs(getAllChars()) do
if value ~= PLAYER_PED and doesCharExist(value) then
local modelid = getCharModel(value)
if isCharOnScreen(value) then
if modelid == 15555 or modelid == 15556 then
local x,y,z = getCharCoordinates(playerPed)
local posX,posY,posZ = getCharCoordinates(value)
local X,Y = convert3DCoordsToScreen(x, y, z)
local _X,_Y = convert3DCoordsToScreen(posX, posY, posZ)
renderDrawLine(X,Y,_X,_Y,2,-1)
renderFontDrawText(font,'Зверь!',_X,_Y,-1)
end
end
end
end
end
Но при запуске чекбокса перестает работать выдает варнинг в чат и меню не открывается(
if oxota_wh then
for _, value in ipairs(getAllChars()) do
if value ~= PLAYER_PED and doesCharExist(value) then
local modelid = getCharModel(value)
if isCharOnScreen(value) then
if modelid == 15555 or modelid == 15556 then
local x,y,z = getCharCoordinates(playerPed)
local posX,posY,posZ = getCharCoordinates(value)
local X,Y = convert3DCoordsToScreen(x, y, z)
local _X,_Y = convert3DCoordsToScreen(posX, posY, posZ)
renderDrawLine(X,Y,_X,_Y,2,-1)
renderFontDrawText(font,'Зверь!',_X,_Y,-1)
end
end
end
end
end
Но при запуске чекбокса перестает работать выдает варнинг в чат и меню не открывается(