Advertisement
Guest User

launch

a guest
Mar 7th, 2013
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.34 KB | None | 0 0
  1. ; launch.xex V3.0 config file
  2. ; parsed by simpleIni http://code.jellycan.com/simpleini/
  3. ; currently supported devices and paths:
  4. ; internal hard disk Hdd:\
  5. ; usb memory stick Usb:\
  6. ; memory unit Mu:\
  7. ; USB memory unit UsbMu:\
  8. ; big block NAND mu FlashMu:\
  9. ; internal slim 4G mu IntMu:\
  10. ; internal corona 4g mu MmcMu:\
  11. ; CD/DVD Dvd:\ (not recommended to use this one)
  12. ; buttons can point to any xex, or any CON with default.xex in it on any of the above devices
  13. ; note that Right Bumper is ALWAYS default to return NXE
  14. ; if you want to assign an additional one, use the path Sfc:\dash.xex ie:
  15. ; BUT_A = Sfc:\dash.xex
  16.  
  17.  
  18. ; all comments and fields in this file are optional, you can remove anything you don't need
  19. ; sorry for any double negatives :p
  20. ; njoy, cOz
  21.  
  22. ; example entry
  23. ; Default = Hdd:\FreeStyle\default.xex
  24. [Paths]
  25. BUT_A =
  26. BUT_B =
  27. BUT_X =
  28. BUT_Y =
  29. Start =
  30. Back =
  31. LBump =
  32. RThumb =
  33. LThumb =
  34.  
  35. ; Default is what loads when you hold no buttons
  36. ; leave this blank if you want NXE as default
  37. Default = Usb:\Freestyle3\Default.xex
  38.  
  39. ; at boot time, default can be overridden based on how the console is turned on
  40. ; if you start with wired/wireless/IR guide button, this item if existing will be used instead of default
  41. ; note that the Guide item is ALWAYS overridden by option: remotenxe = true
  42. Guide =
  43.  
  44. ; if you power on with the button on the front of the console (or the power button on a remote if remotenxe is not set to true)
  45. ; this item will be used instead of default
  46. Power =
  47.  
  48. ; if set, going to system settins from HUD will run this app, override with Right Bumper
  49. Configapp =
  50.  
  51. ; if set, this will be run as a title before any other option occurs, does not get circumvented by held buttons or default
  52. ; guide/power opts are processed after this; intended for a short video player to allow replacing bootanim
  53. Fakeanim = Hdd:\fakeanim\fakeanim.xex
  54.  
  55. ; by default this only dumps to UART, setting a file here will cause unhandled exception info to be dumped
  56. ; as text to a file. Same path restraints as the quick launch buttons.
  57. ; if exchandler is set to false, this option does nothing.
  58. ; note that this uses the first drive of the class found, so if you use usb: and have more than one usb device
  59. ; it may wind up on any of the usb devices depending on which was enumerated first. The path for the file is only
  60. ; checked on boot, so the device must be present at power on and at crash time for this to be effective
  61. ; ie: dumpfile = Usb:\crashlog.txt
  62. Dumpfile = Usb:\crashlog.txt
  63.  
  64.  
  65. ; example plugin entry
  66. ; plugin1 = Usb:\plugin\aplugin.xex
  67. [Plugins]
  68. plugin1 =
  69. plugin2 =
  70. plugin3 =
  71. plugin4 =
  72. plugin5 =
  73.  
  74.  
  75. ; these options are never used directly by dash launch but serve to give the configuration program
  76. ; a place to keep these values
  77. [Externals]
  78.  
  79. ; if true, the configuration application will start a FTP server (user/pass: xbox)
  80. ; if not present default is FALSE
  81. ftpserv = false
  82.  
  83. ; if ftpserv is true, this is the port that will be used by the FTP server
  84. ; if not present default is 21
  85. ftpport = 21
  86.  
  87. ; if true, the configuration application will start in launch mode instead of options mode
  88. ; if not present default is FALSE
  89. calaunch = false
  90.  
  91. ; if true, temps in installer and in guide (shuttemps option) will be shown in farenheit instead of celcius
  92. ; if not present default is FALSE
  93. farenheit = false
  94.  
  95.  
  96. [Settings]
  97.  
  98. ; if true, brining up miniblade in NXE and then pressing Y will cause launch.xex to relaunch for you
  99. ; note you must release Y button then press desired QuickLaunchButtons after or use default item
  100. ; if not present default is TRUE
  101. nxemini = true
  102.  
  103. ; if true ping limit will be removed for system link play (thanks FBDev!)
  104. ; if not present default is FALSE
  105. pingpatch = true
  106.  
  107. ; if true (most) xbla will no longer need yaris patching (thanks mojobojo!)
  108. ; if not present default is FALSE
  109. contpatch = true
  110.  
  111. ; Normally when a fatal error occurs the xbox will just freeze, setting this to false will cause a reboot or powerdown
  112. ; setting to TRUE will also disable the unhandled exception filter which tries to intercept recoverable unhandled exceptions with exit to dash
  113. ; if not present default is FALSE
  114. fatalfreeze = false
  115.  
  116. ; when fatalfreeze is set to false, setting this to true will cause the box to reboot, setting it to false will instead have the box shut down
  117. ; note that this option does NOTHING when fatalfreeze is set to true
  118. ; if not present default is FALSE
  119. fatalreboot = true
  120.  
  121. ; setting this to true will cause the box to reboot (soft reboot) the way it was intended to
  122. ; on jtag ONLY set this to true if using blackaddr's reboot fix for SMC, else on reboot you will get E71 and corrupted dash/video/etc settings
  123. ; if not present default is TRUE
  124. safereboot = true
  125.  
  126. ; when set to true, it is possible to hold RB when launching a game to have the region that the game gets from xam spoofed
  127. ; if not present this is set to FALSE
  128. regionspoof = true
  129.  
  130. ; when regionspoof is true, you set your region here in hex preceding the value with 0x, for examle devkit would be region = 0x7fff
  131. ; if not present but regionspoof is set to true, this is set to 0x7FFF
  132. region = 0x7fff
  133.  
  134. ; when set to false, ejecting a dvd video or game returns you to your default item, set to true to auto exit to NXE
  135. ; if not present this is set to FALSE
  136. dvdexitdash = false
  137.  
  138. ; when set to false, using the exit item in an XBLA game returns you to your default item, set to true to exit to NXE arcade menu
  139. ; if not present this is set to FALSE
  140. xblaexitdash = false
  141.  
  142. ; when set to true, using miniblades system setting options will not exit to NXE
  143. ; if not present this is set to FALSE
  144. nosysexit = false
  145.  
  146. ; when set to true, miniblades will not appear... ever (requested as child saftey measure)
  147. ; note that using this option overrides everything in dash launch that relies on miniblade exits to function
  148. ; if not present this is set to FALSE
  149. nohud = false
  150.  
  151. ; when set to false, xbox will be capable of finding system updaters
  152. ; if not present this is set to TRUE
  153. noupdater = true
  154.  
  155. ; when set to true, dash launch will put all debug strings out to uart
  156. ; if not present this is set to FALSE
  157. debugout = false
  158.  
  159. ; when set to false, dash launch will not attempt to handle last chance unhandled exceptions
  160. ; if set to false, exceptions will also not be dumped to the dumpfile
  161. ; if not present this is set to TRUE
  162. exchandler = true
  163.  
  164. ; if set to true, this will block the console from resolving LIVE related dns
  165. ; if not set this value will be TRUE
  166. liveblock = true
  167.  
  168. ; if liveblock is set to true, this will block the console from resolving all MS related dns
  169. ; setting this to TRUE will also block apps like freestyle from accessing things like cover images
  170. ; *** note that if NO INI is present for launch.xex, this is set to TRUE
  171. ; if not set this value will be FALSE
  172. livestrong = true
  173.  
  174. ; when set to TRUE the X (guide) and power button on IR remotes will cause the xbox to boot to NXE instead of default item
  175. ; note that powering on with the windows/start button automatically goes to NXE's media center now regardless of how this is set
  176. ; if not set this value will be FALSE
  177. remotenxe = false
  178.  
  179. ; when set to TRUE all USB drives will be polled at hddtimer intervals for the file "alive.txt" in their root
  180. ; if the file exists, it will be recreated and 16 random bytes written to it on each poll which should keep drives from spinning down
  181. ; if not set this value will be FALSE
  182. hddalive = false
  183.  
  184. ; in seconds, the interval between when USB devices will be polled for "alive.txt" file
  185. ; if not set and hddalive is set to TRUE this value will be 210
  186. hddtimer = 210
  187.  
  188. ; attempts to disable popups related to signing in, like "live is blocked" and similar
  189. ; !! WARNING OTHER THINGS DO USE THIS DIALOG AND DETECTING THAT IT'S A LOGIN DIALOG MAY NOT BE PERFECT !!
  190. ; !! to sign into live profiles other than auto signing on boot you MUST accept the 'check live for updates' dialog BEFORE enabling this option !!
  191. ; if not set this value will be FALSE
  192. signnotice = false
  193.  
  194. ; when you hold guide button to shut down xbox, normally the 'cancel' option is selected
  195. ; setting this to TRUE will cause the shutdown option to be auto selected instead
  196. ; !! WARNING OTHER THINGS DO USE THIS DIALOG AND DETECTING THAT IT'S SHUTDOWN DIALOG MAY NOT BE PERFECT !!
  197. ; if not set this value will be FALSE
  198. autoshut = false
  199.  
  200. ; when you hold guide button to shut down xbox, normally a dialog comes up
  201. ; setting this to TRUE will cause the console to shutdown instead of show a dialog
  202. ; !! WARNING OTHER THINGS DO USE THIS DIALOG AND DETECTING THAT IT'S SHUTDOWN DIALOG MAY NOT BE PERFECT !!
  203. ; if not set this value will be FALSE
  204. autooff = false
  205.  
  206. ; 14699+ has native http functions, but you are forced to be logged into use them
  207. ; this patch removes that restriction, set to false to disable it if you have any problems
  208. ; if not set this value will be TRUE
  209. xhttp = true
  210.  
  211. ; when tempbcast is set to TRUE the raw temp data from smc will be broadcast over UDP at temptime second
  212. ; intervals on port tempport
  213. ; if not set this value will be FALSE
  214. tempbcast = false
  215.  
  216. ; if not set this value will be 10
  217. temptime = 10
  218.  
  219. ; if not set this value will be 7030
  220. tempport = 7030
  221.  
  222. ; when set to TRUE all titles will have the insecure socket priveledge
  223. ; if not set this value will be FALSE
  224. sockpatch = true
  225.  
  226. ; when set to TRUE dash launch will not erase launchdata before launching a quick launch item
  227. ; if not set this value will be FALSE
  228. passlaunch = false
  229.  
  230. ; when set to TRUE various functions will be spoofed to make firmware think it's connected to LIVE
  231. ; this does not compensate for the fact that it cannot contact LIVE servers
  232. ; setting this to TRUE forces liveblock to TRUE
  233. ; if not set this value will be FALSE
  234. fakelive = false
  235.  
  236. ; when set to TRUE network/cloud storage options should not show up in disk dialogs
  237. ; if not set this value will be TRUE
  238. nonetstore = true
  239.  
  240. ; when set to TRUE a snapshot of the console temperature data will be displayed in the console shutdown dialog (displayed when guide button is held)
  241. ; !! WARNING OTHER THINGS DO USE THIS DIALOG AND DETECTING THAT IT'S SHUTDOWN DIALOG MAY NOT BE PERFECT !!
  242. ; enabling this option disables autooff
  243. ; if not set this value will be FALSE
  244. shuttemps = true
  245.  
  246. ; when true, any devkit profiles on the console will not appear as corrupt and can be used
  247. ; any changes such as saving games or getting achievements will resign the profile with the current/retail keyvault
  248. ; this seems not to affect glitch/jtag dev crossflash, but could affect these profiles on true devkits
  249. ; if not set this value will be FALSE
  250. devprof = false
  251.  
  252. ; when true, system link data will be encrypted for communication with devkits
  253. ; if not set this value will be FALSE
  254. devlink = false
  255.  
  256. ; when true dash launch will perform automatic disk swapping
  257. ; WARNING!! do not enable if you use FSD or swap.xex for this !!
  258. ; if not set this value will be FALSE
  259. autoswap = true
  260.  
  261. ; when true, disables kinect health pseudo video at game launch
  262. ; if not set this value will be TRUE
  263. nohealth = true
  264.  
  265. ; when true, disables dash locale setup screens when settings already exist
  266. ; if not set this value will be TRUE
  267. nooobe = true
  268.  
  269. ; shen true dash launch will automatically enable fakelive functionality only during official dash and indie play sessions
  270. ; if not set this value will be FALSE
  271. autofake = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement