Keiko Posted February 26, 2005 Share Posted February 26, 2005 Can someone show me where the force power damage is in k_inc_force.nss? thanks! Link to comment Share on other sites More sharing options...
Xcom Posted February 26, 2005 Share Posted February 26, 2005 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.