ID:176742
 
How would i make it so that spells go into a spell statpanel instead of the inventory one?
Don't add the spells to usr.contents.
Put spells into usr.Spellsinventory instead of just usr.
You could try something like this

mob/var/spells[]

Then try spells+=src
spellHolder

mob
var/temp/Spells
Login()
Spells = new spellHolder
..()
Stat()
statpanel("Spells")
stat(Spells.contents)