obj
it
verb
Instant_Transmission(mob/characters/M in world)
set name = "Instant Transmission"
set category = "Fighting"
if(M.block)
usr << "[M] has blocked transmissions."
return
...
mob/var
block
mob/verb/IT_Block()
if(!Block)
src << "You block IT"
src.Block=1
else
src << "You unblock IT"
src.Block=0
mob/var
Block
I want to make it so players can block it and other players cant it to them but when they have it unblocked i cant it to myself
it stands for instant transmission
Can anyone help me?