26.09.2014, 08:42
Quote:
|
Well. it is the best since there's no other duel filterscript in the forums which can beat this.. all others use shitty commands like /duelaccept (id) or /duel (weapon) (id), while everyone keeps guessing the name of weapon used in the script.
and yes Khan sahab, you can edit the script :P |
Besides, you should know the differences between this:
Code:
if (a == 1)
{
}
else if (a == 2)
{
}
Code:
if (a == 1)
{
}
if (a == 2)
{
}
Code:
switch (a)
{
case 1:
{}
case 2:
{}
// ...
}


