//<works>
mob/verb/Psiblast1(mob/M as mob in oview(1))
var/Psiblast = pick(question_list1)
var/Answer = ParseQuestion(usr,Psiblast)
if(Answer == TRUE)
src:attack(M)
else
src << "False."
Backlash()
DeathCheck()
//</works>
//<8errors>
mob/verb/Psiblast1(mob/M as mob in oview(1))
set category = "Psionic"
var/Psiblast = pick(question_list1)
var/Answer = ParseQuestion(usr,Psiblast)
if(Answer == TRUE)
src:attack(M)
else
src << "False."
Backlash()
DeathCheck()
//</8errors>
If I try to set a category for this verb it gives me a heap of errors, I haven't really had problems doing it with any other verbs but this one just doesn't want to cooperate