function setPlayerStrength
This function will set the player strength points for all players.
Original: setPlayerStrength
Declaration
async def setPlayerStrength(id : int, strength : int)
Parameters
int id: the player id.
int strength: strength points amount.
Source code in src/pyg2o/functions/player.py
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 | |