- 436
- 70
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
- Версия MoonLoader
- Другое
Скажите что не так? При отправки команды /asd Пишет вот такое Screen
Lua:
script_name("first script by Morse")
script_author("Morse")
script_description("Check")
require "lib.moonloader"
local tag = "Script by"
local tag1 = "Morse"
local main_color = 0x0000FF
local mail_color_text = "{0000FF}"
local white_color = "{FFFFFF}"
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("asd", cmd_asd)
sampAddChatMessage(tag, 0x0000FF)
sampAddChatMessage(tag1, 0x0000FF)
while true do
wait(0)
end
end
function cmd_asd(arg)
sampAddChatMessage("MorseScript {0x0000FF} /asd", main_color)
end