Ayuda 3D Labbel - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (
https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Ayuda 3D Labbel (
/showthread.php?tid=271697)
Ayuda 3D Labbel -
RatHack - 25.07.2011
Buenas
Lo que estoi intentando hacer es que al poner el comando /lock (del ladmin) quiero que le aparezca al vehiculo
un 3d labbel que diga Vehicle locked by:
Sabeis como lo podria hacer?
Respuesta: Ayuda 3D Labbel -
Ari3l - 25.07.2011
pawn Код:
new Text3D: Owner[MAX_PLAYERS];
if (!strcmp(cmdtext, "/lock", true))
{
new szString[128], Nombre[24], Float: x, Float: y, Float: z;
GetPlayerName(playerid, Nombre, sizeof(Nombre));
GetVehiclePos(GetPlayerVehicleID(playerid), x, y, z);
format(szString, sizeof(szString), "Locked by %s", Nombre);
Owner[playerid] = Create3DTextLabel(szString, 0xFFFFFFAA, 0.0, 0.0, 0.0, 40.0, 0);
Attach3DTextLabelToVehicle(Owner[playerid], GetVehiclePos(playerid), x, y, z);
// Demas funciones.
return 1;
}
Creo que ahi deberia funcionar solo aсadele la funcion para bloquear el vehiculo.
Saludos.
Respuesta: Ayuda 3D Labbel -
RatHack - 25.07.2011
pawn Код:
C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition
C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition
C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Warnings.
Linea 1411:
pawn Код:
Attach3DTextLabelToVehicle(Owner[playerid], GetVehiclePos(playerid), x, y, z);
Respuesta: Ayuda 3D Labbel -
Ari3l - 25.07.2011
Quote:
Originally Posted by RatHack
pawn Код:
C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition C:\Users\Valentino\Desktop\Rat's propiety\0.3b Server Samp1\filterscripts\ladmin4v2.pwn(1411) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase
3 Warnings.
Linea 1411:
pawn Код:
Attach3DTextLabelToVehicle(Owner[playerid], GetVehiclePos(playerid), x, y, z);
|
Perdona me confundi xD reemplazala a:
pawn Код:
Attach3DTextLabelToVehicle(Owner[playerid], GetPlayerVehicleID(playerid), x, y, z);
Saludos
Respuesta: Ayuda 3D Labbel -
RatHack - 25.07.2011
Me sirviу, gracias, un puntito para tн
/lock