ID:149953
 
Good news as i fixed the errors/warnings but know when i beg the king this comes up in the text box......

runtime error: Cannot create objects of type /list.
proc name: RandQuest (/proc/RandQuest)
source file: quest.dm,44
usr: [Master GM] Tapion1 (/mob/DM/MGM)
src: null
call stack:
RandQuest()
the king (/mob/king): beg()
runtime error: Cannot read null.desc.
proc name: beg (/mob/king/verb/beg)
source file: quest.dm,31
usr: [Master GM] Tapion1 (/mob/DM/MGM)
src: the king (/mob/king)
call stack:
the king (/mob/king): beg()

heres the beg code you might be able to see something i cant....

verb/beg()
set src in view()
var/Quest/q = RandQuest()
usr << q.desc
quests += q

You're trying to add q to a non-list, quests isn't a list.
Your error is in RandQuest(), like it says, so seeing the source for beg() isn't all that helpful in this case.

Lummox JR