function setPlayerHealth
This function will set the player health points for all players.
Original: setPlayerHealth
Declaration
async def setPlayerHealth(id : int, health : int)
Parameters
int id: the player id.
int health: health points amount.
Source code in src/pyg2o/functions/player.py
1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 | |