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
{
"entity_type": 2,
"id": 2102,
"position": {
"x": 5,
"y": 8
},
"direction": 3,
"animation_status": 10,
"speed": 7,
"is_in_combat": true,
"health_percent": 50,
"mana_percent": 100,
"level": 1,
"champion_level": 0,
"current_map_id": 2610,
"vnum": 333,
"name": "Chicken",
"race": 2,
"skin_id": 100,
"is_boss": false
}
Npc
{
"entity_type": 3,
"id": 1132,
"position": {
"x": 5,
"y": 8
},
"direction": 4,
"animation_status": 8,
"speed": 10,
"is_in_combat": false,
"health_percent": 100,
"mana_percent": 100,
"level": 20,
"champion_level": 0,
"current_map_id": 1,
"vnum": 233,
"name": "Mimi Mentor",
"race": 1,
"skin_id": 123,
"is_boss": false,
"owner_id": 0,
"is_partner": false
}
Item
{
"entity_type": 4,
"id": 2352,
"position": {
"x": 5,
"y": 8
},
"vnum": 349,
"quantity": 1,
"owner_id": 5428,
"is_quest_item": false,
"name": "Dander Seed"
}
Last updated