Some advices please
#1

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
Reply
#2

Could anyone help me with this ?
Reply
#3

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.
Reply
#4

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!
Reply
#5

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


Forum Jump:


Users browsing this thread: 2 Guest(s)