|
|
@ -1,5 +1,7 @@ |
|
|
|
#include <sourcemod> |
|
|
|
#include <ripext> |
|
|
|
#include <tf2_stocks> |
|
|
|
#include <tf2> |
|
|
|
|
|
|
|
#define PLUGIN_VERSION "1.0" |
|
|
|
|
|
|
@ -142,6 +144,10 @@ stock JSONObject createPayload() { |
|
|
|
player.SetFloat("pos_x", pos[0]); |
|
|
|
player.SetFloat("pos_y", pos[1]); |
|
|
|
player.SetFloat("pos_z", pos[2]); |
|
|
|
/* Player class */ |
|
|
|
player.SetInt("clz", TF2_GetPlayerClass(client)); |
|
|
|
/* Player team */ |
|
|
|
player.SetInt("team", TF2_GetClientTeam(client)); |
|
|
|
/* push */ |
|
|
|
players.Push(player); |
|
|
|
} |
|
|
|