Help with these warnings -
ShiffeyTheGamer - 02.07.2014
Hi, Im still new to scripting I need some help fixing this
(6314) : warning 203: symbol is never used: "seek"
(6345) : warning 203: symbol is never used: "seek"
(105393) : warning 203: symbol is never used: "Players
What is at the line:
SendAudioToRange(audioid, volume, seek, Float

, Float:y, Float:z, Float:range)
stock SendAudioURLToRange(url[], volume, seek, Float

, Float:y, Float:z, Float:range)
at line 105393 is just this }
Re: Help with these warnings -
eXeDev - 02.07.2014
You clearly aren't using the parameters 'seek', or 'Players'.
Re: Help with these warnings -
SHE790 - 02.07.2014
becouse ur using Seek and players and its ur 1st time u using them on that script it says this.
This warning will do nothing
Re: Help with these warnings -
Beckett - 02.07.2014
There aren't warning it just showing that your variable Players, seek, seek aren't being used. either comment them if you will use them later or delete them if you don't want them, or use them anywhere like.
pawn Код:
if(seek == 0)
{
// leave blank to get rid of that warn
}
Put that code anywhere ^.^
Re : Help with these warnings -
Clad - 02.07.2014
Delete the symbols and you're done.