ace92 Posted August 5, 2008 Share Posted August 5, 2008 i made a force power script and some of it's powers is to change the view of the player, the force power itself works fine but for some reason when i use the force power, the body shows but there is no head just no head... here is the script: #include "k_inc_force" void main() { object oSource = OBJECT_SELF; effect eDisguise = EffectDisguise(671); effect eLink1 = EffectAbilityIncrease(ABILITY_STRENGTH, 75); eLink1 = EffectLinkEffects(eLink1, EffectBlasterDeflectionIncrease(100)); eLink1 = EffectLinkEffects(eLink1, EffectAttackIncrease(3)); ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink1, OBJECT_SELF, 20.0f); ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDisguise, OBJECT_SELF, 20.0f); } Link to comment Share on other sites More sharing options...
Da_man Posted August 5, 2008 Share Posted August 5, 2008 I am no code wizard like any of the other modders, but try have the change apperance part by itself and see if it works. I think it might have something to do with the other effects you got goin' on there. Link to comment Share on other sites More sharing options...
ace92 Posted August 6, 2008 Author Share Posted August 6, 2008 i tried what you suggested and i narrowed it down to this: #include "k_inc_force" void main() { effect eDisguise = EffectDisguise(671); ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eDisguise, OBJECT_SELF, 20.0f); } and still the body will show but the head will not. Link to comment Share on other sites More sharing options...
Dragoon ZER0 Posted August 6, 2008 Share Posted August 6, 2008 Is the line you've added to appearance.2da a 'modeltype' B with no specified head? The only thing (that I'm aware of) that uses a different appearance line to change just the body model is the unmasked Revan appearances (371 & 372 for both games) and they use head number 66. I've never really tried anything like this so I apologize if it's not much help. Link to comment Share on other sites More sharing options...
ace92 Posted August 7, 2008 Author Share Posted August 7, 2008 yes it's specified B, so what? and it's ok if it doesn't work the most important thing is that your try Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.