xxwillisxx
Jul 9 2004, 08:38 AM

cant put up the code
dont know the peoples names that maid it
| QUOTE |
| QUOTE | (JbOnE @ Jun 30 2004, 11:54 AM) ... we're not putting up with it here anymore |
from now on anything posted without reference to it's origin will be deleted - whether it's our code or your mom's code. the xbe and ORIGINAL xaps are the only part of the ms dash that is M$ code - the xaps are c compiled on boot - making their contents the original code of the creator. so if someone writes something original in the xaps - it is their intellectual property. you go spend a year of your time creating something and then have someone else claim credit for it - then you can lecture me on what to/not be pissed about |
but if JbOnE gives the ok (or knows the pepoples names os i can give credit to them) ill put up the code
alphaxav
Jul 9 2004, 08:45 AM
yes it'll be a good idea !
xxwillisxx could you find the code to change the skins with preset and screenshots ? ( maybe put it in settings3.xap )
off course wait for jbOnE answer !!!
xxwillisxx
Jul 9 2004, 08:51 AM
| QUOTE (alphaxav @ Jul 9 2004, 03:45 AM) |
yes it'll be a good idea !
xxwillisxx could you find the code to change the skins with preset and screenshots ? ( maybe put it in settings3.xap )
off course wait for jbOnE answer !!!  |
i think Spike13 is working on something like that
Alekz
Jul 9 2004, 09:22 AM
yeah!!! this sounds good!!1
bsx isn't sexy enough to beat THC-Lite with these!!!
thc + dna =
Infamous_One
Jul 9 2004, 10:10 AM

