SA-MP Forums Archive
Simple Scripting Question - 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: Simple Scripting Question (/showthread.php?tid=345950)



Simple Scripting Question - xSiiLenTx - 26.05.2012

I've added an Automessage text to start out the server, and I have a /developers CMD that I would like to create. I'd like for it to display:


UGS 2012
Created By:
xBEASTx and Killing Torcher


Can you get a script or tell us how to make it?


Re: Simple Scripting Question - Jstylezzz - 26.05.2012

pawn Код:
CMD:developers(playerid,params[])
{
    SendClientMessage(playerid,COLOR_WHITE,"UGS 2012");
    SendClientMessage(playerid,COLOR_WHITE,"Created By:");
    SendClientMessage(playerid,COLOR_WHITE,"xBEASTx and Killing Torcher");
    return 1;
}
Just send 3 messages to the player that does the command..


Re: Simple Scripting Question - xSiiLenTx - 26.05.2012

someone please close this, figured it out