SA-MP Forums Archive
Some advices please - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Some advices please (/showthread.php?tid=192793)



Some advices please - Setkus - 23.11.2010

Hey,

I'm just going to create a tutorial for begginer (when player is connected and after registering the server should show the city). The bad thing is that i don't know how to create it. Could anyone tell me how to create it ?

Sorry for my bad english. I hope you understand that. Thanks


Re: Some advices please - Setkus - 24.11.2010

Could anyone help me with this ?


Re: Some advices please - Cameltoe - 24.11.2010

Quote:
Originally Posted by Setkus
View Post
Could anyone help me with this ?
Theres a lot of released gm's that contains just what you want read through some of them.


Re: Some advices please - Arcanize - 24.11.2010

Use publics, timers.

Example:

Code:
public YouPublicName(playerid)
{
    SendClientMessage(playerid, COLOR_NEWOOC, "____________________________________________________________________________________________");
    SendClientMessage(playerid, COLOR_WHITE, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!.");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!.");
	SendClientMessage(playerid, COLOR_NEWOOC, "____________________________________________________________________________________________");
    SetTimerEx("YouPublicNameTwo", 8000, 0, "d", playerid);
	return 1;
}
public YouPublicNameTwo(playerid)
{
    SendClientMessage(playerid, COLOR_WHITE, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!.");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!");
	SendClientMessage(playerid, COLOR_GREY, "YOUR TEXT OVER HERE!.");
	SendClientMessage(playerid, COLOR_NEWOOC, "____________________________________________________________________________________________");
	SetTimerEx("YouPublicNameThree", 8000, 0, "d", playerid);
}
Change the code and here you go.

Don't forget to add forwards too!


Re: Some advices please - Setkus - 24.11.2010

Thanks for this Arcanize very much.
Also thanks Cameltoe too.