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 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 notes272.0

gep_internal note​

Data Example:

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

game_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
player_namegame_infoThe local player nameSee notes281.0
player_idgame_infoThe local player idSee notes281.0
scenegame_infoThe current scene-stateSee notes281.0
game_modegame_infoThe current selected modeSee notes281.0

player_name note​

Data Example:

{"feature": "game_info", "category": "game_info", "key": "player_name", "data": "some player name"}

player_id note​

Data Example:

{"feature": "game_info", "category": "game_info", "key": "player_id", "data": 12345678}

scene note​

Possible values:

  • lobby
  • ingame
  • replay

Data Example:

{"feature": "game_info", "category": "game_info", "key": "scene", "data": "lobby"}

game_mode note​

Possible values:

  • Custom
  • Ranked
  • QuickMatch3v3
  • QuickMatch4v4
  • QuickMatch5v5

Data Example:

{"feature": "game_info", "category": "game_info", "key": "game_mode", "data": "QuickMatch3v3"}
{"feature": "game_info", "category": "game_info", "key": "game_mode", "data": "Custom"}

match_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
match_outcomematch_infoThe game outcomeSee notes281.0
scorematch_infoThe game scoreSee notes281.0

match_outcome note​

Possible values:

  • victory
  • defeat
  • draw

Data Example:

{"feature": "match_info", "category": "match_info", "key": "match_outcome", "data": "defeat"}

score note​

Data Example:

{"feature": "match_info", "category": "match_info", "key": "score", "data": {"right_score": 3, "left_score": 5}}

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
match_startnullIn the beginning of each matchSee notes281.0
match_endnullAt the end of each matchSee notes281.0
team_goalnullThe local player team scoredSee notes281.0
opponent_goalnullThe opponent team scoredSee notes281.0

match_start note​

Data Example:

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

match_end note​

Data Example:

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

team_goal note​

Data Example:

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

opponent_goal note​

Data Example:

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