08.10.2013, 11:40
You didn't read what I said. If you don't use the seek at all and you don't want to keep it to your script, remove it as parameter and wherever you've used it, remove it from there as well (3rd parameter).
But if you want to use the parameter "seek" later, don't change the parameters and just use #pragma unused seek like I told you before.
EDIT: You are now missing bracket(s), do Ctrl + Z to undo.
pawn Код:
SendAudioToRange(10300, 100, X, Y, Z, 20.0);
pawn Код:
SendAudioToRange(10300, 100, X, Y, Z, 20.0);
pawn Код:
SendAudioToRange(10300, 100,X, Y, Z, 20.0);
pawn Код:
new audioid = SendAudioToRange(soundid,volume,aX,aY,aZ,range);
pawn Код:
new audioid = SendAudioURLToRange(inputtext,volume,aX,aY,aZ,range);
pawn Код:
new string[64]; format(string, sizeof(string), "* %s has put their mask away.", name);
EDIT: You are now missing bracket(s), do Ctrl + Z to undo.