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
- kill
- revived
- death
- killer
- match
- match_info
- rank
- counters
- location
- me
- team
- phase
- map
- roster
Game events status
It is highly recommended to communicate errors and warnings to your app users.
Check here the game events status. OR - easily check the 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"}
kill
Info Updates
key | Category | Values | Notes | Since GEP Ver. |
---|---|---|---|---|
kills | match_info | Total number of kills in the match | See notes | 90.0 |
headshots | match_info | Total number of headshots in the match | See notes | 127.0 |
total_damage_dealt | match_info | Total damage dealt in the current match | See notes | 127.0 |
max_kill_distance | match_info | Max kill distance in CM | See notes | 127.0 |
kills
notes:
Currently, there is a known issue where if a teammate knocks out an enemy and the local player finishes him off, he will not get the kill event.
Data Example:
{"info":{"match_info":{"kills":"1"}},"feature":"kill"}
headshots
note
Data Example:
{"info":{"match_info":{"headshots":"1"}},"feature":"kill"}
total_damage_dealt
note
Data Example:
{"info":{"match_info":{"total_damage_dealt":"100"}},"feature":"kill"}
max_distance_kill
note
{"info":{"match_info":{"max_kill_distance":"8488.008789"}},"feature":"kill"}
Events
Event | Event Data | Fired When | Notes | Since GEP Ver. |
---|---|---|---|---|
kill | null | The local player killed another player | 90.0 | |
knockout | null | The local player knocked-out another player | 127.0 | |
headshot | null | The local player hit another player with a headshot | 127.0 | |
damage_dealt | amount of damage dealt by the local player | The local player “damaged” an enemy or himself | 127.0 | |
fire | null | When local player attacks. | Relevant also for fists. | 128.0 |
kill
note:
Currently, there is a known issue where if a teammate knocks out an enemy and the local player finishes him off, he will not get the kill event.
Data Example:
{"events":[{"name":"kill","data":""}]}
knockout
note
Data Example:
{"events":[{"name":"knockout","data":""}]}
headshot
note
Data Example:
{"events":[{"name":"headshot","data":""}]}