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);
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);
//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);
/gotoco 1479.1388 825.0556 6.9071 0
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);
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. |
CMD:frezze(playerid,params[])
{
TogglePlayerControllable(playerid,0); // 0 for frezze, 1 for unfrezze
return 1;
}