warning 203: symbol is never used: "seek"
#9

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).

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);
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)