function getSpawnedPlayersForPlayer
This function is used to retrieve currently spawned players for given player.
Original: getSpawnedPlayersForPlayer
Declaration
async def getSpawnedPlayersForPlayer(id : int) -> list
Parameters
int id: the player id.
Returns
list [int]: ids of spawned players.
Source code in src/pyg2o/functions/streamer.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | |