function setPlayerDexterity
This function will set the player dexterity points for all players.
Original: setPlayerDexterity
Declaration
async def setPlayerDexterity(id : int, dexterity : int)
Parameters
int id: the player id.
int dexterity: the dexterity points amount.
Source code in src/pyg2o/functions/player.py
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 | |