Skip to main content
Loading...

Please read the overwolf.games.events documentation page to learn how to use Overwolf game events.

Important Note

We are aware that recently an Epic Games version was released, and our events are currently unreliable in that version. Please make sure to use the events below for Steam and Standalone PoE versions

Sample Apps​

Available Features​

Game event status​

It is highly recommended to communicate errors and warnings to app users.

Check the current game event status here. Alternatively, you can easily check that status from your app itself, using our API.

gep_internal​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
gep_internalgep_internalLocal + Public version numberSee notes143.0

gep_internal note​

Data Example:

{"info":{"gep_internal":{"version_info":"{"local_version":"157.0.1","public_version":"157.0.1","is_updated":true}"}},"feature":"gep_internal"}

kill​

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
boss_killName of bossBoss was killedSee notes143.1

boss_kill note​

Data Example:

{"events":[{"name":"boss_kill","data":"Fire Fury"}]}

death​

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
deathnullLocal player diedSee notes143.1

death note​

Data Example:

{"events":[{"name":"death","data":null}]}

me​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
character_namemeLocal player nickname.See notes144.0
character_levelmeLocal player level.See notes144.0
character_classmeLocal player class.See notes291.0
character_experiencemeLocal player experience.See notes291.0

character_name note​

Data Example:

{"info":{"me":{"character_name":"Shaelgaas"}},"feature":"me"}

character_level note​

Data Example:

{"info":{"me":{"character_level":"31"}},"feature":"me"}

character_class note​

Data Example:

{"info":{"me":{"character_class":"Witch"}},"feature":"me"}

character_experience note​

Data Example:

{"info":{"me":{"character_experience":"43892"}},"feature":"me"}

match_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
current_zonematch_infoName of the current zoneSee notes144.0
opened_pagematch_infoWhether inventory is open/closedSee notes144.0

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
match_outcomevictory/defeatBoss killed/You died.See notes144.0
chatChat messagesA message is sent / received in the chat.See notes219.0

current_zone note​

Data Example:

{"info":{"match_info":{"current_zone":"Lioneye's Watch"}},"feature":"match_info"}

opened_page note​

Possible values:

  • inventory
  • passive_tree
  • character_sheet
  • stash
  • map_device
  • pantheon
  • crafting_bench

Data Example:

{"info":{"match_info":{"opened_page":"inventory"}},"feature":"match_info"}
{"info":{"match_info":{"opened_page":null}},"feature":"match_info"}

match_outcome note​

Data Example:

{"events":[{"name":"match_outcome","data":"victory"}]}
{"events":[{"name":"match_outcome","data":"defeat"}]}

chat note​

This event is intended for real-time usage only, and its content should not be logged.

Special symbols in the chat messages:

  • Starting with # - global chat
  • Starting with @ - whisper - private chat
  • Starting with $ - trade
  • Starting with & - guild
  • Starting with % - party
  • Without special symbol - local chat
Items in chat messages

Items in chat messages start with | (vertical bar) and end with |

Data Example:

{"events":[{"name":"chat","data":"You have entered Lioneye's Watch."}]}
{"events":[{"name":"chat","data":"#yaoiLNine: some text"}]}
{"events":[{"name":"chat","data":"#Rodger_The_Sausage: |Agony Shadows, Alleyways Map||Agony Shadows, Alleyways Map||Remote Nexus, Crimson Temple Map| free"}]}

game_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
languagelanguageThe game's selected languageSee notes219.0
chat_languagelanguageThe chat's selected languageSee notes219.0

language note​

Both 'language' and 'chat_language' info-updates are updated once at the beginning of the game

Data Example:

{"info":{"language":{"language":"en"}},"feature":"game_info"}

chat_language note​

Both 'language' and 'chat_language' info-updates are updated once at the beginning of the game

Data Example:

{"info":{"language":{"chat_language":"fr"}},"feature":"game_info"}