Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
EfeDursun125 authored Sep 20, 2021
1 parent ae7d3e4 commit 3059d3a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion include/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ class Bot

float m_moveSpeed; // current speed forward/backward
float m_strafeSpeed; // current speed sideways
float m_tempstrafeSpeed; // temp speed sideways
float m_minSpeed; // minimum speed in normal mode
float m_oldCombatDesire; // holds old desire for filtering

Expand Down Expand Up @@ -881,6 +882,7 @@ class Bot
void ZmCampPointAction(int mode = 0);

void CheckSilencer(void);
bool CheckWallOnBehind(void);
bool CheckWallOnLeft(void);
bool CheckWallOnRight(void);
void ChooseAimDirection(void);
Expand Down Expand Up @@ -1497,8 +1499,8 @@ extern bool IsDeathmatchMode(void);
extern bool IsValidWaypoint(int index);
extern bool ChanceOf(int number);
extern float Squared(float number);
extern float GetDistance(Vector a, Vector b);
extern float GetDistanceSquared(Vector a, Vector b);
extern float GetDistanceSquared2D(Vector a, Vector b);

extern int GetEntityWaypoint(edict_t* ent);
extern int SetEntityWaypoint(edict_t* ent, int mode = -1);
Expand Down
6 changes: 3 additions & 3 deletions include/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
#define SUPPORT_SWNPC_VERSION_F 1.48

// ebot Version
#define PRODUCT_VERSION_DWORD 1,00,20210918,1 // yyyy/mm/dd
#define PRODUCT_VERSION "1.00"
#define PRODUCT_VERSION_F 1.00
#define PRODUCT_VERSION_DWORD 1,01,20210920,2 // yyyy/mm/dd
#define PRODUCT_VERSION "1.01"
#define PRODUCT_VERSION_F 1.01

// general product information
#define PRODUCT_NAME "E-BOT"
Expand Down

0 comments on commit 3059d3a

Please sign in to comment.