[FilterScript] Sistema De Radio Para Base
#1

Bom esse e meu 2 Post eu fiz um sistema bem simples para iniciantes (base)
Porque ainda estou trabalhando no meu gm para eu posta a 2 versгo imtaum galera e muito simples o sistema contem 10 radios diferente (compativel com todos os gm) mais e muito simples mesmo
Bom Eu fiz esse Fs pelo tutorial Do zSuYaNw
Bom tem os comandos /radio 1 -10
e /radiostop - Para Parar porem e so pra os iniciantes que nao saibam Criar um radio Depois vou faze uma em Diag pq eu tbm nao sou boa de pawn em Fim Ta ai o Pawn com 111 Linhas Bem pequeno


Code :
PHP код:
#define FILTERSCRIPT // Define que Este script й filterscript.
#include <a_samp>    // Utiliza a include principal, no caso a_samp, sem ela nгo vou poder fazer nada.
#if defined FILTERSCRIPT // Agora, este if significa Se, entгo SEFOR DEFINIDO FILTERSCRIPT, se estб definido como filterscript ele realizarб as funзхs abaixo.
// Agora veremos o comeзo do scrip.
public OnFilterScriptInit() // Esta public й quando inicia o filterscript
// Abre sempre a chave para comandos.
print("Comandos Basicos (Radios)"); // aqui vai as mensagens que vai aparecer no log.
return 1// Return 1; й return sim;
}// Fecha chave.
public OnFilterScriptExit()// Esta public й quando se desliga o filterscrip
{// abre
print("Comandos Basicos (Radios, desligado."); // Manda mensagem que o nosso filterscript foi desligado.
return 1// Return ? Sim
}// Fecha
public OnPlayerConnect(playerid)// Esta public й quando player conectar
{// Abre
return 1//  return ? sim
// Fecha
public OnPlayerDisconnect(playeridreason// Quando algum player disconecta
{// Abre
return 1;
}
// Fecha
public OnPlayerCommandText(playeridcmdtext[])// A parte dos comandos
{
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio1"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://199.229.254.19:8236");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio2"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://74.222.1.151:8060");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio3"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://192.95.33.114:9996");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio4"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://72.55.174.236:8080/radiosu.mp3");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio5"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"hhttp://69.175.13.34:9928");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio6"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://198.178.123.11:7746");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio7"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://80.237.249.187:80");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio8"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://94.23.216.58:8800");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio9"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://95.141.24.40:80");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radio10"cmdtexttrue10) == 0)
{
PlayAudioStreamForPlayer(playerid"http://198.100.145.144:9900");
GameTextForPlayer(playerid"Radio Ligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
if (strcmp("/radiostop"cmdtexttrue10) == 0)
{
StopAudioStreamForPlayer(playerid); // Parar a Radio Online :D
GameTextForPlayer(playerid"Radio Desligada"20001);
return 
1;
}
////////////////////////////////////////////////////////////////////////////////
return 0// Return nгo.
}
#endif // para dizer que o script ta terminado. 
Creditos :
zSuYaNw - Pelo filterscript Pronto
Eu - Pela Radio Simples :P Espero que ajudem Vcs Novatos
Reply


Messages In This Thread
Sistema De Radio Para Base - by MeninaSedutora - 21.10.2013, 00:27
Re: Sistema De Radio Para Base - by SeV_ - 21.10.2013, 00:30
Re: Sistema De Radio Para Base - by MeninaSedutora - 21.10.2013, 00:35
Re: Sistema De Radio Para Base - by [THs]ShadoW - 21.10.2013, 00:53
Re: Sistema De Radio Para Base - by MeninaSedutora - 21.10.2013, 01:13
Re: Sistema De Radio Para Base - by Menor - 21.10.2013, 02:25
Re: Sistema De Radio Para Base - by ThuuGLif3 - 21.10.2013, 02:38
Re: Sistema De Radio Para Base - by LucasF - 21.10.2013, 03:51
Re: Sistema De Radio Para Base - by AlieN_. - 21.10.2013, 04:36
Respuesta: Sistema De Radio Para Base - by DanDRT - 21.10.2013, 12:17

Forum Jump:


Users browsing this thread: 4 Guest(s)