10.08.2012, 19:26
consegui este fs, el tema es que no me funciona para GM zenon city, si alguno me lo puede hacer funcionar para el gm de zenon city por favor.
desde ya gracias.
Код:
// This is a comment // uncomment the line below if you want to write a filterscript //#define FILTERSCRIPT #include <a_samp> #if defined FILTERSCRIPT public OnFilterScriptInit() { print("\n--------------------------------------"); print(" FilterScript By Jesus_Waka"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } #else main() { print("\n----------------------------------"); print(" Musica al inicio"); print("----------------------------------\n"); } #endif public OnPlayerConnect(playerid) { PlayAudioStreamForPlayer(playerid,"Link de Musica"); return 1; } public OnPlayerSpawn(playerid) { StopAudioStreamForPlayer(playerid); return 1; }