SA-MP Forums Archive
[Ajuda] Radio em strcmp - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Radio em strcmp (/showthread.php?tid=381251)



Radio em strcmp - Coringa_Vilao - 29.09.2012

Resolvido !


Re: Radio em strcmp - FeelLikeASir_ - 29.09.2012

Troque

CMD:mp3(playerid)

para

if(strcmp(cmdtext, "/mp3", true))

KABUM !


Re: Radio em strcmp - Q.I - 29.09.2012

pawn Код:
if(strcmp("/radion", cmdtext, true, 7) == 0)
{

    PlayAudioStreamForPlayer(playerid, "URL DA RADIO AQUI");
    return 1;
}
pawn Код:
if(strcmp("/radioff", cmdtext, true, 8) == 0)
{

    StopAudioStreamForPlayer(playerid);
    return 1;
}
e dificil isso ?


Re: Radio em strcmp - Coringa_Vilao - 29.09.2012

Resolvido !


Re: Radio em strcmp - FeelLikeASir_ - 29.09.2012

Yeah !


Re: Radio em strcmp - Coringa_Vilao - 29.09.2012

Resolvido !


Re: Radio em strcmp - Sky™ - 29.09.2012

Pela Mor de deus hein Coringa kkk


Re: Radio em strcmp - Coringa_Vilao - 29.09.2012

Resolvido !


Re: Radio em strcmp - Ouro - 29.09.2012

pawn Код:
if(!strcmp(cmdtext, "/mp3", true))



Re: Radio em strcmp - Coringa_Vilao - 29.09.2012

Resolvido !