Quote:
Originally Posted by RedMF
quando fazer o fs tira as funзхes de GameMode do new.pwn porque em umas pessoas que nгo sabe fazer isso ai buga a gm deles
Ficaria desse jeito
PHP код:
//////////////////////////////////////////////////////////////////////
#include <a_samp>
#include <sscanf>
#include <zcmd>
//////////////////////////////////////////////////////////////////////
#define COLOR_ERRO 0xFF0000AA
#define COLOR_AMARELO 0xFFFF00AA
//////////////////////////////////////////////////////////////////////
public OnFilterScriptInit()
{
print("\n----------------------------------------------");
print(" Sistema de tocar Musica by CrowleyNWD ligado ");
print("----------------------------------------------\n");
return 1;
}
main()
{
}
//////////////////////////////////////////////////////////////////////
CMD:tocarmusica(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Uso correto: /TocarMusica [URL]");
for(new u; u < MAX_PLAYERS; u++)
{
PlayAudioStreamForPlayer(u, params);
}
return 1;
}
//////////////////////////////////////////////////////////////////////
CMD:pmusica(playerid, params[])
{
StopAudioStreamForPlayer(playerid);
SendClientMessage( playerid, COLOR_AMARELO, "[ > ] Vocк parou a sua mъsica!");
return 1;
}
//////////////////////////////////////////////////////////////////////
CMD:pmusicatodos(playerid, params[])
{
new adminname[24], string[128];
GetPlayerName(playerid, adminname, 24);
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, COLOR_ERRO, "[ x ] Vocк nгo tem permissгo!");
for( new u; u < MAX_PLAYERS; u++ )
{
StopAudioStreamForPlayer( u );
}
format(string,sizeof(string),"[ > ] O administrador %s parou a mъsica para todos.", adminname );
SendClientMessage(playerid, COLOR_AMARELO, string);
return 1;
}
|
Desculpa denovo e.e
Consertei.. Pode me explicar melhor a funзгo do main, onde e como ele deve ser colocado?