//host
var/list/GM=list("Eray")
mob/Login()
..()
if(GM.Find(src.key))
src.verbs+=typesof(/mob/GM/verb)
mob/var/mute = 0
mob/verb/Mute(mob/M as mob in world)
if(M.mute) M.mute = 0
else M.mute = 1
mob/verb/Say(msg as text)
if(mute) return
world << "[src]: [msg]"
mob/var/locked=0 //define this so everybody is born unlockedclient
/Move()//when the mob moves
if(mob.locked) return 0//If the client's mob's var, locked is equal to 1, end the movement proc, disallowing any movement.
else ..()//go on with
lifemob/verb/stopmoving(mob/M as mob in world)//pick a mob in the world
if(M!=src)//if you are not the mob that was chosen
M.locked=1//the mob you selected is locked
obj/Host_Cloak
icon ='host cloak.dmi'
icon_state ="host cloak"
verb/Disappear()
usr.invisibility = 1
world << "The host glows then disappears in a flash of light"
mob/verb
Boot(mob/M as mob in world)
del(M)
i want it so i can be the host no one else and that i can boot silnce stop ppl but theres a big inndetion error :O
ifemob/verb/stopmoving(mob/M as mob in world)//pick a mob in the world
plz help i need this finished