SA-MP Forums Archive
Label doesn't appear - 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: Label doesn't appear (/showthread.php?tid=409318)



Label doesn't appear - Unirom Shaw - 21.01.2013

Oh, Hello there, i need help with Create3DTextLabel.
I create this script :
pawn Код:
Create3DTextLabel("Type /v to spawn a vehicle!",green,-552.6854,2594.1509,53.5156,88.9742,0,1);
    Create3DTextLabel("Are you new here? type /help for more info",orange,-523.8593,2585.4375,53.5703,268.2025,0,1);
    Create3DTextLabel("Type /teles to show teleport list",lightblue,-523.9078,2600.9485,53.5703,0.0101,0,1);
    Create3DTextLabel("Thanks for playing in this server!",blue,-492.0814,2588.4346,53.4815,269.4325,0,1);
    Create3DTextLabel("Find a bug? Report them on forum!",gold,-491.8217,2597.3918,53.4658,0.6134,0,1);
But In Game only 3 labels that appear on screen, how to make all labels appear?

Thanks


Re: Label doesn't appear - Roach_ - 21.01.2013

Maybe they're too close to each other..
So try to put new coords or better to use a Streamer..


Re: Label doesn't appear - Unirom Shaw - 21.01.2013

Can you give me example Streamer script for label?


Re: Label doesn't appear - Unirom Shaw - 22.01.2013

Quote:
Originally Posted by Roach_
Посмотреть сообщение
Maybe they're too close to each other..
So try to put new coords or better to use a Streamer..
No i think


Re: Label doesn't appear - Threshold - 22.01.2013

Read this: https://sampwiki.blast.hk/wiki/Create3DTextLabel

There is a parameter for DrawDistance (Distance between player and label before it can be seen, some of these were at 0.2 or below...

Try this:
pawn Код:
Create3DTextLabel("Type /v to spawn a vehicle!",green,-552.6854,2594.1509,53.5156,20.0,0,1);
    Create3DTextLabel("Are you new here? type /help for more info",orange,-523.8593,2585.4375,53.5703,20.0,0,1);
    Create3DTextLabel("Type /teles to show teleport list",lightblue,-523.9078,2600.9485,53.5703,20.0,0,1);
    Create3DTextLabel("Thanks for playing in this server!",blue,-492.0814,2588.4346,53.4815,20.0,0,1);
    Create3DTextLabel("Find a bug? Report them on forum!",gold,-491.8217,2597.3918,53.4658,20.0,0,1);