announce script - 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: announce script (
/showthread.php?tid=302252)
announce script -
[LHT]Bally - 08.12.2011
hi all bee looking to make a announce script and it always fails
can anyone help me i want it so it is in zcmd and it uses standard gamemode text which i think is 0
so basically need it to be like /announce [text] and the text to last for 6 seconds
Re: announce script -
GAMER_PS2 - 08.12.2011
pawn Код:
CMD:announce(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid,COLOR_RED, "USAGE: /announce <Text>");
GameTextForAll(params,6000,3);
return 1;
}
this command uses ZCMD you will need it if you don't have ZCMD
Re: announce script -
[LHT]Bally - 08.12.2011
thanks