Jump to content

any teleportation weapons?


BloodDrop101x

Recommended Posts

That would be very easy to do. Just use a script effect like this with a condition on the effect item of "IsInInterior == 0":

ref rSelf

Begin ScriptEffectStart
set rSelf to GetSelf
PushActorAway rSelf 100
End

That won't teleport the actor - it will make them fly up into the sky in ragdoll mode before they come crashing back down. If you want to teleport them directly, use this instead:

float fPosZ

Begin ScriptEffectStart
set fPosZ to GetPos Z + 1000
SetPos Z fPosZ
End

Cipscis

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...