--[[Options
if not Import(GetCurrentPath() .. "\\Scripts\\libSimpleOptions.llf") then
DownloadAndSaveFile('http://www.playonscripts.com/?w=files&get=w1oqw40g1a', GetCurrentPath() .. "\\Scripts\\libSimpleOptions.llf")
Import(GetCurrentPath() .. "\\Scripts\\libSimpleOptions.llf")
end
local so = SimpleOptions:new()
so:Update(2); --this code requires version 2
local tblDefaults = {
username = "",
password = "",
}
local tblOptions = {
"Username:", "username",
"Password:", { name = "password", UseSystemPasswordChar = true }
}
return so:Build(tblDefaults, tblOptions)
EndOptions]]--