0
Reply

How to read a LUA file in C#

Ask a question
dtauvira03iah5s

dtauvira03iah5s

18 years ago
2.5k
1
Hello, before re-inventing the wheel ( :) ), after after some unsuccessful research, do you know if there is any library, or free code floating around to read a LUA file ? To be precise, some application (Raidtracker for World of Warcraft) saves a file LUA-scripted (or so I think, see for yourself), and I'd like to code a program that read those infos. [code] CT_RaidTracker_RaidLog = { [1] = { ["Leave"] = { [1] = { ["player"] = "player1", ["time"] = "09/18/05 23:10:19", }, [2] = { ["player"] = "player2", ["time"] = "09/18/05 23:14:46", }, }, ["Notes"] = { }, ["Loot"] = { [1] = { }, [2] = { ["player"] = "Papuasu", ["item"] = { ["type"] = "Other", }, }, }, } [/code] Thanks a lot.