post the code already , you can say that you didnt made it and the names of the makers will be posted later. , POST IT!!!
basil
Jul 9 2004, 08:26 PM
Just sent a msg to xxwillisxx. I assume he will be posting the code shortly after he reads it.
Flexmaster Frag
Jul 9 2004, 08:29 PM
I was told that acidbath deserves credit for the dna.
basil
Jul 9 2004, 08:35 PM
(16:17:55) (basil`) hey BobMcGee who designed the DNA in BSX?
(16:18:18) (@BobMcGee) it was a mesh off 3dmesh cafe that acid slimmed down substantially
You guys take the frikin' cake.
Slag us off for weeks, without seeing our work, then do exactly what you have been accusing us of.
Infamous one, you are a COCK! Your mommy must be so proud !
Yes I spent 3 weeks getting that DNA in there, it is a very difficult model to get in the dash it is a 19MB ase file. It's in there now for all to "steal"
You people

Thanks JbOne. But maybe you need a bigger stick to beat this type of shit with !
Now I see it from your point of view
BobMcGee
Jul 9 2004, 11:32 PM
how ironic this is...thc users who have been openly bashing BSX "stealing" BSX code...funny as shit.
acidbath did indeed convert the mesh and reduced the size substantially so it could be used...took about 2 weeks so he deserves a pat on the back.
I wrote the code for it which a monkey could have done (and which an even stupider monkey could copy) ... OF COURSE YOU CAN USE IT.
I could give a rats ass what anyone does as long as people are enjoying it. Thats what msdash hacking is about...having fun. So next time before criticizing others work...and saying stupid ass shit like "bsx isn't sexy enough to beat THC-Lite with these!!!" think about how retarded you sound. A person too dumb to know how to make an object in VRML with a spinner on it doesn't deserve an opinion.
long live BtShXc!!!!
ImOkRuOk
Jul 9 2004, 11:41 PM
man... ppl.....
long live BtShXc!!
Infamous_One
Jul 10 2004, 12:40 AM
| QUOTE (PID @ Jul 10 2004, 01:21 AM) |
Infamous one, you are a COCK! Your mommy must be so proud !
|

yep , i get a lot of pussy. you should try some.
edit: short live BtShXc!!
Long Live THC.
Alekz
Jul 10 2004, 11:00 AM
@ Infamous_One
cmon just fuckoff,... i think that BobMcGee is right! its their thc/bsx stuff, and though they make releases to get somekind of fun, pride or whatever the reason for running these fancy looking dashbords is, they share! and you're just running your crazy shit to be cool, only because you read some scene news about 2 dashboard teams flaming at each other. you made nothing than using their files and their knowledge, same as i and many other users do,... so please delete yourself
waht i actually wanted to say,...

please give us the dna thing
Alekz
Jul 10 2004, 11:04 AM
@ Infamous_One
cmon just fuckoff,... i think that BobMcGee is right! its their thc/bsx stuff, and though they make releases to get somekind of fun, pride or whatever the reason for running these fancy looking dashbords is, they share! and you're just running your crazy shit to be cool, only because you read some scene news about 2 dashboard teams flaming at each other. you made nothing than using their files and their knowledge, same as i and many other users do,... so please delete yourself
what i actually wanted to say is ,...
cmon xxwillisxx, please give us the dna thing !!!
peace
clown88
Jul 10 2004, 11:05 AM
You have got to be kidding me!
You hypocritical bastards
PID
Jul 10 2004, 11:58 AM

Infamoose one.
You get alot of your mums pussy. Good for you.
Master3xBOx
Jul 10 2004, 01:00 PM
xxwillisxx
Jul 10 2004, 01:43 PM
first off a big thx to basil for telling me ,a big thx to BobMcGee for telling him and a big thx to acidbath who deserves credit for the dna.
in default.xip/default.xap
look for DEF theScreenSaver ScreenSaver
and put this under it
| CODE |
function DNAstatus() { var info = new Settings; info.file = "Y:\\config.xbx"; var tempflag = info.GetValue("DNA"); if(tempflag == "YES") { theDNA = true; } else if(tempflag == "NO") { theDNA = false; } }
|
so it looks like this
| CODE |
DEF theScreenSaver ScreenSaver { function OnStart() { theScreen.brightness = 0.1; }
function OnEnd() { theScreen.brightness = 1; } } function DNAstatus() { var info = new Settings; info.file = "Y:\\config.xbx"; var tempflag = info.GetValue("DNA"); if(tempflag == "YES") { theDNA = true; } else if(tempflag == "NO") { theDNA = false; } }
|
look for this c.SubmenuText5.text = SubMenuItem5;
and put this under
| CODE |
if (theDNA == true) { c.theDNA1.SetAlpha(.4); c.theDNA3.SetAlpha(.4); c.theDNA5.SetAlpha(.4); }
else if (theDNA == false) { c.theDNA1.visible = false; c.theDNA3.visible = false; c.theDNA5.visible = false; }
|
look for All new var's below here...
and put
look for function initialize()
and put
in mainmenu5xip/default.xap
put this
| CODE |
DEF theDNA1 Transform {
children [ Spinner { rpm 2 axis 0 1 0 children [
DEF DNA1 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA1_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString1 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString1_Mesh Mesh { url "Backing_dna_SIDES.xm" } } ] translation 0 0 0
} ] } ] scale 28 28 28 rotation 0 0 .5 0.1745330 //translation -4400 0 -5100 translation -5400 0 -5100 }
DEF theDNA3 Transform { children [
Spinner { rpm 2 axis 0 1 0 children [
DEF DNA3 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA3_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString3 Transform { children [
Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString3_Mesh Mesh { url "Backing_dna_SIDES.xm" } }
] translation 0 0 0
} ] }
] scale 29 29 29 rotation 0 0 1 -.523599 translation 0 0 -5000 }
DEF theDNA5 Transform { children [ Spinner { rpm 2 axis 0 1 0 children [
DEF DNA5 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA5_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString5 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString5_Mesh Mesh { url "Backing_dna_SIDES.xm" } } ] translation 0 0 0
} ] }
] scale 25 25 25 rotation 0 0 .3 -0.1745330 //translation 3000 0 -5100 translation 4000 0 -5100 }
|
after this
| CODE |
DEF theMainMenuCam Transform { children [ DEF theScreenWaver Transform { children [ Waver { rpm 4 axis 1 0 0 field 0.132 children [ Waver { rpm 3 axis 0 -1 0 field 0.162 children [ Waver { rpm 5 axis -2 0 0 field 0.132 children [
|
now go in Skin_Menu.xip(BSX) and extract Backing_dna.xm and Backing_dna_SIDES.xm
and put them in mainmenu5.xip
now go to your config.xbx and add
DNA=YES or NO
Infamous_One
Jul 10 2004, 06:16 PM
| QUOTE (PID @ Jul 10 2004, 01:58 PM) |
Infamoose one.
You get alot of your mums pussy. Good for you. |

hmm.
world in an oyster
Jul 10 2004, 06:33 PM
bobmcgee's coding of BSX is shit beyond belief.
that said, the dna looks great in bsx.
it dosn't in tHc, it looks out of place and rubbish. either convert the whole menu system or don't dude
xxwillisxx
Jul 10 2004, 06:42 PM
| QUOTE (world in an oyster @ Jul 10 2004, 01:33 PM) |
bobmcgee's coding of BSX is shit beyond belief. that said, the dna looks great in bsx. it dosn't in tHc, it looks out of place and rubbish. either convert the whole menu system or don't dude |
first the menu system is shit (BSX)
and for the dna if you dont want it in thc dont put it, im not making you
Master3xBOx
Jul 12 2004, 12:43 AM
Here's another pic of it.


(note: the white lettering in the bottom right corner is not part of it )
Infamous_One
Jul 12 2004, 01:26 AM
| QUOTE (Master3xBOx @ Jul 12 2004, 02:43 AM) |
Here's another pic of it. 

(note: the white lettering in the bottom right corner is not part of it ) |

Thats awesome , it looks better on THC than on the Crappy Code Thiefs BullshitX.
brilliantdonkey
Jul 12 2004, 03:23 AM
Is it just me, or does adding the DNA immensely drop the framerate in the main menu?
And that's a helluva nice skin! Is there a blue version?
Darkzone
Jul 12 2004, 04:35 AM
| QUOTE (brilliantdonkey @ Jul 12 2004, 05:23 AM) |
Is it just me, or does adding the DNA immensely drop the framerate in the main menu?
And that's a helluva nice skin! Is there a blue version? |
I cannot see any drop on the framerate at my Dash,so it works nice!
-WebSurfer-
Jul 12 2004, 07:11 AM
@ xxwillisxx
you have many time to code, or ?
again good work
xxwillisxx
Jul 12 2004, 07:14 AM
| QUOTE |
| you have many time to code, or ? |
i do it after work ,i love to do it
Darkzone
Jul 12 2004, 07:32 AM
Nice work xxwillisxx, keep it up!
I think you are one from the best here
xxwillisxx
Jul 12 2004, 07:56 AM
| QUOTE (Darkzone @ Jul 12 2004, 02:32 AM) |
Nice work xxwillisxx, keep it up!
I think you are one from the best here |
im not the best but i try
i do this for fun, to see if i can do it
loggio
Jul 12 2004, 10:09 AM
Hey , nice work Willis , your doing some pretty cool stuff

. I tried it out lol , i like the results .

Keep up the good work wont you. Cheers
Enjoy.
Loggio
Master3xBOx
Jul 12 2004, 08:18 PM
Hey brilliantdonkey no but I'll make one and upload it to allxboxskins.com later tonight. Sounds like I acutally have something to do tonight instead of just playing on Xbox Live all night long.
brilliantdonkey
Jul 13 2004, 12:05 AM
NICE! Thanks!
Haha, this is gonna be my permanent skin then.
PID
Jul 13 2004, 12:23 AM
Can't believe xxwillisxx still gets the props.
You can all cut and paste the code yourselves. It's all there in the BSX dash. A new version is out, maybe you can cut and paste a whole lot more from there now too

Why not copy the nice config from there too (or is that too tricky for you xxwillisxx)
I'll make some new (Fully mapped) models for you all to put in your Hybrids soon, they will be in the BSX dash tho so you'll have to keep cutting and pasting, and all your friends will believe you made it.
Any requests for models to acidbath@blackstormX.com thanks.
X-eQteR
Jul 13 2004, 02:05 AM
| QUOTE |
Can't believe xxwillisxx still gets the props.
You can all cut and paste the code yourselves. It's all there in the BSX dash. A new version is out, maybe you can cut and paste a whole lot more from there now too
Why not copy the nice config from there too (or is that too tricky for you xxwillisxx)
I'll make some new (Fully mapped) models for you all to put in your Hybrids soon, they will be in the BSX dash tho so you'll have to keep cutting and pasting, and all your friends will believe you made it.
Any requests for models to acidbath@blackstormX.com thanks.
|
I'm thankfull that you indeed created this code and made it available on the BSX dash...However not all of us like the menu style of your dash and therefore find it usefull to use the DNA code in the tHc Orig..or tHc Lite. Now about this guy getting all the credit for find its right place on tHc Lite as you state above...well like myself i don't code or have the knowledge to find the code and find a place for it in tHc Lite....so this guys found that and by doing that he help me and I will happily say "THANKS....Keep up the Good Work" ...Acid you made/create it ...my respect for that...but xxwillisxx made it easy for us by directing us to where to look and put this in our dash...and my respect for that as well.....
with all respect to whoever deserves it for whatever they do....just thanks for helping others.
keep up the good work!!
coltxL2717
Jul 13 2004, 02:19 AM
Amen to that X-eQteR. Amen.
Infamous_One
Jul 13 2004, 03:57 AM
| QUOTE (PID @ Jul 13 2004, 02:23 AM) |
Can't believe xxwillisxx still gets the props.
You can all cut and paste the code yourselves. It's all there in the BSX dash. A new version is out, maybe you can cut and paste a whole lot more from there now too 
Why not copy the nice config from there too (or is that too tricky for you xxwillisxx)
I'll make some new (Fully mapped) models for you all to put in your Hybrids soon, they will be in the BSX dash tho so you'll have to keep cutting and pasting, and all your friends will believe you made it.
Any requests for models to acidbath@blackstormX.com thanks. |

well he gets the props cause he took the code that you and BullshitX made and found a better use for it. also showed out to add it , and where to add it.

But you still the high credit for creating it.
PID
Jul 13 2004, 04:41 AM
You are all welcome for the DNA. We knew it would all end up in here anyway.
The only reason I am even posting here is because of all the crap you guys gave us here before release of BSX. I think you'll all agree that the code and .xm's you have inserted into tHc were not there to begin with (so couldn't be stolen).
Enjoy your Hybrids.
You are just doing what we were not allowed to.
Infamous_One
Jul 13 2004, 04:57 AM
| QUOTE (PID @ Jul 13 2004, 06:41 AM) |
You are all welcome for the DNA. We knew it would all end up in here anyway. The only reason I am even posting here is because of all the crap you guys gave us here before release of BSX. I think you'll all agree that the code and .xm's you have inserted into tHc were not there to begin with (so couldn't be stolen).
Enjoy your Hybrids.
You are just doing what we were not allowed to. |
cause they are the "MASTERS" , they are on "FIRE"
(people applauding , women screaming)
xxwillisxx
Jul 13 2004, 06:31 AM
| QUOTE |
well he gets the props cause he took the code that you and BullshitX made and found a better use for it. also showed out to add it , and where to add it.
|
first off im not looking for props
i do this for fun and so people can add this stuff to thc lite
and yes PID i do cut and paste the code but i got to mess with it to get it to work(im not a coder)
i do it for fun and to help people not for props
Master3xBOx
Jul 13 2004, 07:56 AM
Infamous_One
Jul 13 2004, 08:31 AM
| QUOTE (Master3xBOx @ Jul 13 2004, 09:56 AM) |
brilliantdonkey, Here's a screenshot of the new Satin Blue Skin. With the new sexy DNA also. Should be up on Allxboxskins.com soon.
|
Darkzone
Jul 13 2004, 11:57 AM
I got a problem with the DNA,when i need to texture he shows me an error 21,when i insert the code that willis post there is no problem!
Anybody has the right code for DNA with textures?or got the same problem?
brilliantdonkey
Jul 13 2004, 04:10 PM
Droooooool
world in an oyster
Jul 13 2004, 04:59 PM
| QUOTE (PID @ Jul 13 2004, 06:41 AM) |
You are all welcome for the DNA. We knew it would all end up in here anyway. The only reason I am even posting here is because of all the crap you guys gave us here before release of BSX. I think you'll all agree that the code and .xm's you have inserted into tHc were not there to begin with (so couldn't be stolen).
Enjoy your Hybrids.
You are just doing what we were not allowed to. |
LMAO!!!
everyone here know's its just a "code snippet"
YOU GUYS WENT, TOOK CODE AND CALLED IT YOUR OWN FUCKIN' DASH lmao!
dammit you're an idiot. this is just for fun, we don't prance around acting like we coded it from the ground up.
Loggio - post that skin! its incredable!
PS- bsx config mode is shit.
X-eQteR
Jul 13 2004, 08:27 PM
| QUOTE |
LMAO!!!
everyone here know's its just a "code snippet"
YOU GUYS WENT, TOOK CODE AND CALLED IT YOUR OWN FUCKIN' DASH lmao! dammit you're an idiot. this is just for fun, we don't prance around acting like we coded it from the ground up.
Loggio - post that skin! its incredable!
PS- bsx config mode is shit.
|
Can we get behind the bashing and useless comments here...not in favor or against anyone. This tread started as to show something we can add to tHcLite...let's keep it that way....Perhaps the next thing that was asked here before would be great to add....
| QUOTE |
I got a problem with the DNA,when i need to texture he shows me an error 21,when i insert the code that willis post there is no problem!
|
Looking Forward to the answer or solution to the quote above.
XeQteR
gasclown
Jul 13 2004, 09:13 PM
sorry - offtopic
I agree with X-eQteR. I wish thc and bsx were still together and bsx was an option in thc (or vice-versa - depending on your perspective) If they worked together maybe we'd be able to get our hands on final much sooner or at all.
Infamous_One & world in an oyster - YOU ARE NOT HELPING!
now go check out this thread and do something useful:
http://forums.xbox-scene.com/index.php?showtopic=242750
xxwillisxx
Jul 13 2004, 09:47 PM

for small dna like the pic use this code
thx to gasclown
| CODE |
DEF theDNA1 Transform {
children [ Spinner { rpm 2 axis 0 1 0 children [
DEF DNA1 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA1_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString1 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString1_Mesh Mesh { url "Backing_dna_SIDES.xm" } } ] translation 0 0 0
} ] } ] scale 10 10 10 rotation 0 0 .5 0.1745330 //translation -4400 0 -5100 translation -5400 0 -5100 }
DEF theDNA3 Transform { children [
Spinner { rpm 2 axis 0 1 0 children [
DEF DNA3 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA3_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString3 Transform { children [
Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString3_Mesh Mesh { url "Backing_dna_SIDES.xm" } }
] translation 0 0 0
} ] }
] scale 9 9 9 rotation 0 0 1 -.523599 translation 0 0 -5000 }
DEF theDNA5 Transform { children [ Spinner { rpm 2 axis 0 1 0 children [
DEF DNA5 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "MenuCell" } } geometry DEF DNA5_Mesh Mesh { url "Backing_dna.xm" } } ]
translation 0 0 0 }
DEF DNAString5 Transform { children [ Shape { appearance Appearance { material MaxMaterial { name "FlatSrfc/PodParts" } } geometry DEF DNAString5_Mesh Mesh { url "Backing_dna_SIDES.xm" } } ] translation 0 0 0
} ] }
] scale 9 9 9 rotation 0 0 .3 -0.1745330 //translation 3000 0 -5100 translation 4000 0 -5100 }
|
gasclown
Jul 14 2004, 02:04 AM
Dna on the other menus - this is pretty obvious.

open up the xaps in the xips you want dna in.
in either default1 or 2 you'll find:
| QUOTE |
DEF theMainMenuCam Transform { children [ DEF theScreenWaver Transform { children [ Waver { rpm 4 axis 1 0 0 field 0.132 children [ Waver { rpm 3 axis 0 -1 0 field 0.162 children [ Waver { rpm 5 axis -2 0 0 field 0.132 children [
|
Then follow the second bit of xxwillisxx's tute (the bit after "in mainmenu5xip/default.xap...").
to get the dna this size instead of 28 28 28, 29 29 29, 25 25 25 for the scale under the def i used 12 12 12, 11 11 11, 11 11 11,
credits: acidbath for dna, bobmcgee for code, xxwillis for showing how, Jbone and gcue for tHc, MS and rezn8 for lack of foresight and skills respectively, akira for their modchip, xbox-scene for everything - fuck don't wanna leave anyone out lemme know if i've forgotten you and i'll straighten it out.
edit: fuck i forgot bunnie Huang - although i don't remember him ever claiming anything
xxwillisxx
Jul 14 2004, 02:11 AM
gasclown will this still work with yes and no comands in config
gasclown
Jul 14 2004, 02:14 AM
I don't lnow i didn't actually do the on off part of the mod - mines full time
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please
click here.