I know what you mean.
Is this what actually do you mean?
//On top of script:
//Under OnGameModeInit:
pawn Код:
WelcomeText = TextDrawCreate(192.000000,112.000000,"~r~IvancheBG's ~b~Stunt World ~n~ ~n~~r~No Cheating or flaming ~n~ No absuing ~n~ Always Respect Admins And Players ~n~ No Spamming ~n~ If not doing so can lead you to kick or ban.");
TextDrawUseBox(WelcomeText,1);
TextDrawBoxColor(WelcomeText,0x00000099);
TextDrawTextSize(WelcomeText,527.000000,32.000000);
TextDrawAlignment(WelcomeText,0);
TextDrawBackgroundColor(WelcomeText0,0x000000ff);
TextDrawFont(WelcomeText,3);
TextDrawLetterSize(WelcomeText,0.499999,1.200000);
TextDrawColor(WelcomeText,0xffffffff);
TextDrawSetOutline(WelcomeText,1);
TextDrawSetProportional(WelcomeText,1);
TextDrawSetShadow(WelcomeText,1);
//This under OnPlayerConnect:
pawn Код:
TextDrawShowForPlayer(playerid, WelcomeText);
//This under OnPlayerRequestClass:
pawn Код:
TextDrawHideForPlayer(playerid, WelcomeText);
Also if you don't understand that on where to put this?
Here is it:
Must put this on Top
pawn Код:
public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid, WelcomeText);
return 1;
}
pawn Код:
public OnPlayerRequestClass(playerid)
{
TextDrawHideForPlayer(playerid, WelcomeText);
return 1;
}
pawn Код:
public OnGameModeInit()
{
WelcomeText = TextDrawCreate(192.000000,112.000000,"~r~IvancheBG's ~b~Stunt World ~n~ ~n~~r~No Cheating or flaming ~n~ No absuing ~n~ Always Respect Admins And Players ~n~ No Spamming ~n~ If not doing so can lead you to kick or ban.");
TextDrawUseBox(WelcomeText,1);
TextDrawBoxColor(WelcomeText,0x00000099);
TextDrawTextSize(WelcomeText,527.000000,32.000000);
TextDrawAlignment(WelcomeText,0);
TextDrawBackgroundColor(WelcomeText0,0x000000ff);
TextDrawFont(WelcomeText,3);
TextDrawLetterSize(WelcomeText,0.499999,1.200000);
TextDrawColor(WelcomeText,0xffffffff);
TextDrawSetOutline(WelcomeText,1);
TextDrawSetProportional(WelcomeText,1);
TextDrawSetShadow(WelcomeText,1);
return 1;
}
Thanks.