Can anyone help fix

Dzemaloidas

Новичок
Автор темы
7
0
Версия MoonLoader
Другое
Maybe you can help when the game starts it shows "[ML] (error) nelysti.lua: Script died due to an error. (1435A8D4)"
 

Вложения

  • abcd.lua
    366 байт · Просмотры: 6

YarikVL

Известный
Проверенный
4,738
1,816
Maybe you can help when the game starts it shows
You don’t have examination of available samp. Correct example with examination of samp:
function main() while not isSampAvailable() do wait(100) end while true do wait(0) end
"[ML] (error) nelysti.lua: Script died due to an error. (1435A8D4)"
This error don’t tell us anything information, please send a file: "moonloader.log" in your folder: "moonloader"
 

Dzemaloidas

Новичок
Автор темы
7
0
You don’t have examination of available samp. Correct example with examination of samp:
function main() while not isSampAvailable() do wait(100) end while true do wait(0) end

This error don’t tell us anything information, please send a file: "moonloader.log" in your folder: "moonloader"
ML] (error) abcd.lua: C:\Users\lukys\Desktop\GTA BY SYL\moonloader\abcd.lua:7: attempt to index global 'sampev' (a nil value)
stack traceback:
C:\Users\lukys\Desktop\GTA BY SYL\moonloader\abcd.lua:7: in main chunk
[ML] (error) abcd.lua: Script died due to an error. (0F51028C)
 

Z3roKwq

Известный
291
154
ML] (error) abcd.lua: C:\Users\lukys\Desktop\GTA BY SYL\moonloader\abcd.lua:7: attempt to index global 'sampev' (a nil value)
stack traceback:
C:\Users\lukys\Desktop\GTA BY SYL\moonloader\abcd.lua:7: in main chunk
[ML] (error) abcd.lua: Script died due to an error. (0F51028C)
You are trying to use a function from a non-connected library, before main add local sampev = require('samp.events')
 
  • Нравится
Реакции: YarikVL