function setPlayerMaxHealth
This function will set the player max health points for all players.
Original: setPlayerMaxHealth
Declaration
async def setPlayerMaxHealth(id : int, maxHealth : int)
Parameters
int id: the player id.
int maxHealth: max health points amount.
Source code in src/pyg2o/functions/player.py
1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 | |