30.01.2015, 23:00
I've only been able to test this in the console:
//This example will show all textdraws, except 12 and 14. You can add as many parameters as you want.
//This example will show all textdraws, except 12 and 14. You can add as many parameters as you want.
pawn Код:
ShowAnimList(playerid, 12, 14);
pawn Код:
stock ShowAnimList(playerid, ...)
{
new arg = numargs(), bool:proceed;
for(new i; i<sizeof(AnimList); i++)
{
proceed = true;
for(new j=1; j<(arg); j++)
{
if(getarg(j) == i) proceed = false;
}
if(proceed == true) TextDrawShowForPlayer(playerid, AnimList[i]);
}
return 1;
}