Asking for a textdraw (asking for script)
#1

Hi. I am not good with placing textdraws / creating them.

Can you help me by creating this textdraw for me?

(placed in the lowest left corner of the screen)

Thanks a lot.

Reply
#2

PHP код:
new Text:TDEditor_TD[3];
TDEditor_TD[0] = TextDrawCreate(4.333339416.333343"ld_grav:timer");
TextDrawTextSize(TDEditor_TD[0], 20.00000024.000000);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -1);
TextDrawSetShadow(TDEditor_TD[0], 0);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 4);
TextDrawSetProportional(TDEditor_TD[0], 0);
TDEditor_TD[1] = TextDrawCreate(27.000020423.540802"RELOOT_23:21");
TextDrawLetterSize(TDEditor_TD[1], 0.2360001.259851);
TextDrawAlignment(TDEditor_TD[1], 1);
TextDrawColor(TDEditor_TD[1], -1);
TextDrawSetShadow(TDEditor_TD[1], 1);
TextDrawBackgroundColor(TDEditor_TD[1], 255);
TextDrawFont(TDEditor_TD[1], 2);
TextDrawSetProportional(TDEditor_TD[1], 1);
TDEditor_TD[2] = TextDrawCreate(10.666654422.140777"ld_pool:ball");
TextDrawTextSize(TDEditor_TD[2], 97.00000018.000000);
TextDrawAlignment(TDEditor_TD[2], 1);
TextDrawColor(TDEditor_TD[2], -1331756289);
TextDrawSetShadow(TDEditor_TD[2], 0);
TextDrawBackgroundColor(TDEditor_TD[2], 255);
TextDrawFont(TDEditor_TD[2], 4);
TextDrawSetProportional(TDEditor_TD[2], 0); 
Reply
#3

A total of 3 textdraws:
- 1 normal textdraw,
- 2 model preview textdraw.

https://sampwiki.blast.hk/wiki/TextDrawSetPreviewModel
Reply
#4

Quote:
Originally Posted by Lokii
Посмотреть сообщение
PHP код:
new Text:TDEditor_TD[3];
TDEditor_TD[0] = TextDrawCreate(4.333339416.333343"ld_grav:timer");
TextDrawTextSize(TDEditor_TD[0], 20.00000024.000000);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -1);
TextDrawSetShadow(TDEditor_TD[0], 0);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 4);
TextDrawSetProportional(TDEditor_TD[0], 0);
TDEditor_TD[1] = TextDrawCreate(27.000020423.540802"RELOOT_23:21");
TextDrawLetterSize(TDEditor_TD[1], 0.2360001.259851);
TextDrawAlignment(TDEditor_TD[1], 1);
TextDrawColor(TDEditor_TD[1], -1);
TextDrawSetShadow(TDEditor_TD[1], 1);
TextDrawBackgroundColor(TDEditor_TD[1], 255);
TextDrawFont(TDEditor_TD[1], 2);
TextDrawSetProportional(TDEditor_TD[1], 1);
TDEditor_TD[2] = TextDrawCreate(10.666654422.140777"ld_pool:ball");
TextDrawTextSize(TDEditor_TD[2], 97.00000018.000000);
TextDrawAlignment(TDEditor_TD[2], 1);
TextDrawColor(TDEditor_TD[2], -1331756289);
TextDrawSetShadow(TDEditor_TD[2], 0);
TextDrawBackgroundColor(TDEditor_TD[2], 255);
TextDrawFont(TDEditor_TD[2], 4);
TextDrawSetProportional(TDEditor_TD[2], 0); 
Hmm, thanks for your time, but it won't show. No errors shown.
Reply
#5

Quote:
Originally Posted by v1k1nG
Посмотреть сообщение
A total of 3 textdraws:
- 1 normal textdraw,
- 2 model preview textdraw.

https://sampwiki.blast.hk/wiki/TextDrawSetPreviewModel
Sprites not model preview

