Hi forxtra, I forget, are you happy with dll plugin? If so, maybe you could construct a script implementing:
declare a WIN32_FIND_DATAA (DWORD [11], CHAR cFileName[274]) called e.g.
findFileData
then
local hFind = FindFirstFileA("path_to_your_vars.ini", &findFileData)
FindClose(hFind);
win.debug(hFind)
local hFind = FindFirstFileA("path_to_your_plugins.ini", &findFileData)
FindClose(hFind);
win.debug(hFind)
if you're not happy with dll plugin, I'll get around to making script for you
soon.
