API ForEachPlayer

From Vendetta Lua
Jump to: navigation, search

ForEachPlayer

Definition

ForEachPlayer( function  func) ->  nil
Description

calls func with the character id of each player in the sector. that includes bots and the sector thingy itself
Arguments

Type Name Description
function func receives one argument from ForEachPlayer. func(number charid)
charid = character id
Returns

Type Name Description
nil
Notes

Example:

ForEachPlayer(function (id) print(id) end)

prints a list with all players in the sector