demonflame Posted January 13, 2009 Share Posted January 13, 2009 Hi, how do you - in the the construction set - add and item to the players inventory so that it's there at start of game?Uh, same question for spells, without having to do it in the races menu. Link to comment Share on other sites More sharing options...
thebigba Posted January 13, 2009 Share Posted January 13, 2009 Hi, how do you - in the the construction set - add and item to the players inventory so that it's there at start of game?Uh, same question for spells, without having to do it in the races menu. Well, You could create a quest, name iot whatever you want to name itclick start game enabled then write a script one that looks like this... scn givemespellscript short doonce begin gamemodeset doonce to 0if doonce == 0player.addspell spell1 ;whatever the name of the spell you want to add will go in place of spell1set doonce to 1endifend make sure you made the script a quest script.and addit into the quest script place on the main page of your new quest. then save it and at the beggining of the game you should be getting you spell You could also set a certain time for when you want your spell added to the game you could add to the script if doonce == 0 && player.isincombat == 0 && player.getstage charactergen > 80 by adding that line you are saying when the charactergen quest reaches over stage 80 then you will get the spell as long as you are not in combat. Thats all you have to do really to add the spell to yourself. to add a spell or item to an npc just go to NPC in the object windowfind the name of the npc you want and double clickdrag the spell or item from the object list you want to add to the npc into the npc's inventory list and save the project. Wala. Link to comment Share on other sites More sharing options...
rondivu Posted January 14, 2009 Share Posted January 14, 2009 Wow, that is quite thorough. I wish I had had this earlier when I first started figuring out how to add stuff. If you need more help for how to use scripts, etc. ask here and also check out: http://cs.elderscrolls.com/constwiki/index...pting_Knowledge They have lots of info. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.