HailHell Posted February 8, 2015 Share Posted February 8, 2015 is taht a problem? Link to comment Share on other sites More sharing options...
HailHell Posted February 8, 2015 Share Posted February 8, 2015 (edited) I have an idea for learning thei would make this sort of scriptfor this int Rank ; a global one, never used it before though so my script wont be accurate but u will get the idea; anyway so lets say novice is 0 apprentice is 1 and so on event onread() if Rank == 0 game.getplayer().addspell(dummyspell) elseif Rank == 1 game.getplayer().addspell(spellrank1) elseif Rank == 2 game.getplayer().addspell(spellrank2) elseif Rank == 3 game.getplayer().addspell(spellrank3) elseif Rank == 4 game.getplayer().addspell(spellrank4) endifendevent This way you could add multiple spells to one book so that the player doesn't need to keep around a billion booksor do this event onread() if Rank <=3 game.getplayer().addspell(dummyspell) else game.getplayer().addspell(spellrank4) endifendevent Edit: i think making the player keep books around until he is appropriate rank would also really add to the immersioni mean what wizzard throws away wisdom?This would mean that the player needs to dedicate himself to magic not just get it liek everything else in skyrim Edited February 8, 2015 by HailHell Link to comment Share on other sites More sharing options...
ArronDominion Posted February 9, 2015 Share Posted February 9, 2015 If you rolled with this idea, make sure the book itself doesn't teach a spell (as it will destroy the book). Also, for the not trained rank, you could display a message saying that you don't have sufficient knowledge for this spell, instead of adding a spell. Link to comment Share on other sites More sharing options...
JetSteele Posted February 10, 2015 Author Share Posted February 10, 2015 I could work with this, thanks for the ideas :) Link to comment Share on other sites More sharing options...
Recommended Posts