Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Creator: Bolodefchoco
- --Made in: 27/05/2016
- --Last update: 27/05/2016
- --[[ Notes:
- Does:
- Retorna todos os jogadores vivos e todos os jogadores da sala
- ]]--
- system.players=function()
- local alive,players = {},{}
- for k,v in next,tfm.get.room.playerList do
- if not v.isDead then
- alive[#alive+1]=k
- end
- players[#players+1]=k
- end
- return alive,players
- end
Advertisement
Add Comment
Please, Sign In to add comment