it compiles with many warnings but not even 1 error.
when i run it, it connecting to all the sockets and when it's get to the 9th it gives me an error but it also says that the server was activated.
bIsSpecialEvent is defined, don't know why it says it isn't.
however, when i take this line:
Code: Select all
BOOL bMaster, bFirmBerserk, bIsSpecialEvent;
Code: Select all
BOOL bMaster, bFirmBerserk, bIsSpecialEvent = false;
why is that? do i have to add the "= false" to any bool declaration?
if yes, why it only crashes when bIsSpecialEvent doesn't have the addition?