Plasma Storms and colonization

I recently got back into Sins and wanted to do some more personal modding. However, I was wondering if it was possible to create custom gravitywells with plasma storm graphics, for instance being able to create a colonizable asteroid in a plasma field. Basically, I want to create the inside of a gas cloud.

I have no idea how to go about doing this, so any advice is welcomed.


4,213 views 3 replies
Reply #1 Top

if you wan't to add it as a new planet make a mesh where you have a mesh point which is a flair with the plasma effect. I am not that experienced with planets, so there might be better advices.

Reply #2 Top

That does sound like something similar to what I had in mind. I'll look into it, thank you!

Reply #3 Top

Then I can give a more detailed description. You can add a mesh point by openning a .mesh file in text format (it is in bin like entity files and converted the same way) . As an example we can use the colonizeable asteroid.

first copy the AsteroidBig00.mesh and rename it to what you want then open it with notepad and add this point:

Point
  DataString "Flair-PlanetPlasmaStorm"
  Position [ 0.000000 0.000000 0.000000 ]
  Orientation
    [ 1.000000  0.000000  0.000000 ]
    [ 0.000000 1.000000  0.000000 ]
    [ 1.000000  0.000000  1.000000 ]

and add 1 to the NumPoints

then make a new .entity fx by copying the PlanetAsteroid.entity and change AsteroidBig00 in this line:

 meshName "AsteroidBig00"

With the name of the new mesh file you made.

I hope this helped :)