SA-MP Forums Archive
/audiomsg [playerid]? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: /audiomsg [playerid]? (/showthread.php?tid=597512)



/audiomsg [playerid]? - Rodri99 - 01.01.2016

Is there any system to make other player type automatically /audiomsg onplayerconnect?
Like this: cmd_audiomsg(playerid,"\1"); ?

Thanks,
Rodri.


Re: /audiomsg [playerid]? - Tamy - 01.01.2016

Depends on what command processor you are using. If ZCMD, then

Код:
cmd_audiomsg(playerid, "parameters here");
like if there is a URL to enter in that command

Код:
cmd_audiomsg(playerid, "www.mp3.com/something");



Re: /audiomsg [playerid]? - Rodri99 - 01.01.2016

It's a built-in client command, not created on gm.


Re: /audiomsg [playerid]? - Tamy - 01.01.2016

Oh, then I dont think you can call SAMP commands, sry.

You can send some blank messages though, like this.

Код:
for(new i=0; i<20; i++)
{
    SendClientMessage(playerid, 0xFFFFFFFF, "");
}