Jump to content

How does one script a special effect?


nhackett

Recommended Posts

I have this script on a book. It does exactly what I want, but it lacks something sparkly...

Scriptname nh_tele_toHall extends ObjectReference  

ObjectReference Property hallMarker auto
ObjectReference Property retMarker auto
Cell Property nh_hall auto

Event OnRead()
	Actor PlayerRef = Game.GetPlayer()
	Cell currentCell = PlayerREF.GetParentCell()

	If nh_hall != currentCell 
		retMarker.MoveTo(PlayerRef)
		Game.GetPlayer().MoveTo(hallMarker)
	EndIf

	If nh_hall == currentCell 
		Game.GetPlayer().MoveTo(retMarker)
	EndIf
endEvent

So you read a book and get telemajorted to a room with no exit. Read the book again and get telemajorted back to where you were.

Anyone able to tell me how to add some special effects OTHER than fading to black? What kind of property do I need to declare? etc. etc. I only found stuff on google about fading to black, and only with snippets that did not show what properties i need. Thanks for reading!

Link to comment
Share on other sites

It's IMods (image spaces). You make one in the CK, define a property for it and apply it. There's a wide range of IMods already made, but you can make your own as well.
Link to comment
Share on other sites

  • Recently Browsing   0 members

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