So I was thinking, while the system insim being cool. It isn't great for huge servers. Lots of traffic going back and forth.
Anyways... I was thinking of adding lua to LFS dedi (Building it right in so there is no connection needed). Would anyone be interested in this?
An example of how it would work.
Just wondering if anyone is interested in this. If not then I wont bother.
Q: How will I connect to mysql?
A: I would add module support so that you can create your own dll to use with it. (mysql would be a default module of course)
Q: I don't want to use lua.
A: I am still figuring out what to use. I might allow C++ too. Or use C++ instead. Let me know what you want.
Please post comments/questions.
Anyways... I was thinking of adding lua to LFS dedi (Building it right in so there is no connection needed). Would anyone be interested in this?
An example of how it would work.
function MSO(mso)
local msg = string.Sub(mso.Msg,mso.TextStart, (mso.Msg.Length - mso.TextStart))
if (msg == "hi") then
insim.Send_MST_Message("/msg hi")
end
end
hook.Add("MSO","MSOhook",MSO)
Just wondering if anyone is interested in this. If not then I wont bother.
Q: How will I connect to mysql?
A: I would add module support so that you can create your own dll to use with it. (mysql would be a default module of course)
Q: I don't want to use lua.
A: I am still figuring out what to use. I might allow C++ too. Or use C++ instead. Let me know what you want.
Please post comments/questions.