Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<eof> expected near 'end'

I'm using these files in my gaming server, and every time I add a new player model, I get

this error

[ERROR] lua/autorun/server/fastdlskins.lua:938: '<eof>' expected near 'end'
  1. unknown - lua/autorun/server/fastdlskins.lua:0

I also get a similar error when I add an add-on to a different file

img

 [ERROR] lua/autorun/server/workshopitems.lua:55: '<eof>' expected near 'end'
   1. unknown - lua/autorun/server/workshopitems.lua:0

I usually just have to put an 'end' after the code, but I don't see what else I'm required to do. I don't have any loops running (I think), so I'm not closing any of those out. Not sure what to do.

like image 598
noobiecderssss Avatar asked Dec 10 '25 05:12

noobiecderssss


1 Answers

As Egor said, remove the extra end at the end of the files.

end is only used to close blocks for functions and loops, like } in C-like languages. The end at the file is not closing anything, and is thus invalid syntax.

like image 79
Colonel Thirty Two Avatar answered Dec 12 '25 05:12

Colonel Thirty Two



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!