Kitty Corp Meow Mix Forums

Help & Tutorials => Help => Topic started by: ForOhFor Error on October 01, 2010, 12:58:58 PM



Title: Ray gun bullet?
Post by: ForOhFor Error on October 01, 2010, 12:58:58 PM
Does anyone know where it's located? I want to change the color of it.


Title: Re: Ray gun bullet?
Post by: Bush on October 01, 2010, 04:02:55 PM
No idea. But you could look at the already changed ray gun bullets in the brawl vault and reverse-engineer one.


Title: Re: Ray gun bullet?
Post by: ForOhFor Error on October 01, 2010, 07:17:09 PM
Good news: I found the model

Bad news: It doesn't appear to have any textures at all, nor color animations.....


Title: Re: Ray gun bullet?
Post by: dingo on October 01, 2010, 07:32:15 PM
It's a GFX. You don't change the color. <.<


Title: Re: Ray gun bullet?
Post by: DarkPikachu on October 01, 2010, 07:33:31 PM
check the mdl0
it may just be 2 meshes with a seperate material...

does it have a 'color' slot?

if not then it's controlled by a material...

I'm not sure how to edit those just yet... :/


Title: Re: Ray gun bullet?
Post by: ForOhFor Error on October 01, 2010, 07:42:57 PM
check the mdl0
it may just be 2 meshes with a seperate material...

does it have a 'color' slot?

if not then it's controlled by a material...

I'm not sure how to edit those just yet... :/

If you mean a section under the MDL0 called 'colors' then yes.

How would I edit it, then?


Title: Re: Ray gun bullet?
Post by: dingo on October 02, 2010, 07:15:12 AM
:srs:
It's a GFX. You don't change the color. <.<

It's in the EFLS file for all the basic GFX in the game. It's a GFX located in hex only and not something you can change, only remove. Again and hopefully not ignored this time. You DON'T change the color.

:srs:


Title: Re: Ray gun bullet?
Post by: jman on October 11, 2010, 05:37:46 PM
I just figure it out like a hr ago

Raybullet is found in Common3 pac > ef_common > Model data 30

You gotta do some hexing with the mdl0 file of the EffCommonRayGunBullet so export it as a mdl0

(http://i280.photobucket.com/albums/kk168/jmanx13/SSB/hexingColors.png)

Now if you look to the right u see ARGB pixel array those are the variables that need to be change
so now you load the mdl0 file into the hex editor.

(http://i280.photobucket.com/albums/kk168/jmanx13/SSB/RayGunHexColorLocations.png)

Yellow Color coded is where the lines start

Tama_Main
00001B20 - RayGun Laser Color data

TamaFlare_flare
00001B60 - RayGun Flare(This is the color of the aura around the Lazur)


Blue/Red color coded - these are the values in the ARGB color array in the same order
the difference is that instead of Alpha being the first variable its actually the last
each value is of RGBA is based on the 0-255 scale you just have to convert the number you want into hex

Example for the first one on 00001B20(Tama_Main)

R(Red) G(Green) B(Blue) A(Alpha - same thing as transparency)
FF            FF            FF        FF



this method will also work with other things as well






Title: Re: Ray gun bullet?
Post by: ForOhFor Error on October 12, 2010, 04:15:14 AM
Thanks!