View Single Post
Ajaxx
Senior Member
Join Date: Oct 2009
Old 08-25-2012 , 23:29   Re: MRecipient Filter for CS:GO
Reply With Quote #2

What error are you receiving? Don’t know if you saw earlier but in MRecipientFilter.cpp I was having a problem with
Code:
edict_t *pPlayer = engine->PEntityOfEntIndex(i)
asherkin suggested I replace with
Code:
edict_t* pPlayer = (edict_t *)(gpGlobals->pEdicts + i)
that worked for me.
Ajaxx is offline