- 715
- 129
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Lua:
script_name('123')
script_author('123')
script_description('cmd')
require "lib.moonloader"
local keys = require "vkeys"
local main_color = 0xFFFF00
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
while true do
wait(0)
if isKeyJustPressed(VK_F3) then
sampAddChatMessage("/phone", main_color)
end
end