Hi, like I said before... I can not code but when looking at the code I found something that I cant understand... let's see if I can paste it correctly
Code:
if (team == 2) // Counter-Terrorist *sluggo* if CT then do the first switch?
{
// 30/07/04 by Josh
// Use a switch instead of multiple if
// *sluggo*Is this correct? Shouldn't the switch:es change places?
// *sluggo*If the bot is CT then it goes to the first switch and thats the Terrorist weapons? or am I missing something?
switch (weapon)
{
case CS_WEAPON_SG552: return false; break;
case CS_WEAPON_AK47: return false; break;
case CS_WEAPON_ELITE: return false; break;
case CS_WEAPON_MAC10: return false; break;
case CS_WEAPON_GALIL: return false; break;
// 30.8.04 added by frashman
case CS_WEAPON_G3SG1: return false; break;
}
}
else
{
switch (weapon)
{
case CS_WEAPON_AUG: return false; break;
case CS_WEAPON_FIVESEVEN: return false; break;
case CS_WEAPON_M4A1: return false; break;
case CS_WEAPON_TMP: return false; break;
case CS_WEAPON_FAMAS: return false; break;
case CS_WEAPON_SHIELD: return false; break;
//30.8.04 added by Frashman
case CS_WEAPON_SG550: return false; break;
case CS_DEFUSEKIT: return false; break;
}
}
Nope, can't get the code tag to work..

sry..
dstruct2k: That's because it isn't an HTML tag. Use [] instead of <>