jail2.dm:1:error:Jail :undefined proc
jail2.dm:10:error:UnJail :undefined proc
and this is what i have so far
Jail(mob/M in world)
set category = "Police"
set name = "Jail"
set desc="To jail a unrulely character"
M.loc=locate(169,12,3)
usr << "You have Jailed [M]"
M << "You have been jailed by [usr]"
world << "[M] was jailed by [usr]"
UnJail(mob/M in world)
set category = "Police"
set name = "Unjail"
set desc="To Unjail a unrulely character"
M.loc= locate(169,9,3)
usr << "You have Unjailed [M]"
M << "You have been Unjailed by [usr]"
world << "[M] was Unjailed by [usr]"
part.