Quote:
Originally Posted by Zeus666
Посмотреть сообщение
Hmm, thanks for your time, but it won't show. No errors shown.
PHP код:
CMD:test(playerid)
{
    for(new 
03++)
    {
        
TextDrawShoForPlayer(playeridTDEditor_TD[i]);
    }
    return 
1;

Reply
#6

Quote:
Originally Posted by Lokii
Посмотреть сообщение
Sprites not model preview



PHP код:
CMD:test(playerid)
{
    for(new 
03++)
    {
        
TextDrawShoForPlayer(playeridTDEditor_TD[i]);
    }
    return 
1;

It works, thanks. I just figured it out where to put it.

Anyway

How can I set this pattern

PHP код:
    TDEditor_TD[1] = TextDrawCreate(27.000020423.540802"RESPAWN IN %s ");
    
TextDrawLetterSize(TDEditor_TD[1], 0.2360001.259851);
    
TextDrawAlignment(TDEditor_TD[1], 1);
    
TextDrawColor(TDEditor_TD[1], -1);
    
TextDrawSetShadow(TDEditor_TD[1], 1);
    
TextDrawBackgroundColor(TDEditor_TD[1], 255);
    
TextDrawFont(TDEditor_TD[1], 2);
    
TextDrawSetProportional(TDEditor_TD[1], 1); 
PHP код:
%timer RespawnGeneral[1800000]() 
Reply
#7

їThis?

PHP код:
new str[25]; format(strsizeof str"RESPAWN IN %d"RespawnGeneral[1800000]);
TextDrawSetString(TDEditor_TD[1], str); 
Reply
#8

Quote:
Originally Posted by Lokii
Посмотреть сообщение
PHP код:
new Text:TDEditor_TD[3];
TDEditor_TD[0] = TextDrawCreate(4.333339416.333343"ld_grav:timer");
TextDrawTextSize(TDEditor_TD[0], 20.00000024.000000);
TextDrawAlignment(TDEditor_TD[0], 1);
TextDrawColor(TDEditor_TD[0], -1);
TextDrawSetShadow(TDEditor_TD[0], 0);
TextDrawBackgroundColor(TDEditor_TD[0], 255);
TextDrawFont(TDEditor_TD[0], 4);
TextDrawSetProportional(TDEditor_TD[0], 0);
TDEditor_TD[1] = TextDrawCreate(27.000020423.540802"RELOOT_23:21");
TextDrawLetterSize(TDEditor_TD[1], 0.2360001.259851);
TextDrawAlignment(TDEditor_TD[1], 1);
TextDrawColor(TDEditor_TD[1], -1);
TextDrawSetShadow(TDEditor_TD[1], 1);
TextDrawBackgroundColor(TDEditor_TD[1], 255);
TextDrawFont(TDEditor_TD[1], 2);
TextDrawSetProportional(TDEditor_TD[1], 1);
TDEditor_TD[2] = TextDrawCreate(10.666654422.140777"ld_pool:ball");
TextDrawTextSize(TDEditor_TD[2], 97.00000018.000000);
TextDrawAlignment(TDEditor_TD[2], 1);
TextDrawColor(TDEditor_TD[2], -1331756289);
TextDrawSetShadow(TDEditor_TD[2], 0);
TextDrawBackgroundColor(TDEditor_TD[2], 255);
TextDrawFont(TDEditor_TD[2], 4);
TextDrawSetProportional(TDEditor_TD[2], 0); 
Which editor you used to make this textdraw?
Reply
#9

Quote:
Originally Posted by Undef1ned
Посмотреть сообщение
їThis?

PHP код:
new str[25]; format(strsizeof str"RESPAWN IN %d"RespawnGeneral[1800000]);
TextDrawSetString(TDEditor_TD[1], str); 
PHP код:
 error 028invalid subscript (not an array or too many subscripts): "RespawnGeneral"
 
warning 215expression has no effect
 
error 001expected token";"but found "]"
 
error 029invalid expressionassumed zero
 
fatal error 107too many error messages on one line 
Reply
#10

Quote:
Originally Posted by KinderClans
Посмотреть сообщение
Which editor you used to make this textdraw?
TD Editor 1.7 By Adri1

Quote:
Originally Posted by Zeus666
Посмотреть сообщение
PHP код:
 error 028invalid subscript (not an array or too many subscripts): "RespawnGeneral"
 
warning 215expression has no effect
 
error 001expected token";"but found "]"
 
error 029invalid expressionassumed zero
 
fatal error 107too many error messages on one line 
You must place your variable "RespawnGeneral" well, I only just gave you an example.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)