Forum posts

Posted 8 months ago2023-08-19 13:51:06 UTC
in Is GoldSource still cool Post #347785
goldsrc still rocks to this day!!
Posted 8 months ago2023-08-17 20:52:21 UTC
in Looking for a modeller, half life Post #347782
I need a modeller to make me 2 backroom entites:
Partygoer
Bacteria

we can negotiate with price I'd pay with Steam giftcard

carlos niggelson#4336 (discord)
Posted 10 months ago2023-07-09 17:36:19 UTC
in Trailer for Backrooms, an upcoming mod ! Post #347696
Looking more forward into this. I am also making a liminal space mod but its kept a secret. will share when end of progress
bool CDesertEagle::AddToPlayer(CBasePlayer* pPlayer)
{
// AddToPlayer returns true if the weapon was picked up
if (CBasePlayerWeapon::AddToPlayer(pPlayer))
{
// Send a message to the client so the pickup icon can be shown
MESSAGE_BEGIN(MSG_ONE, gmsgWeapPickup, NULL, pPlayer->pev);
WRITE_BYTE(m_iId);
MESSAGE_END();
return true;
}
return false;
}

I'm getting two errors:

1- expression must have bool type (or be convertible to bool) D:\halflife-updated-master\projects\vs2019\deserteagle.cpp 95
2- declaration is incompatible with "void CDesertEagle::AddToPlayer(CBasePlayer *pPlayer)" (declared at line 1237 of "D:/halflife-updated-master/dlls/weapons.h") hl_cdll D:\halflife-updated-master\projects\vs2019\deserteagle.cpp 92