Jump to content
  • 0

unfinished long string (iteminfo.lua)


AsuraBro

Question


  • Group:  Members
  • Topic Count:  19
  • Topics Per Day:  0.01
  • Content Count:  74
  • Reputation:   3
  • Joined:  07/12/14
  • Last Seen:  

i just edited my iteminfo.lua and add some custom items and they did work perfect.

 

but when i start the client it give's me this massge.

 

system/iteminfo.lua:226361: unfinished long string near '<eof>'

 

and when i did check it was like this.

 

inside iteminfo.lua

    },
    
}
main = function()
        for ItemID,DESC in pairs(tbl) do
                result, msg = AddItem(ItemID, DESC.unidentifiedDisplayName, DESC.unidentifiedResourceName, DESC.identifiedDisplayName, DESC.identifiedResourceName, DESC.slotCount, DESC.ClassNum)
                if not result then
                        return false, msg
                end
                for k,v in pairs(DESC.unidentifiedDescriptionName) do
                        result, msg = AddItemUnidentifiedDesc(ItemID, v)
                        if not result then
    return false, msg
                        end
                end
                for k,v in pairs(DESC.identifiedDescriptionName) do
                        result, msg = AddItemIdentifiedDesc(ItemID, v)
                        if not result then
    return false, msg
                        end
                end
        end
        return true, "good"
 end

 

whats wrong?

iam using client 2013-08-07

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  7
  • Topics Per Day:  0.00
  • Content Count:  16
  • Reputation:   0
  • Joined:  05/04/17
  • Last Seen:  

I have the same problem anyone can help?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...