в начале инклудов у вас должен стоять:
Ко всем
Code
define sTextDraw 11
define ms 200
Ко всем форвардам
Code
forward textdraw();
forward Changetextdraw(text[]);
Ко всем new
Code
new Text:TextWebsite;
new TextDraw = 0;
ВCode
{
print("\n--------------------------------------");
print("TextDraw by Asic_Lion");
print("--------------------------------------\n");
textdraw = TextDrawCreate(1.000000,421.000000, "Своё название или форум");//тут я думаю всё понятно=)
TextDrawBackgroundColor(TextWebsite, 255);
TextDrawFont(TextWebsite, 3);
TextDrawLetterSize(TextWebsite, 0.439999, 2.000000);
TextDrawColor(TextWebsite, -1);
TextDrawSetOutline(TextWebsite, 1);
TextDrawSetProportional(TextWebsite, 1);
SetTimer("ChangeWebsite",ms,1);
return 1;
}
В
Code
TextDrawDestroy(TextWebsite);
В OnPlayerDisconnect
Code
TextDrawHideForPlayer(playerid, TextWebsite);
В конец мода
Code
public Changetextdraw(text[])
{
TextDrawHideForAll(TextWebsite);
TextDrawSetString(TextWebsite,text);
TextDrawShowForAll(TextWebsite);
return 1;
}
Ещё ниже xd
Code
public textdraw()
{
if(TextDraw > sTextDraw) TextDraw = 0;
switch(TextWebsiteCount)
{
case 0:
{
ChangeTextWebsite("~r~ф~g~о~y~р~w~у~b~м");
}
case 1:
{
ChangeTextWebsite("~r~ф~b~о~g~р~y~у~w~м");
}
case 2:
{
ChangeTextWebsite("~w~ф~r~о~b~р~g~у~y~м");
}
case 3:
{
ChangeTextWebsite("~y~ф~w~о~r~р~b~у~g~м");
}
case 4:
{
ChangeTextWebsite("~g~ф~y~о~w~р~r~у~b~м");
}
case 5:
{
ChangeTextWebsite("~b~ф~g~о~y~р~w~у~r~м");
}
case 6:
{
ChangeTextWebsite("~r~ф~b~о~g~р~y~у~w~м");
}
case 7:
{
ChangeTextWebsite("~y~ф~w~о~r~р~b~у~g~м");
}
}
TextWebsiteCount++;
}
Редактировать по цветам можно как угодно
Автор:Asic_Lion