XOMICH Posted April 5, 2013 Share Posted April 5, 2013 Hey, I'm currently working on a mod to bring a large player owned city to skyrim and was wondering if anyone can explain how to do a few thing because I;m a total noob at quest writing I need to put together : A courier A quest to buy a homeRadiant questsSome way of making an arena eries like oblivion Thanks in advance, especially as this means a step by step for muppets guide Link to comment Share on other sites More sharing options...
artificialsloth Posted April 5, 2013 Share Posted April 5, 2013 (edited) To make a quest to buy a home add this script to the dialogue option that the player says to buy the home game.getplayer().additem(HOUSEKEYID, 1) game.getplayer().removeitem(gold001, HOUSEPRICE) Then open the properties and add a new one. There will be a drop down menu set that to key and set the property name to whatever your keys ID is. For the second property do the same thing except set drop down menu to miscobject and the name to gold001 then hit ok and the script should compile. Also if you only won't the dialogue option to buy the house to show if the player has enough gold add a condition to the dialogue that you put the script on and set it to Getitemcount gold001 >= and set the value is whatever you want you're house to cost also set it to run on player not subject Theres a tutorial on how to make a courier here http://www.creationkit.com/Creating_Custom_Couriers. Edited April 5, 2013 by artificialsloth Link to comment Share on other sites More sharing options...
Recommended Posts