Just downloaded podbot_sdk, and have few questions:
- Why compiled (Release) metamod.dll 608KB while the one on the net takes 1,333KB?
- Why compiled (Release) podbot_mm.dll 252KB and PMB is 244KB?
- I get warning(C4554) on podbot line:
Code:
if ((pBot->vecGrenade == g_vecZero) || (BotGetSafeTask (pBot)->fTime < gpGlobals->time)
|| (pEdict->v.weapons & (1 << CS_WEAPON_FLASHBANG) == 0))
problem is:
Code:
(pEdict->v.weapons & (1 << CS_WEAPON_FLASHBANG) == 0
is it:
Code:
if ((pBot->vecGrenade == g_vecZero) || (BotGetSafeTask (pBot)->fTime < gpGlobals->time)
|| (pEdict->v.weapons & ((1 << CS_WEAPON_FLASHBANG) == 0)))
?
I have VS PRO 2003 (7.1). All settings left untouched