View Single Post
Re: POD-bot back into shape.
Old
  (#515)
kedat
Member
 
kedat's Avatar
 
Status: Offline
Posts: 44
Join Date: Jan 2004
Default Re: POD-bot back into shape. - 16-04-2004

Just downloaded podbot_sdk, and have few questions:
  1. Why compiled (Release) metamod.dll 608KB while the one on the net takes 1,333KB?
  2. Why compiled (Release) podbot_mm.dll 252KB and PMB is 244KB?
  3. 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