- 2,139
- 1,782
Можно код:
Допустим,я пишу мини биндер,с .ini файлом.И что я написал в .ini файле то в игре появлялось спомочью активации
Допустим,я пишу мини биндер,с .ini файлом.И что я написал в .ini файле то в игре появлялось спомочью активации
Lua:
require "lib.moonloader"
function main()
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage('Успешно загрузился!', 0x00DD00)
print('{00FF00}Успешно!')
while true do
wait(0)
if isKeyJustPressed(VK_MENU) and isKeyDown(VK_U) then
sampProcessChatInput('')
end
end