CCI Tutorial!

New Member
✔️ HL Verified
Joined
Feb 12, 2010
Messages
403
Best answers
0
Location
Planet Vegeta
I read the CCI Tutorial but i dont know how to made this >>>>

1. How to add FX transformation efects in 15 sec trans!
2. How to add sound for c_intro.wav
3. How to add new charges, starts and trails on beams!
- How to change the genericbeam from green to blue
4. How to add sounds for trans like tp_ssj and t_ssj

And Thats All For Now :)
 
Last edited:
ESF Old Timer
✔️ HL Verified
🚂 Steam Linked
🌟 Senior Member
Joined
Mar 4, 2007
Messages
646
Best answers
0
Location
Netherlands / Fryslan Boppe @ Drachten
You read the trial of CCI that is made by Raven??
And you still dont know how..

Hmm I think its going to be very hard to teach you otherwise.
Since the tutorial explains a lot. Step by step.

All I can say follow step by step the tutorial and try to bring that in your code.
If you do that it should work.
If you try and it wont work then I am able to help you out.
 
ESF Old Timer
✔️ HL Verified
🚂 Steam Linked
🌟 Senior Member
Joined
Mar 4, 2007
Messages
646
Best answers
0
Location
Netherlands / Fryslan Boppe @ Drachten
Its not to much.
In fact this is kinda easy.

Here you code the effects that you wanna use for your transformations.

like:
public fxAurakaioken( Core[] )
{
AddFx( Core[0], "fxModelEntity", "models/evolution/Auras/shape_08.mdl", 0, 0, 50.0, 0, 0, 0, 1.0, 0.3, 0, 3 );
}

This gives me an Kaioken Aura looking.

or

public fxAvatar( CORE[] )
{
new Client = CORE[0];
RemFx( Client, "fxAvatar", 0);
setClientMODEL( Client, "ecx2.goku_s2" );
AddFx( Client, "fxAvatar", "create", 1, 1.0 );
}

or

public fxLightnings( Core[] )
{
AddFx( Core[0], "fxSpriteRays", "sprites/ecx.lightning.spr", 8, 20, 50, 255, 1, 1, 150, 200, 650, 0, 22 );
AddFx( Core[0], "fxLightning", "sprites/ecx.lightning.spr", 2, 50, 150, 200, 10, 10, 250, 10, 100, 0 );
return 1;
}

This one create lightning effects.

You can find more in the CCI FXlib.pdf that came with CCI.
Its not realy that hard you know.
Just dont give up and keep trying to change stuff to see the result.
 
Last edited:

Users who are viewing this thread

Top Bottom