Browse Source

extra 4 front

master
gsd 1 year ago
parent
commit
2a5aa9cdb9
  1. 6
      ext/sourcepawn-client/Facti13BackendIntegration.sp
  2. 2
      src/main/java/app/entities/server/request/PlayerOnServer.java

6
ext/sourcepawn-client/Facti13BackendIntegration.sp

@ -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);
}

2
src/main/java/app/entities/server/request/PlayerOnServer.java

@ -19,4 +19,6 @@ public class PlayerOnServer extends RCONPlayer {
public float[] getPos() {
return new float[]{pos_x, pos_y, pos_z};
}
public int clz = 0;
public int team = 0;
}
Loading…
Cancel
Save