Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions addendum/gameevents.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
],
"description": ""
},
"void OnGameEvent_ammo_pickup()": {
"prefix": "OnGameEvent_ammo_pickup",
"body": [
"OnGameEvent_ammo_pickup(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_arena_match_maxstreak()": {
"prefix": "OnGameEvent_arena_match_maxstreak",
"body": [
Expand Down Expand Up @@ -363,6 +370,13 @@
],
"description": ""
},
"void OnGameEvent_enter_vehicle()": {
"prefix": "OnGameEvent_enter_vehicle",
"body": [
"OnGameEvent_enter_vehicle(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_entered_performance_mode()": {
"prefix": "OnGameEvent_entered_performance_mode",
"body": [
Expand Down Expand Up @@ -545,13 +559,27 @@
],
"description": ""
},
"void OnGameEvent_gameui_activate()": {
"prefix": "OnGameEvent_gameui_activate",
"body": [
"OnGameEvent_gameui_activate(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_gameui_activated()": {
"prefix": "OnGameEvent_gameui_activated",
"body": [
"OnGameEvent_gameui_activated(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_gameui_hide()": {
"prefix": "OnGameEvent_gameui_hide",
"body": [
"OnGameEvent_gameui_hide(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_gameui_hidden()": {
"prefix": "OnGameEvent_gameui_hidden",
"body": [
Expand Down Expand Up @@ -713,6 +741,13 @@
],
"description": ""
},
"void OnGameEvent_killed_ball_carrier()": {
"prefix": "OnGameEvent_killed_ball_carrier",
"body": [
"OnGameEvent_killed_ball_carrier(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_killed_capping_player()": {
"prefix": "OnGameEvent_killed_capping_player",
"body": [
Expand All @@ -727,6 +762,13 @@
],
"description": ""
},
"void OnGameEvent_leave_vehicle()": {
"prefix": "OnGameEvent_leave_vehicle",
"body": [
"OnGameEvent_leave_vehicle(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_lobby_updated()": {
"prefix": "OnGameEvent_lobby_updated",
"body": [
Expand All @@ -741,6 +783,13 @@
],
"description": ""
},
"void OnGameEvent_localplayer_builtobject()": {
"prefix": "OnGameEvent_localplayer_builtobject",
"body": [
"OnGameEvent_localplayer_builtobject(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_localplayer_changeclass()": {
"prefix": "OnGameEvent_localplayer_changeclass",
"body": [
Expand Down Expand Up @@ -2162,6 +2211,13 @@
],
"description": ""
},
"void OnGameEvent_single_player_death()": {
"prefix": "OnGameEvent_single_player_death",
"body": [
"OnGameEvent_single_player_death(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_slap_notice()": {
"prefix": "OnGameEvent_slap_notice",
"body": [
Expand Down Expand Up @@ -2232,6 +2288,20 @@
],
"description": ""
},
"void OnGameEvent_take_armor()": {
"prefix": "OnGameEvent_take_armor",
"body": [
"OnGameEvent_take_armor(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_take_health()": {
"prefix": "OnGameEvent_take_health",
"body": [
"OnGameEvent_take_health(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_team_info()": {
"prefix": "OnGameEvent_team_info",
"body": [
Expand Down Expand Up @@ -2624,6 +2694,13 @@
],
"description": ""
},
"void OnGameEvent_weapon_equipped()": {
"prefix": "OnGameEvent_weapon_equipped",
"body": [
"OnGameEvent_weapon_equipped(${1:params}){\r\n\t$0\n}"
],
"description": ""
},
"void OnGameEvent_winlimit_changed()": {
"prefix": "OnGameEvent_winlimit_changed",
"body": [
Expand Down
Loading