ID:174858
Jul 13 2003, 6:42 pm
|
|
How can I make it check if the mob/player a player want to teleport to is online before teleporting?
|
Copyright © 2024 BYOND Software.
All rights reserved.
src.loc = M.loc
That way you can only teleport to mobs in the world. If you want to teleport to only players:
mob/admin/verb/Teleport(mob/M in world)
if(M.client)
src.loc = M.loc
<-Airjoe->