ID:174342
 
for instance:

if i group all of the spell verbs into a spell category, how could i put the image of the spell verb infront of it?
it would use the prefix thing right?
Make the spell an object.

Example:
obj/spellface
Lightning
icon = 'Lightningspell.dmi'
Click()
usr.Lightning()

mob/var/list/skills = newlist(/obj/spellface/Lightning)
// you have the skills list which lightning is already in place of it

mob
Stat()
statpanel("Skills",src.skills) // makes a new statpanel showing your skills, including their face icon and name

proc
Lightning()
// your lightning stuff!


~~ Dragon Lord ~~
In response to Unknown Person
thanks i'll try that