feat: Added python binding to all functions
+ added docs to all functions
This commit is contained in:
3
docs/classes/item/ItemsGround.md
Normal file
3
docs/classes/item/ItemsGround.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# `static class` ItemsGround
|
||||
---
|
||||
::: g2o.classes.items.ItemsGround
|
||||
3
docs/classes/mds/mds.md
Normal file
3
docs/classes/mds/mds.md
Normal file
@@ -0,0 +1,3 @@
|
||||
# `static class` Mds
|
||||
---
|
||||
::: g2o.classes.mds.Mds
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
* `addEventHandler` replaced with decorator [event](events/event.md)
|
||||
* `addEventHandler` replaced with decorator [event](functions/event/event.md)
|
||||
```python
|
||||
@g2o.event('onInit')
|
||||
def evtInitFirst(**kwargs):
|
||||
@@ -93,3 +93,5 @@ def evtDrop(**kwargs):
|
||||
* `getPlayerRing`
|
||||
* `getPlayerShield`
|
||||
* `getPlayerSpell`
|
||||
---
|
||||
* `ItemsGround.getById` throws an exception instead of returning `null` if there's no item with given ID
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipAmulet
|
||||
This event is triggered when player equips or unequips amulet. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips amulet. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipAmulet](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipAmulet/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a amulet.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipAmulet
|
||||
This event is triggered when player equips or unequips armor. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips armor. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipArmor](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipArmor/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips an armor.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipBelt
|
||||
This event is triggered when player equips or unequips belt. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips belt. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipBelt](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipBelt/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a belt.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# `event` onPlayerEquipHandItem
|
||||
This event is triggered when game adds item to player hand, e.g: when player opens or consumes any item. When item is removed from hand, `null` is returned instead.
|
||||
This event is triggered when game adds item to player hand, e.g: when player opens or consumes any item. When item is removed from hand, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipHandItem](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipHandItem/)
|
||||
|
||||
@@ -7,7 +7,7 @@ Original: [onPlayerEquipHandItem](https://gothicmultiplayerteam.gitlab.io/docs/0
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who gets an item to his hand.
|
||||
* `int` **hand**: the id of the hand in which player holds item. For more information see [Hand](../../constants/hand.md).
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipHelmet
|
||||
This event is triggered when player equips or unequips helmet. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips helmet. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipHelmet](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipHelmet/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a helmet.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipMeleeWeapon
|
||||
This event is triggered when player equips or unequips melee weapon. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips melee weapon. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipMeleeWeapon](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipMeleeWeapon/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips an melee weapon.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipRangedWeapon
|
||||
This event is triggered when player equips or unequips ranged weapon. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips ranged weapon. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipRangedWeapon](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipRangedWeapon/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips an ranged weapon.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# `event` onPlayerEquipRing
|
||||
This event is triggered when player equips or unequips ring. When item is unequiped, `null` item id is returned instead.
|
||||
This event is triggered when player equips or unequips ring. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipRing](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipRing/)
|
||||
|
||||
@@ -7,7 +7,7 @@ Original: [onPlayerEquipRing](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a ring.
|
||||
* `int` **hand**: the hand id that the player is putting the ring on. For more information see [Hand](../../constants/hand.md).
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
# `event` onPlayerEquipShield
|
||||
This event is triggered when player equips or unequips shield. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips shield. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipShield](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipShield/)
|
||||
|
||||
## Parameters
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a shield.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# `event` onPlayerEquipSpell
|
||||
This event is triggered when player equips or unequips scroll or rune. When item is unequiped, `null` is returned instead.
|
||||
This event is triggered when player equips or unequips scroll or rune. When item is unequiped, empty `str` is returned instead.
|
||||
|
||||
Original: [onPlayerEquipSpell](https://gothicmultiplayerteam.gitlab.io/docs/0.3.0/script-reference/server-events/player/onPlayerEquipSpell/)
|
||||
|
||||
@@ -7,7 +7,7 @@ Original: [onPlayerEquipSpell](https://gothicmultiplayerteam.gitlab.io/docs/0.3.
|
||||
* `dict` **kwargs**:
|
||||
* `int` **playerid**: the id of the player who equips a spell.
|
||||
* `int` **slotId**: the slot id that the player puts the spell on in range `<0, 6>`.
|
||||
* `str` **str | null**: instance: the item instance from Daedalus scripts.
|
||||
* `str` **instance**: the item instance from Daedalus scripts.
|
||||
|
||||
## Usage
|
||||
```python
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` addEvent
|
||||
::: g2o.events.addEvent
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` callEvent
|
||||
::: g2o.events.callEvent
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` event
|
||||
::: g2o.events.event
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` removeEvent
|
||||
::: g2o.events.removeEvent
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` removeEventHandler
|
||||
::: g2o.events.removeEventHandler
|
||||
@@ -1,2 +0,0 @@
|
||||
# `function` toggleEvent
|
||||
::: g2o.events.toggleEvent
|
||||
2
docs/functions/chat/sendMessageToAll.md
Normal file
2
docs/functions/chat/sendMessageToAll.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` sendMessageToAll
|
||||
::: g2o.functions.chat.sendMessageToAll
|
||||
2
docs/functions/chat/sendMessageToPlayer.md
Normal file
2
docs/functions/chat/sendMessageToPlayer.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` sendMessageToPlayer
|
||||
::: g2o.functions.chat.sendMessageToPlayer
|
||||
2
docs/functions/chat/sendPlayerMessageToAll.md
Normal file
2
docs/functions/chat/sendPlayerMessageToAll.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` sendPlayerMessageToAll
|
||||
::: g2o.functions.chat.sendPlayerMessageToAll
|
||||
2
docs/functions/chat/sendPlayerMessageToPlayer.md
Normal file
2
docs/functions/chat/sendPlayerMessageToPlayer.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` sendPlayerMessageToPlayer
|
||||
::: g2o.functions.chat.sendPlayerMessageToPlayer
|
||||
2
docs/functions/event/addEvent.md
Normal file
2
docs/functions/event/addEvent.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` addEvent
|
||||
::: g2o.functions.event.addEvent
|
||||
2
docs/functions/event/callEvent.md
Normal file
2
docs/functions/event/callEvent.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` callEvent
|
||||
::: g2o.functions.event.callEvent
|
||||
2
docs/functions/event/event.md
Normal file
2
docs/functions/event/event.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` event
|
||||
::: g2o.functions.event.event
|
||||
2
docs/functions/event/removeEvent.md
Normal file
2
docs/functions/event/removeEvent.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` removeEvent
|
||||
::: g2o.functions.event.removeEvent
|
||||
2
docs/functions/event/removeEventHandler.md
Normal file
2
docs/functions/event/removeEventHandler.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` removeEventHandler
|
||||
::: g2o.functions.event.removeEventHandler
|
||||
2
docs/functions/event/toggleEvent.md
Normal file
2
docs/functions/event/toggleEvent.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` toggleEvent
|
||||
::: g2o.functions.event.toggleEvent
|
||||
2
docs/functions/game/exit.md
Normal file
2
docs/functions/game/exit.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` exit
|
||||
::: g2o.functions.game.exit
|
||||
2
docs/functions/game/getDayLength.md
Normal file
2
docs/functions/game/getDayLength.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getDayLength
|
||||
::: g2o.functions.game.getDayLength
|
||||
2
docs/functions/game/getHostname.md
Normal file
2
docs/functions/game/getHostname.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getHostname
|
||||
::: g2o.functions.game.getHostname
|
||||
2
docs/functions/game/getMaxSlots.md
Normal file
2
docs/functions/game/getMaxSlots.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getMaxSlots
|
||||
::: g2o.functions.game.getMaxSlots
|
||||
2
docs/functions/game/getPlayersCount.md
Normal file
2
docs/functions/game/getPlayersCount.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getPlayersCount
|
||||
::: g2o.functions.game.getPlayersCount
|
||||
2
docs/functions/game/getServerDescription.md
Normal file
2
docs/functions/game/getServerDescription.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getServerDescription
|
||||
::: g2o.functions.game.getServerDescription
|
||||
2
docs/functions/game/getServerWorld.md
Normal file
2
docs/functions/game/getServerWorld.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getServerWorld
|
||||
::: g2o.functions.game.getServerWorld
|
||||
2
docs/functions/game/getTime.md
Normal file
2
docs/functions/game/getTime.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getTime
|
||||
::: g2o.functions.game.getTime
|
||||
2
docs/functions/game/serverLog.md
Normal file
2
docs/functions/game/serverLog.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` serverLog
|
||||
::: g2o.functions.game.serverLog
|
||||
2
docs/functions/game/setDayLength.md
Normal file
2
docs/functions/game/setDayLength.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` setDayLength
|
||||
::: g2o.functions.game.setDayLength
|
||||
2
docs/functions/game/setServerDescription.md
Normal file
2
docs/functions/game/setServerDescription.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` setServerDescription
|
||||
::: g2o.functions.game.setServerDescription
|
||||
2
docs/functions/game/setServerWorld.md
Normal file
2
docs/functions/game/setServerWorld.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` setServerWorld
|
||||
::: g2o.functions.game.setServerWorld
|
||||
2
docs/functions/game/setTime.md
Normal file
2
docs/functions/game/setTime.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` setTime
|
||||
::: g2o.functions.game.setTime
|
||||
2
docs/functions/npc/clearNpcActions.md
Normal file
2
docs/functions/npc/clearNpcActions.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` clearNpcActions
|
||||
::: g2o.functions.npc.clearNpcActions
|
||||
2
docs/functions/npc/createNpc.md
Normal file
2
docs/functions/npc/createNpc.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` createNpc
|
||||
::: g2o.functions.npc.createNpc
|
||||
2
docs/functions/npc/destroyNpc.md
Normal file
2
docs/functions/npc/destroyNpc.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` destroyNpc
|
||||
::: g2o.functions.npc.destroyNpc
|
||||
2
docs/functions/npc/getNpcAction.md
Normal file
2
docs/functions/npc/getNpcAction.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getNpcAction
|
||||
::: g2o.functions.npc.getNpcAction
|
||||
2
docs/functions/npc/getNpcActions.md
Normal file
2
docs/functions/npc/getNpcActions.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getNpcActions
|
||||
::: g2o.functions.npc.getNpcActions
|
||||
2
docs/functions/npc/getNpcActionsCount.md
Normal file
2
docs/functions/npc/getNpcActionsCount.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getNpcActionsCount
|
||||
::: g2o.functions.npc.getNpcActionsCount
|
||||
2
docs/functions/npc/getNpcHostPlayer.md
Normal file
2
docs/functions/npc/getNpcHostPlayer.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getNpcHostPlayer
|
||||
::: g2o.functions.npc.getNpcHostPlayer
|
||||
2
docs/functions/npc/getNpcLastActionId.md
Normal file
2
docs/functions/npc/getNpcLastActionId.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` getNpcLastActionId
|
||||
::: g2o.functions.npc.getNpcLastActionId
|
||||
2
docs/functions/npc/isNpc.md
Normal file
2
docs/functions/npc/isNpc.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` isNpc
|
||||
::: g2o.functions.npc.isNpc
|
||||
2
docs/functions/npc/isNpcActionFinished.md
Normal file
2
docs/functions/npc/isNpcActionFinished.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` isNpcActionFinished
|
||||
::: g2o.functions.npc.isNpcActionFinished
|
||||
2
docs/functions/npc/npcAttackMelee.md
Normal file
2
docs/functions/npc/npcAttackMelee.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` npcAttackMelee
|
||||
::: g2o.functions.npc.npcAttackMelee
|
||||
2
docs/functions/npc/npcAttackRanged.md
Normal file
2
docs/functions/npc/npcAttackRanged.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` npcAttackRanged
|
||||
::: g2o.functions.npc.npcAttackRanged
|
||||
2
docs/functions/npc/npcSpellCast.md
Normal file
2
docs/functions/npc/npcSpellCast.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` npcSpellCast
|
||||
::: g2o.functions.npc.npcSpellCast
|
||||
2
docs/functions/npc/npcUseClosestMob.md
Normal file
2
docs/functions/npc/npcUseClosestMob.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` npcUseClosestMob
|
||||
::: g2o.functions.npc.npcUseClosestMob
|
||||
2
docs/functions/npc/setNpcHostPlayer.md
Normal file
2
docs/functions/npc/setNpcHostPlayer.md
Normal file
@@ -0,0 +1,2 @@
|
||||
# `function` setNpcHostPlayer
|
||||
::: g2o.functions.npc.setNpcHostPlayer
|
||||
2
docs/functions/player/addBan.md
Normal file
2
docs/functions/player/addBan.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` addBan
|
||||
::: g2o.functions.player.addBan
|
||||
2
docs/functions/player/applyPlayerOverlay.md
Normal file
2
docs/functions/player/applyPlayerOverlay.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` applyPlayerOverlay
|
||||
::: g2o.functions.player.applyPlayerOverlay
|
||||
2
docs/functions/player/ban.md
Normal file
2
docs/functions/player/ban.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` ban
|
||||
::: g2o.functions.player.ban
|
||||
2
docs/functions/player/drawWeapon.md
Normal file
2
docs/functions/player/drawWeapon.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` drawWeapon
|
||||
::: g2o.functions.player.drawWeapon
|
||||
2
docs/functions/player/equipItem.md
Normal file
2
docs/functions/player/equipItem.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` equipItem
|
||||
::: g2o.functions.player.equipItem
|
||||
2
docs/functions/player/getPlayerAmulet.md
Normal file
2
docs/functions/player/getPlayerAmulet.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerAmulet
|
||||
::: g2o.functions.player.getPlayerAmulet
|
||||
2
docs/functions/player/getPlayerAngle.md
Normal file
2
docs/functions/player/getPlayerAngle.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerAngle
|
||||
::: g2o.functions.player.getPlayerAngle
|
||||
2
docs/functions/player/getPlayerAni.md
Normal file
2
docs/functions/player/getPlayerAni.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerAni
|
||||
::: g2o.functions.player.getPlayerAni
|
||||
2
docs/functions/player/getPlayerArmor.md
Normal file
2
docs/functions/player/getPlayerArmor.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerArmor
|
||||
::: g2o.functions.player.getPlayerArmor
|
||||
2
docs/functions/player/getPlayerAtVector.md
Normal file
2
docs/functions/player/getPlayerAtVector.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerAtVector
|
||||
::: g2o.functions.player.getPlayerAtVector
|
||||
2
docs/functions/player/getPlayerBelt.md
Normal file
2
docs/functions/player/getPlayerBelt.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerBelt
|
||||
::: g2o.functions.player.getPlayerBelt
|
||||
2
docs/functions/player/getPlayerCameraPosition.md
Normal file
2
docs/functions/player/getPlayerCameraPosition.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerCameraPosition
|
||||
::: g2o.functions.player.getPlayerCameraPosition
|
||||
2
docs/functions/player/getPlayerCollision.md
Normal file
2
docs/functions/player/getPlayerCollision.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerCollision
|
||||
::: g2o.functions.player.getPlayerCollision
|
||||
2
docs/functions/player/getPlayerColor.md
Normal file
2
docs/functions/player/getPlayerColor.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerColor
|
||||
::: g2o.functions.player.getPlayerColor
|
||||
2
docs/functions/player/getPlayerContext.md
Normal file
2
docs/functions/player/getPlayerContext.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerContext
|
||||
::: g2o.functions.player.getPlayerContext
|
||||
2
docs/functions/player/getPlayerDexterity.md
Normal file
2
docs/functions/player/getPlayerDexterity.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerDexterity
|
||||
::: g2o.functions.player.getPlayerDexterity
|
||||
2
docs/functions/player/getPlayerFaceAnis.md
Normal file
2
docs/functions/player/getPlayerFaceAnis.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerFaceAnis
|
||||
::: g2o.functions.player.getPlayerFaceAnis
|
||||
2
docs/functions/player/getPlayerFatness.md
Normal file
2
docs/functions/player/getPlayerFatness.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerFatness
|
||||
::: g2o.functions.player.getPlayerFatness
|
||||
2
docs/functions/player/getPlayerFocus.md
Normal file
2
docs/functions/player/getPlayerFocus.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerFocus
|
||||
::: g2o.functions.player.getPlayerFocus
|
||||
2
docs/functions/player/getPlayerHealth.md
Normal file
2
docs/functions/player/getPlayerHealth.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerHealth
|
||||
::: g2o.functions.player.getPlayerHealth
|
||||
2
docs/functions/player/getPlayerHelmet.md
Normal file
2
docs/functions/player/getPlayerHelmet.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerHelmet
|
||||
::: g2o.functions.player.getPlayerHelmet
|
||||
2
docs/functions/player/getPlayerIP.md
Normal file
2
docs/functions/player/getPlayerIP.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerIP
|
||||
::: g2o.functions.player.getPlayerIP
|
||||
2
docs/functions/player/getPlayerInstance.md
Normal file
2
docs/functions/player/getPlayerInstance.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerInstance
|
||||
::: g2o.functions.player.getPlayerInstance
|
||||
2
docs/functions/player/getPlayerInvisible.md
Normal file
2
docs/functions/player/getPlayerInvisible.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerInvisible
|
||||
::: g2o.functions.player.getPlayerInvisible
|
||||
2
docs/functions/player/getPlayerMacAddr.md
Normal file
2
docs/functions/player/getPlayerMacAddr.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerMacAddr
|
||||
::: g2o.functions.player.getPlayerMacAddr
|
||||
2
docs/functions/player/getPlayerMana.md
Normal file
2
docs/functions/player/getPlayerMana.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerMana
|
||||
::: g2o.functions.player.getPlayerMana
|
||||
2
docs/functions/player/getPlayerMaxHealth.md
Normal file
2
docs/functions/player/getPlayerMaxHealth.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerMaxHealth
|
||||
::: g2o.functions.player.getPlayerMaxHealth
|
||||
2
docs/functions/player/getPlayerMaxMana.md
Normal file
2
docs/functions/player/getPlayerMaxMana.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerMaxMana
|
||||
::: g2o.functions.player.getPlayerMaxMana
|
||||
2
docs/functions/player/getPlayerMeleeWeapon.md
Normal file
2
docs/functions/player/getPlayerMeleeWeapon.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerMeleeWeapon
|
||||
::: g2o.functions.player.getPlayerMeleeWeapon
|
||||
2
docs/functions/player/getPlayerName.md
Normal file
2
docs/functions/player/getPlayerName.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerName
|
||||
::: g2o.functions.player.getPlayerName
|
||||
2
docs/functions/player/getPlayerPing.md
Normal file
2
docs/functions/player/getPlayerPing.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerPing
|
||||
::: g2o.functions.player.getPlayerPing
|
||||
2
docs/functions/player/getPlayerPosition.md
Normal file
2
docs/functions/player/getPlayerPosition.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerPosition
|
||||
::: g2o.functions.player.getPlayerPosition
|
||||
2
docs/functions/player/getPlayerRangedWeapon.md
Normal file
2
docs/functions/player/getPlayerRangedWeapon.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerRangedWeapon
|
||||
::: g2o.functions.player.getPlayerRangedWeapon
|
||||
2
docs/functions/player/getPlayerRespawnTime.md
Normal file
2
docs/functions/player/getPlayerRespawnTime.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerRespawnTime
|
||||
::: g2o.functions.player.getPlayerRespawnTime
|
||||
2
docs/functions/player/getPlayerRing.md
Normal file
2
docs/functions/player/getPlayerRing.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerRing
|
||||
::: g2o.functions.player.getPlayerRing
|
||||
2
docs/functions/player/getPlayerScale.md
Normal file
2
docs/functions/player/getPlayerScale.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerScale
|
||||
::: g2o.functions.player.getPlayerScale
|
||||
2
docs/functions/player/getPlayerSerial.md
Normal file
2
docs/functions/player/getPlayerSerial.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerSerial
|
||||
::: g2o.functions.player.getPlayerSerial
|
||||
2
docs/functions/player/getPlayerShield.md
Normal file
2
docs/functions/player/getPlayerShield.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerShield
|
||||
::: g2o.functions.player.getPlayerShield
|
||||
2
docs/functions/player/getPlayerSkillWeapon.md
Normal file
2
docs/functions/player/getPlayerSkillWeapon.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerSkillWeapon
|
||||
::: g2o.functions.player.getPlayerSkillWeapon
|
||||
2
docs/functions/player/getPlayerSpell.md
Normal file
2
docs/functions/player/getPlayerSpell.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerSpell
|
||||
::: g2o.functions.player.getPlayerSpell
|
||||
2
docs/functions/player/getPlayerStrength.md
Normal file
2
docs/functions/player/getPlayerStrength.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerStrength
|
||||
::: g2o.functions.player.getPlayerStrength
|
||||
2
docs/functions/player/getPlayerTalent.md
Normal file
2
docs/functions/player/getPlayerTalent.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerTalent
|
||||
::: g2o.functions.player.getPlayerTalent
|
||||
2
docs/functions/player/getPlayerVirtualWorld.md
Normal file
2
docs/functions/player/getPlayerVirtualWorld.md
Normal file
@@ -0,0 +1,2 @@
|
||||
#`function` getPlayerVirtualWorld
|
||||
::: g2o.functions.player.getPlayerVirtualWorld
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user