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);
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);
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_
|
I have it now in current code but still its not showing up.
Re: 3D Text not showing -
Rudy_ - 22.07.2012
and
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);