xboxscene.org forums

Author Topic: Formatting Script Not Working?  (Read 634 times)

Agent Orange

  • Archived User
  • Jr. Member
  • *
  • Posts: 77
Formatting Script Not Working?
« on: September 15, 2004, 09:19:00 PM »

I'm trying to use a script for formatting cache drives, or F: drive, but they don't seem to be doing anything... maybe I'm overlooking something....

CODE

In MXM.xml:


    ALLOWFORMAT <1>
    format X:
    format y:
    format z:
    delete e:\cache
    ALLOWFORMAT <0>
 


 
    Callscript _DisplayMessageBox "This will completely destroy all data on F: $eol$Press A to continue, or any other button to exit..."
    If %_GP_A% == "1" GOTO APRESSED
    Quit

    :APRESSED
    ALLOWFORMAT <1>
    format f:
    ALLOWFORMAT <0>     
 



CODE

In MENU.xml:

   
 System Utilities
 Advanced Options
 
    Format Cache Drives
    Repairs System Cache
    
   CallScript FormatCache
    

 

 
    Format F: Drive
    Completely Erases F:
    
   CallScript FormatF
    

 

     



Any info is appreciated

This post has been edited by Agent Orange: Sep 16 2004, 04:23 AM <
Logged

geniusalz

  • Archived User
  • Hero Member
  • *
  • Posts: 1635
Formatting Script Not Working?
« Reply #1 on: September 23, 2004, 09:06:00 PM »

You need to have :
"AllowFormat 1" as opposed to "AllowFormat <1>"

Same with 0

That's probably the problem.  <
Logged

Agent Orange

  • Archived User
  • Jr. Member
  • *
  • Posts: 77
Formatting Script Not Working?
« Reply #2 on: September 25, 2004, 06:04:00 PM »

lol.... I can't believe I did that... I'll try that out. Thanks a lot.  <
Logged