Advertisement
Guest User

RAW CF1 OP Killer

a guest
Apr 4th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.88 KB | None | 0 0
  1. ; raw-cf1.au3
  2. ; force raw and CF1 for SSB in Project64k
  3.  
  4. #include <Constants.au3>
  5. #include <Inet.au3>
  6.  
  7. $SCRIPT_NAME = "RAW CF1 OP Killer"
  8.  
  9. $PJ64_RDB = "Project64.rdb"
  10. $NRAGE_INI = "Plugin/NRage.ini"
  11.  
  12. IniWrite($PJ64_RDB, "DD26FDA1-CB4A6BE3-C:55", "Counter Factor", "1")
  13. IniWrite($PJ64_RDB, "93945F48-5C0F2E30-C:50", "Counter Factor", "1")
  14. IniWrite($PJ64_RDB, "916B8B5B-780B85A4-C:45", "Counter Factor", "1")
  15.  
  16. IniWrite($NRAGE_INI, "Controller 1", "RawData", "1")
  17. IniWrite($NRAGE_INI, "Controller 2", "RawData", "1")
  18. IniWrite($NRAGE_INI, "Controller 3", "RawData", "1")
  19. IniWrite($NRAGE_INI, "Controller 4", "RawData", "1")
  20.  
  21. Local $CD_TRAY = DriveGetDrive($DT_CDROM)
  22. if @error Then
  23.     MsgBox($MB_OK, $SCRIPT_NAME, "Netplay is ready, get your own damn coaster")
  24. else
  25.     CDTray($CD_TRAY[1], $CDTRAY_OPEN)
  26.     MsgBox($MB_OK, $SCRIPT_NAME, "Netplay is ready, place drink in CD Tray")
  27. EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement