Help - Search - Members - Calendar
Full Version: Dna From Bsx On Light
Scenyx Entertainment Community > Xbox1 Forums > Dashboard Forums > Official Team UIX Forums > Archived Forum > BlackStormX Dashboard (BSX)
Pages: 1, 2
xxwillisxx
user posted image

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
yes it'll be a good idea ! laugh.gif

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 !!! beerchug.gif beerchug.gif
xxwillisxx
QUOTE (alphaxav @ Jul 9 2004, 03:45 AM)
yes it'll be a good idea !  laugh.gif

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 !!!  beerchug.gif  beerchug.gif

i think Spike13 is working on something like that
Alekz
yeah!!! this sounds good!!1
bsx isn't sexy enough to beat THC-Lite with these!!!
thc + dna = love.gif
Infamous_One
wink.gif post the code already , you can say that you didnt made it and the names of the makers will be posted later. , POST IT!!! blink.gif
basil
Just sent a msg to xxwillisxx. I assume he will be posting the code shortly after he reads it. biggrin.gif
Flexmaster Frag
I was told that acidbath deserves credit for the dna.
basil
(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
ph34r.gif
PID
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 blink.gif

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 grr.gif
BobMcGee
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
man... ppl.....


long live BtShXc!! wink.gif
Infamous_One
QUOTE (PID @ Jul 10 2004, 01:21 AM)
Infamous one, you are a COCK! Your mommy must be so proud !


tongue.gif yep , i get a lot of pussy. you should try some.


edit: short live BtShXc!!


Long Live THC. muhaha.gif
Alekz
@ 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 grr.gif

waht i actually wanted to say,...


pop.gif please give us the dna thing pop.gif

Alekz
@ 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 grr.gif

what i actually wanted to say is ,...


pop.gif cmon xxwillisxx, please give us the dna thing !!! pop.gif


jester.gif

peace
clown88
You have got to be kidding me!
You hypocritical bastards rolleyes.gif
PID
laugh.gif Infamoose one.

You get alot of your mums pussy. Good for you.

Master3xBOx
^^ LMFAO

rotfl.gif
rotfl.gif
rotfl.gif
xxwillisxx
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

CODE
var theDNA;



look for function initialize()

and put

CODE
DNAstatus();



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
QUOTE (PID @ Jul 10 2004, 01:58 PM)
laugh.gif Infamoose one.

You get alot of your mums pussy. Good for you.

wink.gif hmm.
world in an oyster
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 smile.gif
xxwillisxx
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 smile.gif

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
Here's another pic of it. tongue.gif

user posted image

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

user posted image

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

blink.gif Thats awesome , it looks better on THC than on the Crappy Code Thiefs BullshitX.
brilliantdonkey
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? wink.gif
Darkzone
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? wink.gif

I cannot see any drop on the framerate at my Dash,so it works nice!
-WebSurfer-
@ xxwillisxx

you have many time to code, or ? biggrin.gif

again good work beerchug.gif

user posted image
xxwillisxx
QUOTE
you have many time to code, or ?


i do it after work ,i love to do it
Darkzone
Nice work xxwillisxx, keep it up!

I think you are one from the best here beerchug.gif
xxwillisxx
QUOTE (Darkzone @ Jul 12 2004, 02:32 AM)
Nice work xxwillisxx, keep it up!

I think you are one from the best here beerchug.gif

im not the best but i try

i do this for fun, to see if i can do it
loggio
Hey , nice work Willis , your doing some pretty cool stuff wink.gif. I tried it out lol , i like the results .
user posted image

Keep up the good work wont you. Cheers
Enjoy.

Loggio
Master3xBOx
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. tongue.gif biggrin.gif
brilliantdonkey
NICE! Thanks!

Haha, this is gonna be my permanent skin then. biggrin.gif
PID
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 wink.gif

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
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
Amen to that X-eQteR. Amen.
Infamous_One
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 wink.gif

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.

wink.gif 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.


dry.gif But you still the high credit for creating it.
PID
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
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) blink.gif
xxwillisxx
QUOTE
wink.gif  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
brilliantdonkey, Here's a screenshot of the new Satin Blue Skin. With the new sexy DNA also. Should be up on Allxboxskins.com soon. tongue.gif wink.gif

user posted image
Infamous_One
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. tongue.gif wink.gif

user posted image

blink.gif beerchug.gif laugh.gif ohmy.gif happy.gif love.gif

I LOVE IT!!! blink.gif
Darkzone
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
Droooooool
world in an oyster
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
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
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
user posted image

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
Dna on the other menus - this is pretty obvious.
user posted image

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
gasclown will this still work with yes and no comands in config
gasclown
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.
Invision Power Board © 2001-2013 Invision Power Services, Inc.