Creating simple pickup
Jump to navigation
Jump to search
What: I will explain how you can add a simple pickup like you have in the singleplayer Version: Orange Box SDK.
First open "hl2mp_player.cpp" and search for "CHL2MP_Player::PickupObject".
replace the function:
void CHL2MP_Player::PickupObject( CBaseEntity *pObject, bool bLimitMassAndSize )
{
}
with:
void CHL2MP_Player::PickupObject( CBaseEntity *pObject, bool bLimitMassAndSize )
{
// can't pick up what you're standing on
if ( GetGroundEntity() == pObject )
return;
BaseClass::PickupObject(pObject,bLimitMassAndSize);
// Can't be picked up if NPCs are on me
if ( pObject->HasNPCsOnIt() )
return;
}
The code is just taken from the singleplayer.