HTTP Feature

What can I found at my server? define stats

  • Statistics?
  • Basic info like get_character_data()?
  • It’s included inventory?
  • Config bot, manager?
  • What variables are being sent?
  • Can I reply to the manager to do something?

Also, could you update gitbook? get_character_data() has more data now and add the function about change script path from py

1 Like

It’s what you see on the stats page. It’s the same thing that gets uploaded via FTP except only the JSON. No you cannot reply back to it.

get_character_data()

{
	'sp': 0,
	'server': '',
	'hp_max': 0,
	'current_exp': 0,
	'level': 0,
	'x': 0.0,
	'dead': False,
	'account_id': 0,
	'locale': 22,
	'job_max_exp': 0,
	'job_current_exp': 0,
	'job_name': '',
	'player_id': 0,
	'model': 0,
	'mp': 0,
	'gold': 0,
	'guild': '',
	'name': '',
	'y': 0.0,
	'hp': 0,
	'mp_max': 0,
	'max_exp': 0,
	'region': 23431
}
1 Like

But I can’t do much at my server without knowing what variables are being sent :thinking: at any case you will save us time and will be to the knowledge of all… :grin:

Print it out to a file.

{
“group/nick”: {
“botting”: false,
“connected”: false,
“dead”: false,
“death_count”: 0,
“drops”: 0,
“exp_gained”: 0,
“exp_hour”: 0,
“exp_minute”: 0,
“gold”: 0,
“gold_per_loop”: 0,
“guild”: “”,
“job_level”: 0,
“job_name”: “”,
“kill_count”: 0,
“level”: 0,
“model”: 0,
“server”: “”,
“sp”: 0,
“sp_gained”: 0,
“sp_hour”: 0,
“sp_minute”: 0,
“time_to_level”: 0,
“tracing”: false,
“traffic_counter”: 0,
“version”: “21.7.1”,
“x”: 0,
“y”: 0,
“zone_name”: “Hotan Kingdom”
},
“group/nick”: {
“botting”: false,
“connected”: false,
“dead”: false,
“death_count”: 0,
“drops”: 0,
“exp_gained”: 0,
“exp_hour”: 0,
“exp_minute”: 0,
“gold”: 0,
“gold_per_loop”: 0,
“guild”: “”,
“job_level”: 0,
“job_name”: “”,
“kill_count”: 0,
“level”: 0,
“model”: 0,
“server”: “”,
“sp”: 0,
“sp_gained”: 0,
“sp_hour”: 0,
“sp_minute”: 0,
“time_to_level”: 0,
“tracing”: false,
“traffic_counter”: 0,
“version”: “21.7.1”,
“x”: 0,
“y”: 0,
“zone_name”: “Hotan Kingdom”
},
“group/nick”: {
“botting”: false,
“connected”: false,
“dead”: false,
“death_count”: 0,
“drops”: 0,
“exp_gained”: 0,
“exp_hour”: 0,
“exp_minute”: 0,
“gold”: 0,
“gold_per_loop”: 0,
“guild”: “”,
“job_level”: 0,
“job_name”: “”,
“kill_count”: 0,
“level”: 0,
“model”: 0,
“server”: “”,
“sp”: 0,
“sp_gained”: 0,
“sp_hour”: 0,
“sp_minute”: 0,
“time_to_level”: 0,
“tracing”: false,
“traffic_counter”: 0,
“version”: “21.7.1”,
“x”: 0,
“y”: 0,
“zone_name”: “Hotan Kingdom”
}
}

3 Likes