чё то менюшка не создаёться

mark0005675

Участник
Автор темы
30
3
Версия MoonLoader
.026-beta
Чё за ***** пытаюсь создать меню ебашит эту х***
C:\SAMP\moonloader\Ñîêð. êîìàíä äëÿ àäìèíîâ 1.lua:76: in function <C:\SAMP\moonloader\Ñîêð. êîìàíä äëÿ àäìèíîâ 1.lua:74>
[ML] (error) Admin Tool äëÿ àäìèíîâ. Wol | RPG : Script died due to an error. (18BF45DC)

Код:
 function cmenu()
    sampShowDialog(343, '{F7FE2E}Спавн машин', 'Заспавнить туризмо', "Выбрать", "Закрыть", 2)
    lua_thread.create(cmenu)
 end
 
  function cmenu()
    while true do
        wait(0)
 
 
        local result, button, listitem, input = sampHasDialogRespond(343)
 
        if result and not sampIsDialogActive() then
            if button == 0 then
                return
            end
      
            if button == 1 then
                if listitem == 0 then
                  sampSendChat('/car 451 1 1')
                  
                  
                end
              
                return
            end
        elseif not result and (not sampIsDialogClientside() or (343 ~= sampGetCurrentDialogId()) or not sampIsDialogActive()) then
            return
        end
    end
end