Character's exp and sp

How can i access to character’s exp and sp info?

Statistics

1 Like

Since we are in the plugins category, im asking about that :slight_smile:

get_character_data()

1 Like

https://projecthax.gitbook.io/phbot-plugins/phbot-api/character

gg ^^^

am i blind or just i can’t see any info about exp and sp ?

There is an exp field. It’s just not shown on that site.

1 Like

EXP = str(get_character_data()[‘sp’])
SP = str(get_startup_data()[‘current_exp’])

Probably want to use int or float instead so you can compare them if needed.

okey, i found what i need, thanks