Помогите.

G W

Участник
Автор темы
141
5
Версия MoonLoader
.026-beta
Нажимаю на ALT - крашет скрипт. В чем проблема ? Объясните понятным языком.
Screenshot_17.png
П
Lua:
require "moonloader"
local samp = require 'lib.samp.events'

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

        if isKeyJustPressed(VK_MENU) and active then
            active = false
            sampAddChatMessage('/mute '..testId..' 15 test')
        end

    wait(0)
    end
end

function samp.onServerMessage(color, text)
    testId, msg = text:match('.+%[(%d+)%]: (.+)')
    if color == -849584982 and sampIsPlayerConnected(tonumber(testId)) then
        sampAddChatMessage('Чтобы выдать мут игроку нажмите "CTRL. Чтобы выдать бан игроку нажмите "ALT"', -1)
        active = true
    end
end
 
Решение
Нажимаю на ALT - крашет скрипт. В чем проблема ? Объясните понятным языком.
Посмотреть вложение 59067П
Lua:
require "moonloader"
local samp = require 'lib.samp.events'

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

    while true do

        if isKeyJustPressed(VK_MENU) and active then
            active = false
            sampAddChatMessage('/mute '..testId..' 15 test')
        end

    wait(0)
    end
end

function samp.onServerMessage(color, text)
    testId, msg = text:match('.+%[(%d+)%]: (.+)')
    if color == -849584982 and sampIsPlayerConnected(tonumber(testId)) then
        sampAddChatMessage('Чтобы выдать мут игроку нажмите "CTRL. Чтобы выдать бан...

neverlane

t.me/neverlane00
Друг
1,010
1,163
Нажимаю на ALT - крашет скрипт. В чем проблема ? Объясните понятным языком.
Посмотреть вложение 59067П
Lua:
require "moonloader"
local samp = require 'lib.samp.events'

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

    while true do

        if isKeyJustPressed(VK_MENU) and active then
            active = false
            sampAddChatMessage('/mute '..testId..' 15 test')
        end

    wait(0)
    end
end

function samp.onServerMessage(color, text)
    testId, msg = text:match('.+%[(%d+)%]: (.+)')
    if color == -849584982 and sampIsPlayerConnected(tonumber(testId)) then
        sampAddChatMessage('Чтобы выдать мут игроку нажмите "CTRL. Чтобы выдать бан игроку нажмите "ALT"', -1)
        active = true
    end
end
Lua:
require "moonloader"
local samp = require 'lib.samp.events'
gmuteid = -1
function main()
    if not isSampLoaded() or not isSampfuncsLoaded() then return end
    while not isSampAvailable() do wait(2000) end
 
    while true do

        if isKeyJustPressed(VK_MENU) and active and gmuteid > -1 then
            active = false
            sampAddChatMessage('/mute '..gmuteid..' 15 test')
        end

    wait(0)
    end
end

function samp.onServerMessage(color, text)
    testId, msg = text:match('.+%[(%d+)%]: (.+)')
    if color == -849584982 and sampIsPlayerConnected(tonumber(testId)) then
        sampAddChatMessage('Чтобы выдать мут игроку нажмите "CTRL. Чтобы выдать бан игроку нажмите "ALT"', -1)
        gmuteid = testId
        active = true
    end
end
 
  • Нравится
Реакции: G W