11.06.2011, 23:05
Quote:
Array indexes, they are faster and use up less memory. (Someone told me that a while ago, idk if it will be true in your context.)
|
Example:
pawn Code:
switch (vehicle[2]) // this won't work for some reason.. only case 2 will be called :/.
{
case 0:
{
//??
}
case 1:
{
//??
}
// and so on..
}