SA-MP Forums Archive
How to Make A Credits Line - 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: How to Make A Credits Line (/showthread.php?tid=469332)



How to Make A Credits Line - FiReMaNStone - 12.10.2013

i want to know how to make a credits line please tell me if you know


Re: How to Make A Credits Line - ***Niko*** - 12.10.2013

Код:
    if(strcmp(cmd, "/mycommand", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            SendClientMessage(playerid, COLOR_WHITE, "your text");
            SendClientMessage(playerid, COLOR_WHITE, "your text");
	}
		return 1;
	}



Re: How to Make A Credits Line - FiReMaNStone - 12.10.2013

not this i want to know how to make another line


Re: How to Make A Credits Line - Superhot - 12.10.2013

Код:
CMD:credits(playerid, params[])
{
    SendClientMessage(playerid,-1, "_________|- Your server's Credits -|_________");
    SendClientMessage(playerid, red, "This is 1 line,");
    SendClientMessage(playerid, red, "This is 2");
    SendClientMessage(playerid, red, "This is 3");
	return 1;
}



Re: How to Make A Credits Line - FiReMaNStone - 12.10.2013

Thanks Superhot


Re: How to Make A Credits Line - thomaswilliams - 12.10.2013

Код:
CMD:credits (playerid, params[])
{
	SendClientMessage(playerid, COLOR_YELLOW, "_________________________________________");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_WHITE, "Yourtext");
	SendClientMessage(playerid, COLOR_YELLOW, "_________________________________________");
	return 1;
}



Re: How to Make A Credits Line - FiReMaNStone - 12.10.2013

Thanks thomaswilliams


Re: How to Make A Credits Line - thomaswilliams - 12.10.2013

Quote:
Originally Posted by FiReMaNStone
Посмотреть сообщение
Thanks thomaswilliams
No problem, Just make sure you have the colors yellow and white defined and if not define them, You can find colors online just ****** it


Re: How to Make A Credits Line - FiReMaNStone - 12.10.2013

Ok i will find it