Miles Edgeworth Posted June 25, 2007 Share Posted June 25, 2007 Is it possible to make something like T3-H8? Link to comment Share on other sites More sharing options...
SykoRevan Posted June 25, 2007 Share Posted June 25, 2007 If it's a re-skin of T3-M4 to look like T3-H8, that's a very easy thing to do. Just take T3-H8's texture file and re-name it P_T3M3_01, then place it in your Override folder. Then T3-M4 will look like T3-H8. I've already done this, so if you want it, just PM me your e-mail and I'll send it to you. Link to comment Share on other sites More sharing options...
Miles Edgeworth Posted June 26, 2007 Author Share Posted June 26, 2007 No, I mean something that follows you around, without being a party member, and it explodes after a certain amount of time. Link to comment Share on other sites More sharing options...
SykoRevan Posted June 26, 2007 Share Posted June 26, 2007 Ahh I see. I'm not sure how that would work, although I suppose you could use the same script used on T3-H8 on another NPC, although scripting is not my specialty. Also, try to be more descriptive in your first post to avoid confusion. It helps others to help you faster Link to comment Share on other sites More sharing options...
glovemaster Posted June 26, 2007 Share Posted June 26, 2007 Maybe if you apply this to your NPC then it will follow and blow up after a while. You will need to apply this directly to the NPC because this script does not actually say who to follow the party leader. void main(){ object oPC = GetFirstPC(); object oNPC = OBJECT_SELF; effect eBang = EffectVisualEffect(3003); effect eKill = EffectDamage(GetMaxHitPoints(oNPC)); ActionDoCommand(ActionForceFollowObject(oPC)); DelayCommand([color=green]Time Before The NPC Explodes[/color], ApplyEffectToObject(DURATION_TYPE_INSTANT, eBang, oNPC)); DelayCommand([color=green]Time Before The NPC Explodes[/color], ApplyEffectToObject(DURATION_TYPE_INSTANT, eKill, oNPC)); } You will need to replace: Time Before The NPC Explodes with somthing like 30.0 (30 seconds) Im not a scripting genious but i think (fingers crossed) that will work... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.