SA-MP Forums Archive
3D Text not showing - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: 3D Text not showing (/showthread.php?tid=361762)



3D Text not showing - JaKe Elite - 22.07.2012

I'm planning to add a message using 3d text label
in the position of Memorial Bridge in SF because i remove the SF Memorial Bridge, the message is sorry sign by Demolish Team
but its not showing up

i put it on OnGameModeInit

pawn Код:
CreateDynamic3DTextLabel("We are sorry if we remove the\nmemorial bridge, the Origin Hot Stunt\nManagement leader Romel order to demolish\nthe memorial bridge\nWe are verry sorry\nRegards: Demolish Team", COLOR_RED, -1791.3210,488.0659,25.8845, 50.0, -1, -1, -1, -1);



Re: 3D Text not showing - Rudy_ - 22.07.2012

pawn Код:
CreateDynamic3DTextLabel(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, worldid = -1, interiorid = -1, playerid = -1, Float:distance = 100.0);
pawn Код:
Float:distance = 100.0);
Float:distance = 100.0); = you have -1 ?


Re: 3D Text not showing - Kaperstone - 22.07.2012

Quote:
Originally Posted by Rudy_
Посмотреть сообщение
pawn Код:
CreateDynamic3DTextLabel(const text[], color, Float:x, Float:y, Float:z, Float:drawdistance, attachedplayer = INVALID_PLAYER_ID, attachedvehicle = INVALID_VEHICLE_ID, testlos = 0, worldid = -1, interiorid = -1, playerid = -1, Float:distance = 100.0);
pawn Код:
Float:distance = 100.0);
Float:distance = 100.0); = you have -1 ?
-1 means none,nothing.


Re: 3D Text not showing - JaKe Elite - 22.07.2012

Still the same. its not showing up.


Re: 3D Text not showing - Rudy_ - 22.07.2012

Quote:
Originally Posted by xkirill
Посмотреть сообщение
-1 means its unlimited.
lol he don't have -1 on that, he just haven't typed anything for that one.


Re: 3D Text not showing - Kaperstone - 22.07.2012

Quote:
Originally Posted by Rudy_
Посмотреть сообщение
lol he don't have -1 on that, he just haven't typed anything for that one.
EDIT:I was wrong,he typed -1.


Re: 3D Text not showing - JaKe Elite - 22.07.2012

here is my current code now

pawn Код:
CreateDynamic3DTextLabel("We are sorry if we remove the\nmemorial bridge, the Origin Hot Stunt\nManagement leader Romel order to demolish\nthe memorial bridge\nWe are verry sorry\nRegards: Demolish Team", COLOR_RED, -1791.3210,488.0659,25.8845, 100.0, -1, -1, -1, 100);
EDIT:

Quote:
Originally Posted by Rudy_
Посмотреть сообщение
and
pawn Код:
Float:distance = 100.0);
he left it
I have it now in current code but still its not showing up.


Re: 3D Text not showing - Rudy_ - 22.07.2012

and
pawn Код:
Float:distance = 100.0);
he left it


Re: 3D Text not showing - Kaperstone - 22.07.2012

Quote:
Originally Posted by Romel
Посмотреть сообщение
here is my current code now

pawn Код:
CreateDynamic3DTextLabel("We are sorry if we remove the\nmemorial bridge, the Origin Hot Stunt\nManagement leader Romel order to demolish\nthe memorial bridge\nWe are verry sorry\nRegards: Demolish Team", COLOR_RED, -1791.3210,488.0659,25.8845, 100.0, -1, -1, -1, 100);
Here,try this one -
pawn Код:
new Text3D:My3DText[1];
My3DText[0] = CreateDynamic3DTextLabel("We are sorry if we remove the\nmemorial bridge, the Origin Hot Stunt\nManagement leader Romel order to demolish\nthe memorial bridge\nWe are verry sorry\nRegards: Demolish Team", COLOR_RED, -1791.3210,488.0659,25.8845, 100.0, -1, -1, -1, 100);



Re: 3D Text not showing - Rudy_ - 22.07.2012

not sure but try this

pawn Код:
CreateDynamic3DTextLabel("We are sorry if we remove the\nmemorial bridge, the Origin Hot Stunt\nManagement leader Romel order to demolish\nthe memorial bridge\nWe are verry sorry\nRegards: Demolish Team", COLOR_RED, -1791.3210,488.0659,25.8845, 100.0, -1, -1, 0,-1,-1,-1, 100);