TextDraw em Baixo do Radar -
CLANdok - 17.10.2013
pawn Код:
COMMAND:criarradar(playerid, params[])
{
// Setup local variables
new Float:x, Float:y, Float:z, Float:Angle, MaxSpeed, file[100], File:PFile, LineForFile[100], Msg[128];
SendAdminText(playerid, "/criarradar", params);
if (APlayerData[playerid][LoggedIn] == true)
{
if (APlayerData[playerid][PlayerLevel] >= 5)
{
if (sscanf(params, "i", MaxSpeed)) SendClientMessage(playerid, 0xFF0000AA, "Use: /criarradar [Vel.Max]");
else
{
GetPlayerPos(playerid, x, y, z);
GetPlayerFacingAngle(playerid, Angle);
z = z - 1.0; // Adjust camera Z-coordinate 1m lower than normal (otherwise the camera floats in the air)
SetPlayerPos(playerid, x, y + 1.0, z + 1.0);
for (new CamID; CamID < MAX_CAMERAS; CamID++)
{
if (ACameras[CamID][CamSpeed] == 0)
{
SetupSpeedCamera(CamID, x, y, z, Angle, MaxSpeed);
format(file, sizeof(file), CameraFile, CamID);
PFile = fopen(file, io_write);
format(LineForFile, 100, "CamX %f\r\n", x);
fwrite(PFile, LineForFile);
format(LineForFile, 100, "CamY %f\r\n", y);
fwrite(PFile, LineForFile);
format(LineForFile, 100, "CamZ %f\r\n", z);
fwrite(PFile, LineForFile);
format(LineForFile, 100, "CamAngle %f\r\n", Angle);
fwrite(PFile, LineForFile);
format(LineForFile, 100, "CamSpeed %i\r\n", MaxSpeed);
fwrite(PFile, LineForFile);
fclose(PFile);
format(Msg, 128, "Vocк criou o radar ID: %i", CamID);
SendClientMessage(playerid, 0x00FF00FF, Msg);
return 1;
}
}
// In case all camera-slots are occupied (100 camera's have been created already), let the player know about it
format(Msg, 128, "{FF0000}[MDC] Vocк nгo pode criar mais de %i radares.", MAX_CAMERAS);
SendClientMessage(playerid, 0xFFFFFFFF, Msg);
}
}
else
return 0;
}
else
return 0;
// Let the server know that this was a valid command
return 1;
}
Olб meu comando й esse e que queria criar um textdraw em baixo do Radar, Mais queria que ele falasse a Velocidade do Radar.Antes de alguem falar que eu sou preguзoso eu pesquisei mais nao achei o qual eu queria. brigado
Re: TextDraw em Baixo do Radar -
Locky_ - 17.10.2013
Acho que seria "
TextLabel" o.O
https://sampwiki.blast.hk/wiki/Create3DTextLabel
Re: TextDraw em Baixo do Radar -
CLANdok - 17.10.2013
Quote:
Originally Posted by Nickvj7
|
Nao vou aprender assim. Tem como explicar vocк ?
AW: TextDraw em Baixo do Radar -
ipsBruno - 18.10.2013
Cara й bem simples, essa funзгo cria um texto em alguma posiзгo que indicar
Lб tem o exemplo:
pawn Код:
Create3DTextLabel("I'm at the coordinates:\n30.0, 40.0, 50.0", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, 0);
Vai criar o texto na posiзгo 30.0, 40.0
ou
pawn Код:
SetPlayerPos(playerid, 30.0, 40.0, 10.0);
para ver o textozinho.
Abraзos
Re: TextDraw em Baixo do Radar -
PT - 18.10.2013
cara vc pediu para criar 1 text draw
para criacao de textdraw
usa isto;
https://sampforum.blast.hk/showthread.php?tid=376758
muito facil a criacao.
Re: TextDraw em Baixo do Radar -
CLANdok - 18.10.2013
Brigado moзos