ID:171324
 
When i try to write up my own i got this error maybe its me but heres the error

gm.dm:23:error:banned:undefined var
gm.dm:33:error:banned:undefined var
gm.dm:37:error:banned:undefined var
gm.dm:74:error:/mob/characters:undefined type path

On Line

23 i got

banned += M.key

and line 33

in banned

and liine 37

banned -= removal

and Line 74

if(istype(O,/mob/characters))

How can i fix those when i got an icon file separate for the character eg one for beavis and one for butt-head

Your errors tell you everything you need to know. You have no var named banned (you could have one called Banned or such, but remember DM is case-sensitive), and you have no type path called /mob/characters. You probably have similarly-named vars and type paths instead.

Lummox JR