TheGhoulKisser Posted February 16, 2012 Share Posted February 16, 2012 Can anyone here help me? I'm not that good at scripting and I'd like to know what kind of script should I use if I wanted my player to have an outfit equipped at the very start of the game? I mean, instead of having her waking up naked in the Doc's house. *cough* body replacer *cough* Let's say that I want her to wear a bramhin skin outfit without using console command. What should I do? Link to comment Share on other sites More sharing options...
Quetzlsacatanango Posted February 16, 2012 Share Posted February 16, 2012 Create a quest, tick start game enabled. Give it a quest ID, for example, aaaCoverMyJunkQuestCreate a quest script, should look something like scn covermyjunkscript Begin GameMode player.additem <id of whatever outfit you want them to have> 1 player.equipitem <same id> stopquest aaaCoverMyJunkQuest End Make sure you choose the covermyjunk script from the script dropdown on your new quest. Link to comment Share on other sites More sharing options...
TheGhoulKisser Posted February 16, 2012 Author Share Posted February 16, 2012 It worked! Thank you. So, this is basically console commands in script form right? Link to comment Share on other sites More sharing options...
Quetzlsacatanango Posted February 16, 2012 Share Posted February 16, 2012 That's all scripts are, console commands + some blocks to tell it when to run and some defined variables. Link to comment Share on other sites More sharing options...
TheGhoulKisser Posted February 16, 2012 Author Share Posted February 16, 2012 So it won't be a problem if I create a script where my character would start the game with a minimal number of perks. Nice. Link to comment Share on other sites More sharing options...
Recommended Posts