3dLabel dosen't show in game?
#1

Код:
	Create3DTextLabel("Trucks are not allowed on this road!",0xFF0000FF,1560.1462,903.8318,10.8203,0,0,0);
	Create3DTextLabel("Trucks are not allowed on this road!",0xFF0000FF,1559.3630,792.3956,11.4725,0,0,0);
        Create3DTextLabel("Drive slow!,Danger Road!",0xFF0000FF,1479.1388,825.0556,6.9071,0,0,0);
3dLabel dosen't show in game? Also no errors.
Reply
#2

Код:
   Create3DTextLabel("Trucks are not allowed on this road!",0xFF0000FF,1560.1462,903.8318,10.8203,0,0,1);
	 Create3DTextLabel("Trucks are not allowed on this road!",0xFF0000FF,1559.3630,792.3956,11.4725,0,0,1);
            Create3DTextLabel("Drive slow!,Danger Road!",0xFF0000FF,1479.1388,825.0556,6.9071,0,0,1);
Check This Mate
Reply
#3

Ah... the virtul world!
Reply
#4

Still not working.. wtf
Reply
#5

The problem is you put 0 in drawdistance that's why It won't work, try this one

pawn Код:
//Parameters
//Create3DTextLabel(text[], color, Float:X, Float:Y, Float:Z, Float:DrawDistance, virtualworld, testLOS)
Create3DTextLabel("Trucks are not allowed on this road!", 0xFF0000FF, 1560.1462, 903.8318, 10.8203, 50.0, 0, 0);
Create3DTextLabel("Trucks are not allowed on this road!", 0xFF0000FF, 1559.3630, 792.3956, 11.4725, 50.0, 0, 0);
Create3DTextLabel("Drive slow!,Danger Road!", 0xFF0000FF, 1479.1388, 825.0556, 6.9071, 50.0, 0, 0);
Reply
#6

Mate first go in game and check thatX,Y,Z are at the same place

Код:
/gotoco 1479.1388 825.0556 6.9071 0
Reply
#7

Look at my singtrue.
Reply
#8

Ooh.. yea thanks.. it's work. +1 rep. And what is the line to freeze a player? like CMD:blablab(playerid,params[])
{
what the line?
return ;1
}

I want to know this because i wanna make my own afk system.
Reply
#9

Quote:
Originally Posted by Tuntun
Посмотреть сообщение
Ooh.. yea thanks.. it's work. +1 rep. And what is the line to freeze a player? like CMD:blablab(playerid,params[])
{
what the line?
return ;1
}

I want to know this because i wanna make my own afk system.
Код:
TogglePlayerControllable(giveplayerid, 0);
Change 0 to 1 for unfreeze
Reply
#10

Quote:
Originally Posted by Tuntun
Посмотреть сообщение
Ooh.. yea thanks.. it's work. +1 rep. And what is the line to freeze a player? like CMD:blablab(playerid,params[])
{
what the line?
return ;1
}

I want to know this because i wanna make my own afk system.
pawn Код:
CMD:frezze(playerid,params[])
{
    TogglePlayerControllable(playerid,0); // 0 for frezze, 1 for unfrezze
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)