Comments on build 2913

Xecuter

Staff member
Top TX Brass
Dec 6, 2002
11,468
128
Asia
team-xecuter.com
kserge5534 said:
Team x great job on the bios, but I think it looks like people need more info on the ini file and how it works. Its obvious if you read it, but judging from this thread most people dont. More info to make it noob proof may prevent a flood of "I lost everything" threads
exactley its obvious if you read it.

not our problem if some ppl are not technical enough or who dont understand simple scripts

and you see judging from this thread MOST people dont

mmmm 20 replies and 127,761 bios downloads - do the math ;)
 

newnickhere

Full Member
Oct 1, 2004
37
0
Europe
After having read all the comments here so far and having read all the files that came with the new bios, I think almost everybody here, including xecuter would do a lot better than to just post stupid comments and give no help whatsoever.

Firstly, nowhere does it say do or don't copy the script file to your xbox. (could be uselful, not everybody is a master of science and technology).

Secondly, from my understanding of programming and scripting, even if you did copy the sample script file, it does nothing, all lines are commented out.

Additionally, the opening comment in the sample script file can be misleading, since most people tend to just skim over info sometimes . ("Sample x3 install script for fat32 formatted USB "pendrives".)

So let's see if perhaps there is another cause for the lost partitions and see if we can help in finding a way to get the data back if it is lost.
 

PHANTOM_MADMAN

Noob Account
Nov 23, 2004
7
0
Michigan
Thank you Team Xecuter for a Awesome job on The New bios I love the option to disable the DVD on startup or restarting the XBOX without taking the disk out every time and the Skinning option is Awesome to.

Thanks again
 

manu_xl

VIP Member
Sep 6, 2004
243
0
BELGIUM (ghent)
newnickhere said:
So let's see if perhaps there is another cause for the lost partitions and see if we can help in finding a way to get the data back if it is lost.
i think that data of a formatted partition is lost for ever :eek:
 

newnickhere

Full Member
Oct 1, 2004
37
0
Europe
Notice, I did not use formatted, but lost in my post. Like I said if you run the sample script "as-is" it will do nothing, so it may be that the partions are not formatted. He gives too little information as to what he actually did.

But at the same time, it serves no purpose whatsoever to post nasty or demeaning remarks, and it certainly does not impress me and I suspect a lot of other people too. Such remarks, do nothing to indicate intelligence or expertise on a product, more than likely, the lack thereof.
 

BlackSabbath

Senior Member
Jan 19, 2005
125
0
Shasta Lake, California
newnickhere said:

Secondly, from my understanding of programming and scripting, even if you did copy the sample script file, it does nothing, all lines are commented out.
hmmm, ALL LINES ARE COMMENTED OUT?
are you SURE you read everything?
mine isn't commented out.

Code:
##############################################
#
# Simple x3 install script for fat32 formatted
# USB "pendrives". 
# Just insert "usb pendrive" into xbox and start 
# x3 config live, x3cl should handle the rest
# will also run scripts from http iso9660 media 
# and hdd
#
# -Team Xecuter
#
##############################################

##############################################
#
# preparedrive
#
# Does a complete format on a drive, for
# new drives, this is the one you want to run
#
##############################################

preparedrive



##############################################
#
# network = <static/dhcp>,
#		<ip adress>,
#		<netmask>,
#		<gateway>,
#		<DNS>
#
# if this is not given, it will use pre-defined
# network settings if needed instead.
#
##############################################


network = static;192.168.1.190;255.255.255.0;192.168.1.1;195.159.0.100


##############################################
#
# Special commands : 
#
# if v1.6 <command>   e.g. : 
#
#	 if v1.6 flashbios bios X3_1959_v16plus.bin
#
# or 
#
# if !v1.6 <command>   e.g. : 
#
#	 if !v1.6 eject
#
#  also :
#
#  if exist <filename> <command>
#
#
##############################################

if exist z:\temp.jpg goto script2


##############################################
#
# delete <filename>
#
# deletes the file if possible
#
##############################################

delete e:\dashboard.zip






##############################################
#
# download <filename> <path>
#
# downloads a file from a webserver
#
##############################################

download z:\test.gif http://www.google.com/images/hp2.gif


##############################################
#
# runscript
#
# launches a new script ( if located )
# it wont return tho, as it overwrites the 
# old script
#
# runscript z:/script4.ini
#
###############################################

runscript z:/script.ini



##############################################
#
# sleep <ms>
#
# makes the script rest for X milliseconds
#
##############################################

sleep 1000


##############################################
#
#  eject
#
# Ejects the DVD/CD
#
##############################################

eject



##############################################
#
# eeprom_backup 
#
# backs up the EEPROM to slot 1 on the x3
#
##############################################

eeprom_backup


##############################################
#
# flashbios <bios/backup> <filename>
#
# Flashes the selected bios with the filename
# to a properly sized bios on the USB device
#
##############################################

#flashbios backup flashbios.bin
#flashbios bios X3_1959_v16plus.bin



##############################################
#
# hdd_lock / hdd_unlock
#
# Locks / unlocks the xbox
#
##############################################

hdd_lock
hdd_unlock


##############################################
#
# unzip <filename> <target dir>
#
# copies a zipfile to the xbox harddrive
# and unpacks it to the target
#
##############################################

unzip dash.zip c:\



##############################################
#
# copy <filename> <target>
#
# copies a file to the targetted harddrive 
# location
#
##############################################

copy X3_install.ini z:\



##############################################
#
# launch <filename>
#
# launches an xbe-file located at the xbox
#
##############################################

launch e:\default.xbe



##############################################
#
# goto label, is ignored but allow 
# you to jump to it using "goto" command
#
##############################################
%script2%

copy X3_install.ini z:\


##############################################
#
# mbr
#
# creates a new partition table and 
# master boot record
#
##############################################

mbr


##############################################
#
# format <drive>
#
# formats the drive (if possible)
#
##############################################

format f:



##############################################
#
# echo <text>
#
# outputs any text to the screen
#
##############################################

echo Everything installed and copied...then gone in the formatting
everything with a # in front is a comment.
the explanation of the command is commented, then below the command is UNCOMMENTED.

this is why people are phucking up their sh*t. because they don't read anyting. beacuse they are stupid or lazy. either way it is not xecuter's fault that people are stupid or lazy. you yourself just proved that you didn't read didly squat.
 

newnickhere

Full Member
Oct 1, 2004
37
0
Europe
Actually it is neither a sin or crime to be stupid or lazy, but it is always a good idea to get all the info before ranting and raving.

Here is the sample script file downloaded from xbins today and untouched after being unrared. So there appears to be different sample script files around.
Code:
##############################################
#
# Sample x3 install script for fat32 formatted
# USB "pendrives". 
# Just insert "usb pendrive" into xbox and start 
# x3 config live, x3cl should handle the rest
# will also load scripts from http iso9660 media 
# and hdd once first usb script is loaded
# 
#
# -Team Xecuter
#
##############################################
 
##############################################
#
# preparedrive
#
# Does a complete format on a drive, for
# new drives, this is the one you want to run
# you do not get a warning so BE CAREFUL !
#
##############################################
 
# preparedrive 
 
 
 
##############################################
#
# network = <static/dhcp>,
# <ip adress>,
# <netmask>,
# <gateway>,
# <DNS>
#
# if this is not given, it will use pre-defined
# network settings if needed instead.
#
##############################################
 
 
# network = static;192.168.1.190;255.255.255.0;192.168.1.1;195.159.0.100
 
 
##############################################
#
# Special commands : 
#
# if v1.6 <command> e.g. : 
#
# if v1.6 flashbios bios X3_1959_v16plus.bin
#
# or 
#
# if !v1.6 <command> e.g. : 
#
# if !v1.6 eject
#
# also :
#
# if exist <filename> <command>
#
#
##############################################
 
# if exist z:\temp.jpg goto script2
 
 
##############################################
#
# delete <filename>
#
# deletes the file if possible
#
##############################################
 
# delete e:\dashboard.zip
 
 
 
 
 
 
##############################################
#
# download <filename> <path>
#
# downloads a file from a webserver
#
##############################################
 
# download z:\test.gif [url="http://www.google.com/images/hp2.gif"]http://www.google.com/images/hp2.gif[/url]
 
 
##############################################
#
# runscript
#
# launches a new script ( if located )
# it wont return tho, as it overwrites the 
# old script
#
# runscript z:/script4.ini
#
###############################################
 
# runscript z:/script.ini
 
 
 
##############################################
#
# sleep <ms>
#
# makes the script rest for X milliseconds
#
##############################################
 
# sleep 1000
 
 
##############################################
#
# eject
#
# Ejects the DVD/CD
#
##############################################
 
# eject
 
 
 
##############################################
#
# eeprom_backup 
#
# backs up the EEPROM to slot 1 on the x3
#
##############################################
 
# eeprom_backup
 
 
##############################################
#
# flashbios <bios/backup> <filename>
#
# Flashes the selected bios with the filename
# to a properly sized bios on the USB device
#
##############################################
 
# flashbios backup flashbios.bin
# flashbios bios X3 2913.bin
 
 
 
##############################################
#
# hdd_lock / hdd_unlock
#
# Locks / unlocks the xbox
#
##############################################
 
# hdd_lock
# hdd_unlock
 
 
##############################################
#
# unzip <filename> <target dir>
#
# copies a zipfile to the xbox harddrive
# and unpacks it to the target
#
##############################################
 
# unzip dash.zip c:\
 
 
 
##############################################
#
# copy <filename> <target>
#
# copies a file to the targetted harddrive 
# location
#
##############################################
 
# copy X3_install.ini z:\
 
 
 
##############################################
#
# launch <filename>
#
# launches an xbe-file located at the xbox
#
##############################################
 
# launch e:\default.xbe
 
 
 
##############################################
#
# goto label, is ignored but allow 
# you to jump to it using "goto" command
#
##############################################
# %script2%
 
# copy X3_install.ini z:\
 
 
##############################################
#
# mbr
#
# creates a new partition table and 
# master boot record
#
##############################################
 
# mbr
 
 
##############################################
#
# format <drive>
#
# formats the drive (if possible)
#
##############################################
 
# format f:
 
 
 
##############################################
#
# echo <text>
#
# outputs any text to the screen
#
##############################################
 
# echo Everything installed and copied...then gone in the formatting
 

newnickhere

Full Member
Oct 1, 2004
37
0
Europe
Anyway, I have had my fill and I have said my bit. I just hope these forums can become a place where one can find answers, instead of a bunch of people trying to show off and increase their number of posts.
 

BlackSabbath

Senior Member
Jan 19, 2005
125
0
Shasta Lake, California
newnickhere said:
Anyway, I have had my fill and I have said my bit. I just hope these forums can become a place where one can find answers, instead of a bunch of people trying to show off and increase their number of posts.
that's fine, just make sure you get your facts straight and read up before you post complaining about sh*t. :rolleyes:
 

chaosfactornine

VIP Member
Feb 18, 2004
159
0
GA
My question is when all these scripts get written, are widely available on the net, and there is no need for hardly any knowledge, won't that create a generation of uber-noobs?

Not to dog the noobs by any means...
 

threeballspin

VIP Member
Mar 24, 2004
655
0
Georgia
newnickhere said:
Anyway, I have had my fill and I have said my bit. I just hope these forums can become a place where one can find answers, instead of a bunch of people trying to show off and increase their number of posts.
I couldn't agree more.
 

manu_xl

VIP Member
Sep 6, 2004
243
0
BELGIUM (ghent)
maybe its just me, but i dont use those skins. the original background is alot nicer. more bios like.
 

BlackSabbath

Senior Member
Jan 19, 2005
125
0
Shasta Lake, California
newnickhere said:
Actually it is neither a sin or crime to be stupid or lazy, but it is always a good idea to get all the info before ranting and raving.

Here is the sample script file downloaded from xbins today and untouched after being unrared. So there appears to be different sample script files around.
Code:
##############################################
#
# Sample x3 install script for fat32 formatted
# USB "pendrives". 
# Just insert "usb pendrive" into xbox and start 
# x3 config live, x3cl should handle the rest
# will also load scripts from http iso9660 media 
# and hdd once first usb script is loaded
# 
#
# -Team Xecuter
#
##############################################
 
##############################################
#
# preparedrive
#
# Does a complete format on a drive, for
# new drives, this is the one you want to run
# you do not get a warning so BE CAREFUL !
#
##############################################
 
# preparedrive 
 
 
 
##############################################
#
# network = <static/dhcp>,
# <ip adress>,
# <netmask>,
# <gateway>,
# <DNS>
#
# if this is not given, it will use pre-defined
# network settings if needed instead.
#
##############################################
 
 
# network = static;192.168.1.190;255.255.255.0;192.168.1.1;195.159.0.100
 
 
##############################################
#
# Special commands : 
#
# if v1.6 <command> e.g. : 
#
# if v1.6 flashbios bios X3_1959_v16plus.bin
#
# or 
#
# if !v1.6 <command> e.g. : 
#
# if !v1.6 eject
#
# also :
#
# if exist <filename> <command>
#
#
##############################################
 
# if exist z:\temp.jpg goto script2
 
 
##############################################
#
# delete <filename>
#
# deletes the file if possible
#
##############################################
 
# delete e:\dashboard.zip
 
 
 
 
 
 
##############################################
#
# download <filename> <path>
#
# downloads a file from a webserver
#
##############################################
 
# download z:\test.gif [url="http://www.google.com/images/hp2.gif"]http://www.google.com/images/hp2.gif[/url]
 
 
##############################################
#
# runscript
#
# launches a new script ( if located )
# it wont return tho, as it overwrites the 
# old script
#
# runscript z:/script4.ini
#
###############################################
 
# runscript z:/script.ini
 
 
 
##############################################
#
# sleep <ms>
#
# makes the script rest for X milliseconds
#
##############################################
 
# sleep 1000
 
 
##############################################
#
# eject
#
# Ejects the DVD/CD
#
##############################################
 
# eject
 
 
 
##############################################
#
# eeprom_backup 
#
# backs up the EEPROM to slot 1 on the x3
#
##############################################
 
# eeprom_backup
 
 
##############################################
#
# flashbios <bios/backup> <filename>
#
# Flashes the selected bios with the filename
# to a properly sized bios on the USB device
#
##############################################
 
# flashbios backup flashbios.bin
# flashbios bios X3 2913.bin
 
 
 
##############################################
#
# hdd_lock / hdd_unlock
#
# Locks / unlocks the xbox
#
##############################################
 
# hdd_lock
# hdd_unlock
 
 
##############################################
#
# unzip <filename> <target dir>
#
# copies a zipfile to the xbox harddrive
# and unpacks it to the target
#
##############################################
 
# unzip dash.zip c:\
 
 
 
##############################################
#
# copy <filename> <target>
#
# copies a file to the targetted harddrive 
# location
#
##############################################
 
# copy X3_install.ini z:\
 
 
 
##############################################
#
# launch <filename>
#
# launches an xbe-file located at the xbox
#
##############################################
 
# launch e:\default.xbe
 
 
 
##############################################
#
# goto label, is ignored but allow 
# you to jump to it using "goto" command
#
##############################################
# %script2%
 
# copy X3_install.ini z:\
 
 
##############################################
#
# mbr
#
# creates a new partition table and 
# master boot record
#
##############################################
 
# mbr
 
 
##############################################
#
# format <drive>
#
# formats the drive (if possible)
#
##############################################
 
# format f:
 
 
 
##############################################
#
# echo <text>
#
# outputs any text to the screen
#
##############################################
 
# echo Everything installed and copied...then gone in the formatting


it appears that they re-uploaded a new archive with the commented script in it. WISE decision, as there are many lazy n00bs that will delete their sh*t and then come here bitching because they are too lazy to read documentation.
 

BlackSabbath

Senior Member
Jan 19, 2005
125
0
Shasta Lake, California
chaosfactornine said:
My question is when all these scripts get written, are widely available on the net, and there is no need for hardly any knowledge, won't that create a generation of uber-noobs?

Not to dog the noobs by any means...

is that a REAL photo of you in your avatar? because if it is it will explain ALOT.
 

threeballspin

VIP Member
Mar 24, 2004
655
0
Georgia
BlackSabbath said:
is that a REAL photo of you in your avatar? because if it is it will explain ALOT.
You are the biggest douche bag. Why are you starting sh*t with everyone? Go somewhere else if you are going to be doing that sh*t. Honestly. How bad would you feel if that really was his pic as his avatar?
 
Last edited:

Vyrus

VIP Member
Dec 30, 2004
319
0
chaosfactornine said:
My question is when all these scripts get written, are widely available on the net, and there is no need for hardly any knowledge, won't that create a generation of uber-noobs?

Not to dog the noobs by any means...

No one said you had to use the scripts, just go the hard way if you like it that way, but why make your life harder when it can be easier...? So, what if people make scripts and installs become easier, it would decrease the amount of people f*cking up thier xbox's and b*tching about it on the forums, and it would leave the forums for relevent questions.
 

BlackSabbath

Senior Member
Jan 19, 2005
125
0
Shasta Lake, California
Vyrus said:
No one said you had to use the scripts, just go the hard way if you like it that way, but why make your life harder when it can be easier...? So, what if people make scripts and installs become easier, it would decrease the amount of people f*cking up thier xbox's and b*tching about it on the forums, and it would leave the forums for relevent questions.
na, now there's a flood of people that didn't read the documentation on the scripting and coming back here to bitch about xecuter and blame the "chip". xecuter can't win either way. people will always be lazy moron's and there will always be "super internet forum police cops" to cry about people pointing this out to them.