- 14
- 1
Привет, форумчане, решил я чет полазить поискать акс ремувер, но вот не задача - аризона насрала своими аксами которые не хукаются. Если есть талантливые кодеры, которые смогу помочь с решением проблемы буду очень благодарен.
Все айдишники с arz - https://items.shinoa.tech/
Взял за основу скрипт от Black bird но ничего не получилось, подискусировал пару часиков с Chat GPT тоже ничего. Спасибо.
Все айдишники с arz - https://items.shinoa.tech/
Взял за основу скрипт от Black bird но ничего не получилось, подискусировал пару часиков с Chat GPT тоже ничего. Спасибо.
Lua:
local sampev = require("samp.events")
local enabled = false
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand('delaks', function()
enabled = not enabled
sampAddChatMessage(enabled and '{ffffff}Accessory removal {19ff1d}enabled' or '{ffffff}Accessory removal {19ff1d}disabled', -1)
end)
end
function sampev.onSetPlayerAttachedObject(playerId, index, create, object)
if enabled then
if (object.bone == 5) or (object.bone == 6) then
return {playerId, index, create, object}
else
if object.modelId >= 1 and object.modelId <= 7701 then
return false
end
if #WhiteAccessories > 0 then
for _, val in ipairs(WhiteAccessories) do
if (object.modelId == val) then
return {playerId, index, create, object}
end
end
end
if create == true then
return false
else
return {playerId, index, create, object}
end
end
end
end
Последнее редактирование: