ID:266551
 
it compiles fine but gives me a runtime error
runtime error: type mismatch
proc name: Send Message (/obj/Radio/verb/Send_Message)
usr: Thief jack (/mob/PC/Guy)
src: Radio (/obj/Radio)
call stack:
Radio (/obj/Radio): Send Message("123")
any help?
provide sum code and then youll get help
You can't use for like that. If you want to do something like that, just add everyone to a list, and then remove the user.
var/list/mob_list = list()
for(var/mob/M in world)
mob_list += M
mob_list -= usr


I'm pretty sure you know what to do after that.

-Rcet