For some reason, I cannot get DreamSeeker to show a list of verbs when I say:
verb
Give_Player_Verb(var/mob/Client/Mob)
var/list/verb_list = typesof(/verb)
var/verb/Verb = input("","",0) in list(verb_list)
Mob.verbs+=Verb
I have also tried:
verb
Give_Player_Verb(var/mob/Client/Mob)
var/verb/Verb = input("","",0) as anything in typesof(/verb)
Mob.verbs+=Verb
and:
Give_Player_Verb(mob/Client/Mob)
Mob.verbs+= input("","") as anything in typesof(/verb)
But I always get this error:
runtime error: wrong type of value for list
proc name: Give Player Verb (/verb/Give_Player_Verb)
usr: Dreq (/mob/Client)
src: Dreq (/client)
call stack:
Dreq (/client): Give Player Verb(Dreq (/mob/Client))
And yes i tried without 'as anything'.. And the list never shows.... Any ides?
Also, surely it should be /mob/verb or /mob/something/verb rather than /verb? =P