if ComboBox.GetText("Mode") == "Normal" then
-- action here
JLR.RunFile("Autoplay\\Docs\\normal.bat", true);
-- or
-- File.Run("Autoplay\\Docs\\normal.bat", "", _SourceFolder, SW_SHOWNORMAL, true);
end
if ComboBox.GetText("Mode") == "Zombie" then
-- action here
JLR.RunFile("Autoplay\\Docs\\zb.bat", true);
end
if ComboBox.GetText("Mode") == "Team DM" then
-- action here
JLR.RunFile("Autoplay\\Docs\\tdm.bat", true); -- lệnh này sẽ gọi file tdm.bat đc trích ra từ file chuyển cũ (tham khảo CSO-NST)
end