30.10.2015, 14:57
Hey, I am getting a few errors that i don't fully understand, its proboly from the Audio.inc system, but i dont know, could anybody check it out and see if there is any solution on this problem Cheers everyone.
line 4156
line 4188
line 4218
Код:
C:\Users\Admin\Desktop\AMRP\gamemodes\AMRP.pwn(4156) : error 017: undefined symbol "Audio_SetPosition" C:\Users\Admin\Desktop\AMRP\gamemodes\AMRP.pwn(4188) : error 017: undefined symbol "Audio_SetPosition" C:\Users\Admin\Desktop\AMRP\gamemodes\AMRP.pwn(4166) : warning 203: symbol is never used: "seek" C:\Users\Admin\Desktop\AMRP\gamemodes\AMRP.pwn(4218) : error 017: undefined symbol "Audio_SetPosition" C:\Users\Admin\Desktop\AMRP\gamemodes\AMRP.pwn(4197) : warning 203: symbol is never used: "seek" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 3 Errors.
Код:
new localhandle = Audio_Play(playerid,audioid,false,false,false); Audio_SetVolume(playerid, localhandle, volume); Audio_SetPosition(playerid, localhandle, seek);
Код:
new localhandle = Audio_Play(i,audioid,false,false,false); Audio_Set3DPosition(i, localhandle, x, y, z, range); Audio_SetVolume(i, localhandle, volume); Audio_SetPosition(i, localhandle, seek); audiohandle[i][audiohandleglobal] = localhandle;
Код:
new localhandle = Audio_PlayStreamed(i,url,false,false,false); Audio_Set3DPosition(i, localhandle, x, y, z, range); Audio_SetVolume(i, localhandle, volume); Audio_SetPosition(i, localhandle, seek); audiohandle[i][audiohandleglobal] = localhandle;