projects-jenz/AutismBotIngame/scripting/autism_bot_info.sp

143 lines
3.6 KiB
SourcePawn
Raw Normal View History

2020-01-23 23:15:26 +01:00
#pragma semicolon 1
#define DEBUG
#define PLUGIN_AUTHOR "jenz"
#define PLUGIN_VERSION "1.00"
#include <sourcemod>
#include <sdktools>
#pragma newdecls required
2020-02-28 22:00:22 +01:00
int present = 0;
2020-02-09 00:26:05 +01:00
int targethuman = 0;
2020-01-23 23:15:26 +01:00
public Plugin myinfo =
{
name = "coordinates for the bot",
author = PLUGIN_AUTHOR,
description = "hello ",
version = PLUGIN_VERSION,
url = ""
};
2020-02-28 22:00:22 +01:00
public void OnClientDisconnect(int client)
2020-01-23 23:15:26 +01:00
{
2020-02-28 22:00:22 +01:00
if (present == client)
present = 0;
2020-01-23 23:15:26 +01:00
}
2020-02-28 22:00:22 +01:00
public void OnPluginStart()
2020-01-23 23:15:26 +01:00
{
2020-02-28 22:00:22 +01:00
//hooks
HookEvent("round_start", Event_RoundStart, EventHookMode_PostNoCopy);
2020-01-23 23:15:26 +01:00
}
2020-02-28 22:00:22 +01:00
public void Event_RoundStart(Handle event, const char[] name, bool dontBroadcast)
2020-01-23 23:15:26 +01:00
{
2020-02-28 22:00:22 +01:00
targethuman = 0;
2020-01-23 23:15:26 +01:00
}
2020-02-28 22:00:22 +01:00
public void OnMapStart()
2020-02-09 00:26:05 +01:00
{
2020-02-28 22:00:22 +01:00
CreateTimer(0.3, recursive_pressing, INVALID_HANDLE, TIMER_REPEAT|TIMER_FLAG_NO_MAPCHANGE);
2020-02-09 00:26:05 +01:00
}
2020-02-28 22:00:22 +01:00
public bool TraceEntityFilterPlayer(int entity, int contentsMask)
2020-02-09 00:26:05 +01:00
{
2020-02-28 22:00:22 +01:00
return (entity > GetMaxClients() || !entity);
2020-02-09 00:26:05 +01:00
}
2020-02-28 22:00:22 +01:00
public Action recursive_pressing(Handle timer, any data)
{
2020-02-28 22:00:22 +01:00
//PrintToChatAll("present: %N", present);
if (present)
{
2020-02-28 22:00:22 +01:00
float client_coord[3];
float xyz[3];
float lowest_distance = 1000000.0;
2020-02-28 22:00:22 +01:00
float pos_client[3];
GetClientAbsOrigin(present, pos_client);
for (int i = 1; i <= MaxClients; i++)
2020-02-28 22:00:22 +01:00
if (IsValidClient(i) && IsPlayerAlive(i) && GetClientTeam(i) == 3 && i != present)
{
float pos_i[3];
2020-02-28 22:00:22 +01:00
GetClientAbsOrigin(i, pos_i);
float dx = pos_client[0] - pos_i[0];
float dy = pos_client[1] - pos_i[1];
float dz = FloatAbs(pos_client[2] - pos_i[2]);
float dist = SquareRoot(dx*dx + dy*dy + dz*dz);
2020-02-28 22:00:22 +01:00
//PrintToChatAll("dist: %f", dist);
if (dist < lowest_distance)
{
lowest_distance = dist;
targethuman = i;
2020-02-28 22:00:22 +01:00
client_coord = pos_i;
xyz[0] = dx;
xyz[1] = dy;
xyz[2] = dz;
}
}
2020-02-28 22:00:22 +01:00
if (IsValidClient(targethuman))
2020-01-23 23:15:26 +01:00
{
2020-02-28 22:00:22 +01:00
//PrintToChatAll("targethuman: %N", targethuman);
float clientangles[3];
GetClientAbsAngles(targethuman, clientangles);
int keys = GetClientButtons(targethuman);
char keyinput[256];
if (keys & IN_FORWARD)
{
StrCat(keyinput, sizeof(keyinput), "forward+");
}
if (keys & IN_BACK)
{
StrCat(keyinput, sizeof(keyinput), "back+");
}
if (keys & IN_MOVELEFT)
{
StrCat(keyinput, sizeof(keyinput), "moveleft+");
}
if (keys & IN_MOVERIGHT)
{
StrCat(keyinput, sizeof(keyinput), "moveright+");
}
if (keys & IN_JUMP)
{
StrCat(keyinput, sizeof(keyinput), "jump+");
}
//PrintToChatAll("keyinput: %s", keyinput);
//PrintToChatAll("xyz[0], xyz[1], xyz[2]: %f %f %f", xyz[0], xyz[1], xyz[2]);
//PrintToChatAll("lowest_distance: %f", lowest_distance);
ServerCommand("sm_psay #[U:1:120378081] movement_input_specific:%s", keyinput);
ServerCommand("sm_psay #[U:1:120378081] ct_eye_angles_:%f+%f+%f", clientangles[0], clientangles[1], clientangles[2]);
ServerCommand("sm_psay #[U:1:120378081] player_origin_diff:%f+%f+%f", xyz[0], xyz[1], xyz[2]);
ServerCommand("sm_psay #[U:1:120378081] player_origin_position:%f+%f+%f", client_coord[0], client_coord[1], client_coord[2]);
ServerCommand("sm_psay #[U:1:120378081] player_lowest_distance:%f", lowest_distance);
2020-01-23 23:15:26 +01:00
}
}
2020-02-28 22:00:22 +01:00
return Plugin_Handled;
2020-01-23 23:15:26 +01:00
}
stock bool IsValidClient(int client)
{
if (client > 0 && client <= MaxClients && IsClientConnected(client) && IsClientInGame(client))
{
return true;
}
return false;
}
public void OnClientPostAdminCheck(int client)
{
//STEAM_0:1:34783317
//STEAM_0:1:60189040
//[U:1:120378081]
//[U:1:69566635]
2020-01-23 23:15:26 +01:00
char auth[50];
GetClientAuthId(client, AuthId_Engine, auth, sizeof(auth));
if (StrEqual("[U:1:120378081]", auth, false))
2020-02-28 22:00:22 +01:00
present = client;
else if (StrEqual("STEAM_0:1:60189040", auth, false))
present = client;
2020-01-23 23:15:26 +01:00
}