Ahh, thanks.
EDIT:I have something else I need help with, I'm using
Code:
enum ePlayerData
{
bool:bIsRebel,
bool:bLrActive,
bool:bHasFreeday
}
if ( !ePlayerData[victim][bIsRebel] )
{
//code
}
I get "invalid subscript(not an array or to many subscripts: ePlayerData".
How would I fix this? I've tried to make it an array but I can get it to work.
__________________