Skip to main content
Loading...

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

Sample Apps​

Available Features​

Game events status​

It's highly recommended to communicate errors and warnings to your app users. Check current game event status here or easily check game event status from your app using our API.

gep_internal​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
gep_internalgep_internalLocal + Public version numberSee notes268.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"}

match_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
roster_xxmatch_infoA full roster with data during the match.See notes268.0

*roster_xx * note​

List of parameters:

  • name - player name
  • character - character name
  • team - team number
  • kills - number of kills
  • deaths - number of deaths
  • assists - number of assists
  • knocks - number of knocks
  • is_local - if the player is the local player this paramaters is true

Data Example:

{"feature":"match_info","category":"match_info","key":"roster_0","value":"{\"name\":\"Nano#888\",\"character\":\"BacklineHealer\",\"team\":4,\"kills\":1,\"deaths\":4,\"assists\":3,\"knocks\":1,\"is_local\":true}"}

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
match_startnullThe match startedSee notes268.0
match_endnullThe match endedSee notes268.0
deathThe total number of deathsThe player is deadSee notes268.0
killThe total number of killsThe player killed another playerSee notes268.0
assistThe total number of assistsThe player assisted another playerSee notes268.0

match_start note​

Data Example:

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

match_end note​

Data Example:

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

death note​

Data Example:

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

kill note​

Data Example:

{"events":[{"name":"kill","data":4}]}

assist note​

Data Example:

{"events":[{"name":"assist","data":1}]}

game_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
scenegame_infoThe name of the current scene.See notes268.0
player_namegame_infoThe local player name + tag.See notes268.0

scene note​

List of possible values:

  • Lobby
  • Battle Royale

Data Example:

{"info":{"game_info":{"scene":"Lobby"}},"feature":"game_info"}

player_name note​

Data Example:

{"info":{"game_info":{"player_name":"Nano#888"}},"feature":"game_info"}