How to make Text like this =D
#1

HEY GUYS DOES ANYONE KNOW HOW TO MAKE A TExT LIKE THIS ...
Here is the IMAGE ;p
http://i48.tinypic.com/2e57ho5.png
Reply
#2

Create3DTextLabel
Reply
#3

where do i put my cords
Reply
#4

Go to the place where you want the text label be at and type /save then go to Documents > Gta San Andreas User Files > SAMP > savedpositions.txt open this text file then you would find something like this
pawn Код:
AddPlayerClass(blablabla); // the comment you typed right after /save
All you need is the x, y, z coords which are the 2nd, 3rd and 4th parameters of AddPlayerClass, copy then paste them into your Create3DTextLabel.
Reply
#5

Man i know how to save i just wan't to know like i wan't to make the text in my server spawn place and how i do that :S ?
Reply
#6

if you are looking for textdraw, here it is.
Made under 2 mins

pawn Код:
// TextDraw developed using Zamaroht's Textdraw Editor 1.0

// On top of script:
new Text:Textdraw0;
new Text:Textdraw1;
new Text:Textdraw2;
new Text:Textdraw3;

// In OnGameModeInit prefferably, we procced to create our textdraws:
Textdraw0 = TextDrawCreate(490.000000, 355.000000, "drift society");
TextDrawBackgroundColor(Textdraw0, 255);
TextDrawFont(Textdraw0, 3);
TextDrawLetterSize(Textdraw0, 0.529999, 3.099999);
TextDrawColor(Textdraw0, 9881750);
TextDrawSetOutline(Textdraw0, 1);
TextDrawSetProportional(Textdraw0, 1);

Textdraw1 = TextDrawCreate(589.000000, 379.000000, "-");
TextDrawAlignment(Textdraw1, 2);
TextDrawBackgroundColor(Textdraw1, 255);
TextDrawFont(Textdraw1, 1);
TextDrawLetterSize(Textdraw1, 12.860013, 1.899999);
TextDrawColor(Textdraw1, -1);
TextDrawSetOutline(Textdraw1, 1);
TextDrawSetProportional(Textdraw1, 0);

Textdraw2 = TextDrawCreate(500.000000, 395.000000, "NIGHT");
TextDrawBackgroundColor(Textdraw2, 255);
TextDrawFont(Textdraw2, 1);
TextDrawLetterSize(Textdraw2, 0.480000, 1.600000);
TextDrawColor(Textdraw2, 9881750);
TextDrawSetOutline(Textdraw2, 1);
TextDrawSetProportional(Textdraw2, 1);

Textdraw3 = TextDrawCreate(549.000000, 395.000000, "IMPACT");
TextDrawBackgroundColor(Textdraw3, 255);
TextDrawFont(Textdraw3, 1);
TextDrawLetterSize(Textdraw3, 0.420000, 1.800000);
TextDrawColor(Textdraw3, -1);
TextDrawSetOutline(Textdraw3, 1);
TextDrawSetProportional(Textdraw3, 1);

// You can now use TextDrawShowForPlayer(-ForAll), TextDrawHideForPlayer(-ForAll) and
// TextDrawDestroy functions to show, hide, and destroy the textdraw.
3DTextLabel
pawn Код:
Create3DTextLabel("{3B47D1}Welcome to {7322D6}Drift Society{3B47D1}\nCheck out our new maps\n/cataclysm and /rockeendless!", 0x008080FF, 1958.3783, 1343.1572, 15.3746, 40.0, 0, 0);
Reply
#7

lawl bro i am not looking for a text draw and i can make text draw i am talking about the text in ground which say
welcome to Drift Society ;p
Reply
#8

Quote:
Originally Posted by MrCripBloodz
Посмотреть сообщение
lawl bro i am not looking for a text draw and i can make text draw i am talking about the text in ground which say
welcome to Drift Society ;p
pawn Код:
Create3DTextLabel("{3B47D1}Welcome to {7322D6}Drift Society{3B47D1}\nCheck out our new maps\n/cataclysm and /rockeendless!", 0x008080FF, 1958.3783, 1343.1572, 15.3746, 40.0, 0, 0);
Reply
#9

Quote:
Originally Posted by MrCripBloodz
Посмотреть сообщение
Man i know how to save i just wan't to know like i wan't to make the text in my server spawn place and how i do that :S ?
?! What's the problem then? Take the co-ordinates that you use for your "server spawn place" then use them in Create3DTextLabel.

Example:
pawn Код:
// assuming you have these coords for my spawn point x, y, z

1451.10, -1399.10, 112.10

// so you'd make the 3d text label like this

Create3DTextLabel("Welcome to my server!", 0x008080FF, 1451.10, -1399.10, 112.10, 40.0, 0, 0);
Reply
#10

Thankx alot dude <33 more respect XD
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)