Guest User

Untitled

a guest
Jul 9th, 2023
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.38 KB | None | 0 0
  1. local kb = libs.keyboard;
  2.  
  3. -- Documentation
  4. -- http://www.unifiedremote.com/api
  5.  
  6. -- OS Library
  7. -- http://www.unifiedremote.com/api/libs/os
  8.  
  9.  
  10. --@help randomAll
  11. actions.randomAll = function ()
  12.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -t Original Nineties NuTrek");
  13. end
  14.  
  15. --@help randomNineties
  16. actions.randomNineties = function ()
  17.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -t Nineties");
  18. end
  19.  
  20. --@help randomTng
  21. actions.randomTng = function ()
  22.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -s TNG");
  23. end
  24.  
  25. --@help randomDs9
  26. actions.randomDs9 = function ()
  27.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -s DS9");
  28. end
  29.  
  30. --@help randomVoy
  31. actions.randomVoy = function ()
  32.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -s Voyager");
  33. end
  34.  
  35. --@help randomEnt
  36. actions.randomEnt = function ()
  37.     os.start("C:\\Users\\username\\source\\repos\\StarTrekRandomizer\\StarTrekRandomizer\\bin\\Release\\net6.0\\StarTrekRandomizer.exe -s Enterprise");
  38. end
  39.  
  40.  
Advertisement
Add Comment
Please, Sign In to add comment