Entities
This is not a service itself. As response to some of the requests you will get a JSON representation of some of the game's entities. There are four types of entities in the game: players, monsters, npcs and items. This entities have the following structure:
Player
{
"entity_type": 1,
"id": 5492,
"position": {
"x": 5,
"y": 8,
},
"direction": 5,
"animation_status": 9,
"speed": 12,
"is_in_combat": true,
"health_percent": 95,
"mana_percent": 60,
"level": 99,
"champion_level": 80,
"current_map_id": 2610,
"sp": 15,
"name": "Hatz",
"title": "Eternal",
"family": "PhoenixEnjoyers",
"is_gm": false,
"reputation_rank": 10
}Monster
Npc
Item
Last updated
