Numenor awaits, with new armies, units, factions and heroes; witness the darkest Age of Middle-earth |
Welcome Guest ( Log In / Register ) |
Quick Lists Top RatedTutorials Living World Map G… Ultimate beginner'… Arrow scaling bug… Raising Heroes max… Creating an asset.… Proper Fire Arrow… Simple Structure B… Making a simple Ma… Quick and easy sno… Making patrols nea… Mods The Dwarf Holds The Peloponnesian… RJ - RotWK The Elven Alliance… Helm's Deep Last H… The Elven Alliance Special Extended E… Kings of the West… RC Mod The Wars of Arda Downloads BFME1 1.06 Widescr… Enhanced W3D Impor… Fudge's Map Pack LotR/BfME HD Logos Osgiliath Shellmap Crystals Of Ancien… 2v1 Wold The forests of Dru… Converted BFME2 an… ROTWK animations f… |
|||||||||||||||||||||||||||||||||||||||||||||||
Register and log in to move these advertisements down Basic FX editing
**NOTE: Since the writing of this tutorial a tool has been released that you can use to make FX's... it is downloadable in the "Downloads" section of this site. It was made by Gil-Galad and is called: FX Particle System Editor. This tutorial will still be usefull to you if you want to understand the basics of FX coding. ----- In FXparticleSystem.ini you will find this for each fx:
To change the color you will need to edit this part:
The game reads this as a simple RGB color. Just change the RGB to whatever your new color is... if your not sure what the RGB is for your specific color, then open up Paint or any other image editing program. It should have a custom color selector, which will let you change the color and it should tell you what the RGB is for that color. (the default windows paint does this, which is what I use) So if I want to take that existing Blue Anduril effect and make it Orange, I would change it to look like this:
Notice that I kept the original colors, but I commented it out by putting ";;;" infront of it, thus telling the game not to read the following text. Copying and Creating a new FX: Now lets say that I wanted to keep the blue Anduril for Aragorn but make an Orange Anduril for the WitchKing. To do this I will have to copy every refrence to Anduril and create a new FX called WKAnduril. I will have to create new refrences in the *Blank Unit's ini* (in this case the WitchKing), possibly AtributeModifier.ini and ParticleSystem.ini, definately FXList.ini and FXparticlesystem.ini. Now that I have my new copy of Anduril, I need to change the color and any other powers. Once thats done I have to tell the game WHEN to play this FX... -so if I'm trying to get it to play when I activate a special power (by clicking on a button) then I would go to *yourunit.ini* and add this line to the Special power that I want it to go along with: "TriggerFX =FX_WKAnduril". Then the special power should look something like this:
-Now, lets say that I want the FX to play just like a Leadership glow...constant once activated. If thats the case I would need to go to AtributeModifier.ini and find my Leadership Modifier and add this:
Then it should look something like this:
Now while we are in AtributeModifier.ini we can do some really cool things: we can change the leadership our hero gives, we can change how long it lasts (must be the same as the special power in *yourunit.ini*), and we can change what FX it gives. You can look at the different modifiers to see the possibilities... -Now, lets say that we want this power to activate BEFORE another special power...this is simple but took me a while to figure out. In *yourunit.ini* under the special power Behavior there is this:
You need to change this to "No":
That will tell the game to play the WKAnduril then start the other special power. -Now what are you going to do if your FX shows up in the wrong spot on your unit? Simple, you move the FX. There are two ways to do this, you can change the bone it attaches to: (under FXList.ini)
Or if that doesn't work you can change the position of the FX with this code: (FXParticleSystem.ini)
This changes the Start and End points for the FX...and as you can tell it uses X,Y,Z axis positions. You'll just have to play around with the settings untill it looks right. -Now What if you either don't want your power to last forever, or you do want it to last forever? Well in either case you'll have to edit the Lifetimes... (FXParticleSystem.ini)
To change how fast or slow the glow pulses you will have to edit "Lifetime = ??". To edit how long the FX lasts before it dissapears you need to edit the "SystemLifetime = ??"... NOTE: If you want your FX to play before your special power...it will, but it will also play again when the special power activates. So you'll have to mess around with it untill it works the way you want. -Now, if you are creating a new weapon then you will need to change the weapon.ini to reflect your new weapon. There are several FX related catagories:
The full Weapon file looks like this:
This file gives you some really cool options for damage...as you can see from mine, you can tell the game to give minimal damage to units (Damage = WITCHKING_WORD_OF_POWER_DAMAGE is equal to "1" damage [game reads that Witchking_word_of_power_damage from GameData.ini]). This allows you to give every unit one damage, then under "DamageScalar" you can tell the game to multiply "1" by "blank percent" so that it really gives 20000 damage to select units. It's pretty cool. I hope this gave you a better understanding of the FX systems that BFME uses... At the very least you can now change the color of an FX... CommentsDisplay order: Newest first Perci - Tuesday January 25, 2011 - 11:21 If your editing projectiles, its best to choose a default arrow like GoodFactionArrow and add a trail onto it. Zarmoz - Monday December 22, 2008 - 5:10 i tried to change the color on the flaming arrows, but it didn't work, can you tell me what to do? Annatar - Thursday September 20, 2007 - 5:08 thanks.. |
|||||||||||||||||||||||||||||||||||||||||||||||
"One site to rule them all, one site to find them, © All Rights Reserved Eric Edwards ©2013. |