Re: How to integrate bot in to the game dll ? -
14-07-2005
"hungarian notation" is a way of naming variables invented by a Hungarian developer in Microsoft, it's attaching some letters to identify a variable's type, such as: iInteger, flFloat, szString, m_iIntMember, g_iGlobal, etc. Such variable names are widely used in Half-Life SDK source code.
also from this line of code you have posted:
pPlayer->m_iTeam = 1;// Join Team 1
the m_iTeam seems to be the team of the player.
Last edited by Whistler; 14-07-2005 at 07:07..
|