Не работает скрипт

D

deleted-user-491390

Гость
Автор темы
Версия SA-MP
  1. Любая
Почему-то не работет скрипт
сампфункс жалуется на sampSendChat

Код

require "lib.moonloader"
local keys = require "vkeys"
local tag = "[BEBRA]: "

function main()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end

sampAddChatMessage(tag .. "{FFC0CB}Тестовый скрипт успешно запущен", 0xFFFF00)

while true do
wait(0)

if isKeyDown(VK_1) and isKeyJustPressed(VK_2)
sampSendChat("/healme")
end
end
end
 

Вложения

  • bebra.lua
    442 байт · Просмотры: 2
Последнее редактирование модератором:

srostok294

Участник
98
14
Так, а что я делать должен ?
Lua:
require "lib.moonloader"
local keys = require "vkeys"
local tag = "[BEBRA]: "

function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(100) end
    
    sampAddChatMessage(tag .. "{FFC0CB}Тестовый скрипт успешно запущен", 0xFFFF00)
    
    while true do wait(0)
        if isKeyDown(VK_1) and isKeyJustPressed(VK_2)
            sampSendChat("/healme")
        end
    end
end
попробуй
 
  • Нравится
Реакции: deleted-user-491390