Skip to main content

LEAP Game events

Deprecation notice

Support for this game has been deprecated, following a lack of usage in Apps.

This page is being kept for historial documentation purposes.

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. Alternately, 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"}

game_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
server_infogame_infoInformation about the played serverSee notes221.0.0

server_info note

List of parameters:

  • server_name - the name of the server
  • server_region - the region of the server
  • is_mods - if the server is supporting mods the value will be true, if not, the value will be false

Data Example:

{"info":{"game_info":{"server_info":"{\"server_name\":\"An ApexHosting Leap Server\",\"server_region\":\"useast\",\"is_mods\":false}"}},"feature":"game_info"}

match_info

Info Updates

keyCategoryValuesNotesSince GEP Ver.
match_statematch_infoThe current state in the matchSee notes.221.0.0
match_outcomematch_infoThe outcome of the matchSee notes.222.0.0

Events

EventEvent DataFired When (announcement)NotesSince GEP Ver.
match_startnullMatch started.See notes221.0.0
match_endnullMatch ended.See notes221.0.0
killnullMatch started.See notes222.0.0
deathnullMatch ended.See notes222.0.0

match_state note

Data Example:

{"info":{"match_info":{"match_state":"InProgress"}},"feature":"match_info"}

match_outcome note

Possible values:

  • win
  • loss

Data Example:

{"info":{"match_info":{"match_outcome":"loss"}},"feature":"match_info"}
{"info":{"match_info":{"match_outcome":"win"}},"feature":"match_info"}

match_start note

Data Example:

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

match_end note

Data Example:

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

kill note

Data Example:

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

death note

Data Example:

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