Skip to main content

Spectre Divide Game events

Deprecation notice

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

This page is being kept for historical 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. 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"}

game_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
scenegame_infoThe name of the current scene.See notes260.0

scene note​

Data Example:

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

List of possible values:

  • MainMenu
  • SponsorSelect
  • the current map name - for example Metro_P

match_info​

Info Updates​

keyCategoryValuesNotesSince GEP Ver.
mapmatch_infoThe current map playedSee notes210.0
killsmatch_infoTotal number of kills during the matchSee notes260.0
deathsmatch_infoTotal number of deaths during the matchSee notes260.0
assistsmatch_infoTotal number of assists during the matchSee notes260.0

map note​

Data Example:

{"feature":"match_info","category":"match_info","key":"map","value":"Metro"}

kills note​

Data Example:

{"info":{"match_info":{"kills":"1"}},"feature":"match_info"}

deaths note​

Data Example:

{"info":{"match_info":{"deaths":"2"}},"feature":"match_info"}

assists note​

Data Example:

{"info":{"match_info":{"assists":"5"}},"feature":"match_info"}

Events​

EventEvent DataFired WhenNotesSince GEP Ver.
match_startnullWhen loading into a map.See notes260.0
match_endnullWhen disconnecting from map.See notes260.0
killnullThe local player killed another playerSee notes260.0
deathnullThe local player is dead.See notes260.0
assistnullThe local player assist another player.See notes260.0

match_start note​

Data Example:

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

match_end note​

Data Example:

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

kill note​

Data Example:

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

death note​

Data Example:

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

assist note​

Data Example:

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