Jump to content
⚠ Known Issue: Media on User Profiles ×

EvoEarth7

Members
  • Posts

    2
  • Joined

  • Last visited

Nexus Mods Profile

About EvoEarth7

Profile Fields

  • Country
    United States
  • Currently Playing
    Skyrim, Ark, Minecraft, 7 Days to Die

EvoEarth7's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thank you for replying! Unfortunately, that change didn't work. I used the basic xMarker for the moving teleport point. Is there a different one I should have used?
  2. After more than 2 weeks of scouring the internet and these forums, I just can't get my mod to work. I've watched tutorials and tried to follow the instructions I found in these links, but to no avail. Any help would be very much appreciated. I'm creating a portable home that can be accessed by casting a spell. I got the teleport in spell to work but can't get the teleport out to my previous location to work. When I'm in the home and cast the spell to go out, it puts me at the mod entrance again. (I've tried using all of the portable home mods I could find but none of them had everything I wanted in them.) My script said it was compiling properly so I can't figure out where the missing link is to make it work. Here is what I have so far: Scriptname CampTeleportAbility extends activemagiceffect ObjectReference Property DDMarker001 Auto ;xMarker in mod cell ObjectReference Property DDTeleportPoint Auto ;xMarker that is supposed to be placed in the world location I teleport from GlobalVariable Property DDTeleportCount Auto ;Spell cast on count 1 to enter mod, cast on count 2 to exit Event OnEffectStart(Actor akTarget, Actor akCaster) if DDTeleportCount.Getvalue() == 0 Utility.Wait(1.5) DDTeleportPoint.MoveTo(Game.GetPlayer()) Game.FadeOutGame(False, True, 2.0, 1.0) Game.GetPlayer().MoveTo(DDMarker001) Game.EnableFastTravel() Game.FastTravel(DDMarker001) DDTeleportCount.SetValue(1) Elseif DDTeleportCount.GetValue() == 1 Game.FadeOutGame(False, True, 2.0, 1.0) Game.GetPlayer().MoveTo(DDTeleportPoint) Game.EnableFastTravel() Game.FastTravel(DDTeleportPoint) DDTeleportCount.SetValue(0) Endif EndEvent Compiler Output: Starting 1 compile threads for 1 files... Compiling "CampTeleportAbility"... Starting assembly of CampTeleportAbility 0 error(s), 0 warning(s) Assembly succeeded Compilation succeeded. Batch compile of 1 files finished. 1 succeeded, 0 failed. Thank you in advance for your time and assistance! Evo
×
×
  • Create New...