My verbs
mob/communication/verb/
Tell(mob/M in oview(2),m as text) //mob/M is the argument which needs someone to specify who M is... m becomes the variable representing text
if(M==src)
return 0
else
M << "[usr] has whispered to you [m]"
D_Chat()
client.chat = input("Chat","Select your default chat output.",client.chat) in list("Global","Normal")
Say(m as message)
if(client.chat=="Global")
world<<"[html_encode(usr)]: \green[html_encode(m)]"
if(client.chat=="Normal")
view(src)<<"[html_encode(usr)]: \blue[html_encode(m)]"
MPlayerCheck()
if(mplayer==1)
verbs+=/mob/communication/verb
Problem description:
runtime error: wrong type of value for list
proc name: MPlayerCheck (/mob/proc/MPlayerCheck)
source file: proc.dm,7
usr: Spiderdude (/mob/player)
src: Spiderdude (/mob/player)
call stack:
Spiderdude (/mob/player): MPlayerCheck()
Spiderdude (/mob/player): Login()
Setting network delay to 0.
It doesn't give them the verbs... is there a way to make it put in the whole path instead of having to put the individual verbs?
verbs+=typesof(/mob/communication/verb)
That should work.