not visible in the 3dtextlabel - 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: not visible in the 3dtextlabel (
/showthread.php?tid=516293)
not visible in the 3dtextlabel -
Slicebook - 30.05.2014
something does not work! not showing for some reason server.
Код:
public OnGameModeInit()
{
Create3DTextLabel("[ /piac ]",COLOR_ORANGE,-2116.6138,-2474.8118,30.6250,10.0,1);
Create3DTextLabel("[ /uttisztito ]",COLOR_ORANGE,-2152.8345,-2447.9385,30.8516,10.0,1);
Create3DTextLabel("[ /pizzas ]",COLOR_ORANGE,-2134.6650,-2265.8562,30.6250,10.0,1);
Create3DTextLabel("[ /szallito ]",COLOR_ORANGE,-2116.6138,-2474.8118,30.6250,10.0,1);
return 1;
}
Re: not visible in the 3dtextlabel -
SilentSoul - 30.05.2014
I think that the problem might be virtual world you have set it visible only in virtual world id 1, are you sure you are on that virtual word?, Btw default samp virtual world is 0. try this code.
pawn Код:
public OnGameModeInit()
{
Create3DTextLabel("[ /piac ]",COLOR_ORANGE,-2116.6138,-2474.8118,30.6250,10.0,0);
Create3DTextLabel("[ /uttisztito ]",COLOR_ORANGE,-2152.8345,-2447.9385,30.8516,10.0,0);
Create3DTextLabel("[ /pizzas ]",COLOR_ORANGE,-2134.6650,-2265.8562,30.6250,10.0,0);
Create3DTextLabel("[ /szallito ]",COLOR_ORANGE,-2116.6138,-2474.8118,30.6250,10.0,0);
return 1;
}
Create3DTextLabel