Jugg3r Posted February 17, 2012 Share Posted February 17, 2012 Hi, I am working on a new Standalone Map for Skyrim. At first i want to strip the character of all items and spells.I wrote a script which removes all items, but when it comes to spells i wont work. As starting character for testing (coc to location) you will usually take race nord, thus he gains fear shout, healing and flames as spells. But i cannot remove those even with console commands (player.removespell 00012fcd for example). Any ideas why? regards PS: one version of the million snippets i tryed - i tryed different ways to get it done. The funny thing is: the messageboxes are shown, even if the spells are not removed ... oO Scriptname StripItems extends ObjectReference {Removes All Items and Skills from entering Player} spell property Flames auto spell property Healing auto Event OnCellLoad() stripHim() endEvent function stripHim() Game.GetPlayer().removeAllItems(abRemoveQuestItems = true) if (Game.GetPlayer().removeSpell(Flames) == True) Debug.MessageBox("Flames removed") endIf if (Game.GetPlayer().removeSpell(Healing) == True) Debug.MessageBox("Healing removed") endIf Debug.MessageBox("You have been striped of all Gear") endFunction Link to comment Share on other sites More sharing options...
Leeira Posted February 17, 2012 Share Posted February 17, 2012 Have you tested it with a normally created char? There might be something hardcoded which only applies to that... let's call him "standard coc charakter", which is not applied to a normally created char. Link to comment Share on other sites More sharing options...
Jugg3r Posted February 17, 2012 Author Share Posted February 17, 2012 No, i just coc into it from menu. But i might try to give him XP and some spells to remove the generic type and see what happends after that. Link to comment Share on other sites More sharing options...
Jugg3r Posted February 17, 2012 Author Share Posted February 17, 2012 Well, a new lvl 1 Char is right the same as coc into the dungeon. It stripps all items but leaves the spells :( Link to comment Share on other sites More sharing options...
Jugg3r Posted February 18, 2012 Author Share Posted February 18, 2012 So where do i find the races scripts? Link to comment Share on other sites More sharing options...
Recommended Posts