function setPlayerMana
This function will set the player mana points for all players.
Original: setPlayerMana
Declaration
async def setPlayerMana(id : int, Mana : int)
Parameters
int id: the player id.
int mana: mana points amount.
Source code in src/pyg2o/functions/player.py
1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 | |