ID:268040
 
Errors:
Other.dm:10:error:Attack :invalid proc definition
Other.dm:2:error:/obj/verb/Attack:not a prototype
Other.dm:4:error:skills: compile failed (possible infinite cross-reference loop)


Code:
mob/var
skills[] = newlist(/obj/verb/Attack)
mob/Stat()
statpanel("Skills1",skills)




obj/verb
Attack
icon = 'hud.dmi'
Click()
usr.Attack1()


Can someone help me?
That should be list(), not newlist(). The newlist() proc will try to initialize every type path in it to become actual objects.

Lummox JR