Jump to content

Starting the player


Serrieth

Recommended Posts

I am creating a new mod that deals with the player starting in a spot that I want him to be in. But I don't know how? Is it a script?

 

Ex.

The player in Morrowind starts out in a Imperial prison ship.

 

How do I make the player start in a spot that I want him to be in.

Link to comment
Share on other sites

There are some scripts for CharGen at startup i think that sets the players starting location. This script is called "CharGen"

;global character generation script

 

begin CharGen

 

;short CharGenState is a global

; 1 = start

; -1 = all done. Set from CharGenDoorExitCaptain. Can save game after that is set

 

DisablePlayerControls

DisablePlayerJumping

DisablePlayerViewSwitch

DisableVanityMode

DisablePlayerFighting

DisablePlayerMagic

Player-> :!: PositionCell 61,-135, 24, 340, "Imperial Prison Ship" :!:

ChangeWeather "Bitter Coast Region" 1 ;sets beginning weather to cloudy, looks nicer

set CharGenState to 10

 

stopscript CharGen

 

end CharGen

 

-there are some other scripts on the player starting after charGen that refer to the player taking some actions to activate menus and functions ingame. You will have to change the references in this scripts to the references you want to use in your starting location so you can actually play the game proper.

Link to comment
Share on other sites

Archived

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

  • Recently Browsing   0 members

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