Jump to content

Home

T3-H8


Recommended Posts

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

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

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

Archived

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

×
×
  • Create New...