Jump to content

Home

Need to find out where the force power damage is in k_inc_force.nss


Keiko

Recommended Posts

Every damaging force power has this line somewhere:

 

SWFP_DAMAGE = Sp_CalcDamage(x,x,x );

 

Sp_CalcDamage is the function that can be found in the beginning of the file. It calculates damage based on a large variety of attributes.

 

[edit] I read in the other thread you want to make force drain life be more damaging.

 

Just scroll in k_inc_force.nss till you find:

 

/*

DRAIN LIFE

*/

 

below that look this line:

SWFP_DAMAGE = Sp_CalcDamage( oTarget, nDamTest, 4 );

 

just add a number to that to increase damage, like this for example

SWFP_DAMAGE = Sp_CalcDamage( oTarget, nDamTest, 4 ) [b]+ 100[/b];

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...