Check if Player Exists
-
I want to check if another player exists (loaded in Chunks)?
-
@yletzter
This is one way you could do it.function isLoaded(name) { for each (var entity in mc.theWorld.playerEntities) if (entity.getName() == name) return true }