31.05.2013, 10:41
I have 1 error when i want to compile my gamemod i want to put music on server for all players here is lines:
C:\Icons\Samp Fajlovi\Ultra Gaming RP v.1.8\gamemodes\UGRPG.pwn(32022) : error 017: undefined symbol "i"
Line 32022: PlayAudioStreamForPlayer(i, "http://k003.kiwi6.com/hotlink/q6s8genu5u/harlem_shake_-_full_song.mp3");
What i must to do to fix this?
C:\Icons\Samp Fajlovi\Ultra Gaming RP v.1.8\gamemodes\UGRPG.pwn(32022) : error 017: undefined symbol "i"
Line 32022: PlayAudioStreamForPlayer(i, "http://k003.kiwi6.com/hotlink/q6s8genu5u/harlem_shake_-_full_song.mp3");
PHP код:
if (strcmp("/harlemshake", cmdtext, true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 1)
{
PlayAudioStreamForPlayer(i, "http://k003.kiwi6.com/hotlink/q6s8genu5u/harlem_shake_-_full_song.mp3");
}
else
{
SendClientMessage(playerid, COLOR_ASKQ, "Niste ovlasceni da koristite ovu komandu");
return 1;
}
}