Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
EfeDursun125 committed Aug 21, 2022
1 parent fcfc43f commit 8b7d9e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@ class Bot
Vector m_lastWallOrigin; // for better zombie avoiding

bool m_isStuck; // bot is stuck
bool m_isBlocked; // bot is blocked by players
bool m_isReloading; // bot is reloading a gun
int m_reloadState; // current reload state
int m_voicePitch; // bot voice pitch
Expand Down Expand Up @@ -1163,7 +1164,7 @@ class Bot
void EquipInBuyzone(int buyCount);
void PushMessageQueue(int message);
void PrepareChatMessage(char* text);
int FindWaypoint();
int FindWaypoint(bool skipLag = true);
bool EntityIsVisible(Vector dest, bool fromBody = false);

void SetEnemy(edict_t* entity);
Expand Down Expand Up @@ -1382,7 +1383,6 @@ class Waypoint : public Singleton <Waypoint>

int GetFacingIndex(void);
int FindFarest(const Vector& origin, float maxDistance = 9999.0);
int FindSafestForHuman(edict_t* enemy, edict_t* self, float maxDistance);
int FindNearest(Vector origin, float minDistance = 9999.0, int flags = -1, edict_t* entity = null, int* findWaypointPoint = (int*)-2, int mode = -1);
void FindInRadius(Vector origin, float radius, int* holdTab, int* count);
void FindInRadius(Array <int>& queueID, float radius, Vector origin);
Expand Down

0 comments on commit 8b7d9e8

Please sign in to comment.