Access to tutorial?
-
wierd, ill have a look and see if its not hidden or anything =]
-
Apparently the link or w/e was supposed to be there, aint, ill see if i can PM the author and find out if he has a linky we can use
-
Actually, I know exactly where it isā¦let me see what I can do
-
Effects Editing Guide by Aden
This guide is designed to help you understand how freelancer uses .ales and renders them on-screen, so that you may be able to utilise them better. Especially if youāre looking to edit/create some new .ales, though that is not covered in this guide. Whether the topics covered here have been covered/found before I do not know and cannot find tutorials based on this anywhere.
When using and modding effects and the way they appear on-screen, there are three main areas to look at:
FIRSTLY the .ale itself.
The heart of the effect, every definition, setting and used textures are specified in the ale itself, the iniās merely set up min+max parameters for freelancer to use. aleās consist of usually 2 or more components, some have only 1. A component of an ale would be (quick description):
FxAppearence + FxEmitter, the stars being replaced by whatever type of appearence and type of emitter. Each appearence section must have a corresponding emitter (logical) and the two make up one component. So a component therefore consisits normally of 2 sections. Field components only have 1 section however (turbulence, airfield, collidefield).Collide field, for instance, is what weapon projectiles use to know what to do when they strike an object and therefore doesnāt need a defining appearence or emitter.
With the release of Lancer_Solurusā ale editor, it is now very easy to create new ale effects.
SECONDLY, the file effect_types.ini found in DATA\FX\ folder. Each effect type has the same entry with different nicknames and values.
The EffectType is what defines the appearence of the effect it is attached to, or the effect you attach it to.This gets defined in effects.ini or effects_explosion.ini, examples:
From effects.ini:
[Effect]
nickname = pi_capgun_01_proj
effect_type = EFT_WEAPON_PROJ <ā-WHAT WE WANT - effect_types.ini
vis_effect = pi_capgun_01_proj <ādefined in the weapons_ale.ini file in DATA\FX\WEAPONS
vis_beam = pi_capgun_01_beam <ādefined in the beam_effects.ini fileFrom the effects_explosion.ini:
[Effect]
nickname = explosion_gas_mine
effect_type = EFT_EXPLOSION_SMALL <ā-WHAT WE WANT - effect_types.ini
vis_effect = explosion_gas_mine <ādefined in the explosions_ale.ini DATA\FX\EXPLOSIONS
snd_effect = med_explosion1 <ādefined in sounds.ini DATA\Audio
lgt_effect = elite_flash_to_red <ādefined in lightanim.ini DATA\FX
lgt_range_scale = 30 <ārange of light
lgt_radius = 30 <āscale of rangeSo, based on the line: effect_type = EFT_EXPLOSION_SMALL , this means that the explosion_gas_mine effect will use these effect settings from effect_types.ini:
[EffectType]
nickname = EFT_EXPLOSION_SMALL <ā- the effect type used in the effects.ini file.priority = 1.000000 <ā Iām not entirely sure what these mean but I believe it has to do with the way the effect gets culled in relation to other effects on-screen.
generic_priority = 1.000000 <ā Once again, Iām not entirely sure what these mean but I believe it has to do with the way the effect gets culled in relation to other effects on-screen.
lod_type = EFT_LOD_SMALL <ā The level of detail setting defined in effects.ini. (I have not changed these for any effect and have so far gotten the results I want without altering any of the lod settings)
radius = 20.000000 <ā The on-screen radius of the effect, this is a max setting, if the ale itself has a size, radius, width, etc of 30, it will only show 20 (2 thirds) of the effect.
visibility = CULL_OFFSCREEN <ā What freelancer should do when the player does not have the effect in view, i.e., if its behind you it will be culled (not drawn), opposite value is EXIST_OFFSCREEN.
update = CULL_UPDATE <ā How to update the effect offscreen, CULL_UPDATE can be used with EXIST_OFFSCREEN, opposite value is UPDATE_OFFSCREEN.
run_time = 15 <ā The maximum time the effect may run, -1 is infinte, the effect would then run as defined in the ale itself.
pbubble = 500, 1000 <ā The minimum of visual range before cutoff (fl cannot delete the effect before this distance) + maximum visual range of the effect (the one Iāll explain). If you create a beam projectile that can travel for 10k and the lifetime in the ale is specified to do that, having a value of 5000 would mean that your beam would be instantly (very ugly) deleted at only 5k, if the ale is set to last only about 2k (determined with lifetime settings in the ale + speed of the projectile in equipment files) then it will fade nicely enough. This is basically the farthest that the USER sees the effect so regardless of whether its for a projectile YOU fire or an explosion in the distance, you will not see the effect (or the rest of it) if you are beyond the second value of pbubble.Now I hope you can see how this would affect an effects appearence on-screen, also, how it could limit any custom aleās you create. So before you rack your brains as to why your effect just magically disappears after a given time/distance, check the second value of pbubble and make sure of the runtime.
And LASTLY, the poolsizes for verts+indices, which can be found in Freelancer\EXE\dacom.ini.
This section isnāt very important to the appearence of the effect itself but to how many effects can be drawn properly at once. This is called the poolsize, the ones you will want to change are these just below the [Alchemy] heading:FxBasicAppearance.poolSize = 1000 ; each particle can generate: 4 verts 6, indices
FxRectAppearance.poolSize = 400 ; each particle can generate: 4 verts 6, indices
FxPerpAppearance.poolSize = 250 ; each particle can generate: 4 verts 6, indices
FxOrientedAppearance.poolSize = 0 ; each particle can generate: 4 verts 6, indices
FLBeamAppearance.poolSize = 680 ; custom app from flalchemy.dll: each particle can generate: 5 verts 24 indices
FLDustAppearance.poolSize = 250 ; custom app from flalchemy.dll: each particle can generate: 4 verts 6 indices
;ā-------------------- total = 2600 -------;Now, if you look at most ales, as I said, have two components and a component has two sections, (an appearence+its emitter) and in many cases both appearence sections will be FxBasicAppearance. So if you have a long playing effect with a high max pbubble value (the one from EffectType) and two FxBasicAppearance entries in the ale itself, then only two instances of that effect can exist on-screen (properly) since there would be a total of 4 FxBasicAppearance playing out and the FxBasicAppearance poolsize is 1000 (4verts).
For instance, if you have this long playing long visual range effect on missiles and their trails and you fire three missiles, then after the third is fired all three trails will be horribly cutoff in sections because now youāve created 6 FxBasicAppearance verts and the poolsize is only 4.
This is how mine is set up, feel free to increase or decrease as necessary, though I find these to be perfect for now:
FxBasicAppearance.poolSize = 5000 ; each particle can generate: 20 verts 30, indices
FxRectAppearance.poolSize = 800 ; each particle can generate: 8 verts 12, indices
FxPerpAppearance.poolSize = 500 ; each particle can generate: 8 verts 12, indices
FxOrientedAppearance.poolSize = 0 ; each particle can generate: 4 verts 6, indices
FLBeamAppearance.poolSize = 1360 ; custom app from flalchemy.dll: each particle can generate: 10 verts 48 indices
FLDustAppearance.poolSize =500 ; custom app from flalchemy.dll: each particle can generate: 8 verts 12 indices
;---------------------- total = 8160 -------;
ENTRIES BEHIND COMMENTS DONT NEED TO BE CHANGED, I DID IT FOR SHOW.Hope this is helpful to those editing ales, its the only time Iāve needed to find and change all these things so Iām sure it will be useful to others.
If anything here is incorrect or missing then please let me know.^
There it is! I would put it in but it seems like someone is already editing it.
-
Unlocked it and fixed it. Thanks for the heads up, ST, and for the tut, Sushi.
-
Many Thanks guys.
Another problem or two - I tried downloading a couple of tutorials from hereā¦
http://the-starport.net/index.php?option=com_docman&task=doc_download&gid=128&Itemid=43
and
http://the-starport.net/index.php?option=com_docman&task=doc_download&gid=54&Itemid=43
and they each only load a smaller part of the whole file, about 46-47kb - can you please test / fix? There may well be other broken too.
TIA.
-
Both work just fine hereā¦
-
Odd, both say āthe file is in an unknown format or damagedā when I try to unzip them after downloading.
And both are smaller than the stated file size.
It may be FlashGet on my PC - have you been able to download and unzip them ok?
-
Yes, I opened them and couldnāt see any issue. Iām using the default Firefox downloader.
-
http://the-starport.net/index.php?option=com_content&task=view&id=58&Itemid=29
does anyone have this tutorial? DL link on that page is broken. -
Here you go man, seams filefront has deleted all my files gunna have to reupload them all and relink
heres the guide >> http://www.filefront.com/14080489/HUD_Editing_Guide.zip
-
wow that was fast thanks
-
no worries =] welcome to SP