Hi, so what does it mean when a lua error says "unfinished string near ______". Like what do you have to do to fix it? ex.: [ERROR] lua/autorun/chattags.lua:19: unfinished string near '">=
It means that somewhere you have unfinished string.
[code]
local var = "this is a finished string"
local var2 = "this is an unfinished string that will error
[/code]
Sorry, you need to Log In to post a reply to this thread.