Why doesn't this work? - 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: Why doesn't this work? (
/showthread.php?tid=279700)
Why doesn't this work? -
Rabbayazza - 28.08.2011
in
Код:
public OnGameModeInit()
Код:
//3D Text//
Create3DTextLabel("Default Clothing Business", 0xFFFFDD, 479.5457,-1535.9890, 19.5594, 0, 1);
Create3DTextLabel("Rodeo Bank", 0xFFFFDD, 474.3142, -1509.1351, - 0.9, 4.0, 0, 1);
//3D Text//
Re: Why doesn't this work? -
WoodPecker - 28.08.2011
PHP код:
new Text3D:Test;
Test = Create3DTextLabel("Your text here",0x008080FF,479.5457,-1535.9890, 19.5594, 20.0, 0);
Update3DTextLabelText(Test, 0x008080FF, "Your text here");
Re: Why doesn't this work? -
Kingunit - 28.08.2011
You need to define it above like WoodPecker said.
Here you can actually check if it works.