hi i cant find where to download the mirc server.
is is pointless to use it now?
is is pointless to use it now?
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.
Show posts Menu
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;
}