Website URL in game help?
#1

Hello

Can someone please help with website
e.g. I have seen it on some servers with there website URL at the top right hand corner of the screen can anyone tell me were to get one from

Thanks
Reply
#2

samp://12.34.56:7777
Is that what you mean?
Reply
#3

No actually in the SA-MP game for your own server
Reply
#4

pawn Код:
new Text: webURL;
...
TEXTDRAWS!!!

Use Zamaroht's textdraw editor to create it.
Reply
#5

https://sampforum.blast.hk/showthread.php?tid=117851
Reply
#6

pawn Код:
//On top of your script
new Text:forum;


// Under OnGameModeInIt
for(new i=0;i<MAX_PLAYERS;i++)
{
    forum = TextDrawCreate( 1.000000,433.000000, "URL here" );
    TextDrawAlignment( forum, 0 );
    TextDrawBackgroundColor( forum, 0x000000ff );
    TextDrawFont( forum, 2 );
    TextDrawLetterSize( forum, 0.499999,1.100000 );
    TextDrawColor( forum, 0xffffffff );
    TextDrawSetOutline( forum, 1 );
    TextDrawSetProportional( forum, 1 );
    TextDrawSetShadow( forum, 1 );
}

//Under OnPlayerConnect
TextDrawShowForPlayer(playerid, forum);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)