1
					Support / Re: [Help !!!!!!] Problem...
« on: March 26, 2010, 09:45:46 pm »
					download AIDA32 or EVEREST ULTIMATE, both are hardware probers/diagnosntics and provide you with direct links to any driver downloads.
					
				This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
error 008: must be a constant expression; assumed zero
					stock
	IsPlayerGroup_Mod(Player[], Primary_Group[])
{
	switch (Primary_Group[0])
	{
		
		// case 'a', 'b', 'c', 'd' : // ->  works
		// case '1', '2', '3', '4': // -> This works too
		case 'USER', 'ADMIN', 'HALF-ADMIN', 'MODERATOR': // -> but this dosnt work, why ?
		{
			return 1;
	
		}
	}
	return 0;
}