Loading...
- Game events API
Please read the overwolf.games.events documentation page to learn how to use Overwolf game events.
Sample Apps
Available Features
- gep_internal
- game_info
- kill
- killed
- killer
- revived
- death
- assist
- match
- match_info
- rank
- me
- phase
- location
- team
- items
- counters
- map
Game events status
It is highly recommended to communicate errors and warnings to app users. Check game event status here. You can also easily check game events status from your app, using our API.
gep_internal
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
gep_internal | gep_internal | Local + Public version number | See notes | 143.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
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
server | game_info | The server name | See notes | 260.0 |
privacy | game_info | The selected privacy | See notes | 260.0 |
game_title | game_info | The title of the selected game | See notes | 260.0 |
game_type | game_info | The type of the selected game | See notes | 260.0 |
title_mnemonic | game_info | The mnemonic title of the selected game | See notes | 260.0 |
player_rank | game_info | The local player different ranks | See notes | 262.0 |
party_players | game_info | An array of players that joined the party in the lobby | See notes | 263.0 |
server note
Data Example:
{"feature":"game_info","category":"game_info","key":"server","value":"BR"}
privacy note
Possible values:
- public
- private
Data Example:
{"feature":"game_info","category":"game_info","key":"privacy","value":"public"}
game_title note
Data Example:
{"feature":"game_info","category":"game_info","key":"game_title","value":"Solo"}
game_type note
Data Example:
{"feature":"game_info","category":"game_info","key":"game_type","value":"Battle Royal"}
title_mnemonic note
Data Example:
{"feature":"game_info","category":"game_info","key":"title_mnemonic","value":"set_nobuild_playlists"}
player_rank note
Data Example:
{"feature":"game_info","category":"game_info","key":"player_rank","value":"[{\"rank_type\":\"reload_build\",\"rank\":0,\"progress\":0},{\"rank_type\":\"battle_royal\",\"rank\":2,\"progress\":0.2},{\"rank_type\":\"reload_zero_build\",\"rank\":0,\"progress\":0},{\"rank_type\":\"zero_build\",\"rank\":6,\"progress\":0.53}]"}
party_players note
Data Example:
{"feature":"game_info","category":"game_info","key":"party_players","value":"["Nano888","Shared118"]"}
kill
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
kills | match_info | Total number of kills in the match | See notes | 110.0 |
kills note
Data Example:
{"info":{"match_info":{"kills":"1"}},"feature":"kill"}
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
kill | totalKills – total kills for player in match | The local player killed another player | See notes | 110.0.0 |
knockout | The name of the player that you knocked out. | The local player knocked out another player | See notes | 110.0.0 |
hit | isHeadshot – deprecated and will always return false | The local player hits an enemy with a weapon (hits with a pickaxe are not counted) | See notes | 110.0.0 |
kill note
Data Example:
{"events":[{"name":"kill","data":"1"}]}
knockout note
Data Example:
{"events":[{"name":"knockout","data":"SomeUser"}]}
hit note
caution
isHeadshot is deprecated and will always return false
Data Example:
{"name":"hit","data":"{"isHeadshot": false}"}
killed
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
killed | The name of the killed player. | The local player killed another player | See notes | 117.0 |
killed note
Data Example:
{"name":"killed","data":"itaygl"}
killer
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
killer | Name of the killer. | The local player was killed | See notes | 117.0 |
killer note
Data Example:
{"name":"killer","data":"itaygl"}
revived
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
revived | null | The local player was revived | See notes | 110.0 |
revived note
Data Example:
{"events":[{"name":"revived","data":""}]}
death
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
deaths | match_info | Total number of deaths in the match in Ballistic 5V5 mode only | See notes | 269.0 |
deaths note
Data Example:
{"info":{"match_info":{"deaths":"3"}},"feature":"death"}
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
death | null in Battle Royal and total deaths in Ballistic 5V5 game mode | The local player died | See notes | 110.0 |
knockedout | The name of the player who knocked you out. | The local player is knocked-out | See notes | 118.1 |
death note
Data Example:
Normal game modes example:
{"events":[{"name":"death","data":""}]}
Ballistic 5V5 example:
{"events":[{"name":"death","data":5}]}