SA-MP Forums Archive
[AJUDA] Radares - 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: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [AJUDA] Radares (/showthread.php?tid=252050)



[AJUDA] Radares - Shadoww5 - 29.04.2011

Pessoal, os radares estгo funcionando corretamente, o ъnico problema й o "CreateText3DLabel".

Eu coloquei tudo corretamente, mas o texto que deve ser criado (Radar !!/n 100 KM/H) para informar que hб um radar ali, nгo estб sendo criado.

Visto que o codigo й um pouco extenso, em razгo de eu ter colocado o stock e a public, postei o codigo no Pastebin: http://pastebin.com/ec4tXK4j


Re: [AJUDA] RADARES - diretor7 - 29.04.2011

Te aconselho a usar:
http://forum.sa-mp.com/showthread.ph...=sistema+radar
Crйditos a Larceny


Re: [AJUDA] RADARES - Shadoww5 - 29.04.2011

Valeu por me mandar uma soluзгo, mas eu queria usar o meu codigo mesmo .. Se alguem sober como me ajudar diz ae, por favor =D


Re: [AJUDA] Radares - Shadoww5 - 29.04.2011

UP UP


Re : [AJUDA] Radares - Lohran - 30.04.2011

man tenta adicionar pelo prуprio gamemode que derrepente funcione


Re: [AJUDA] Radares - Shadoww5 - 30.04.2011

Ja pensei nisto, Lohran.

Mas queria saber se hб algum erro neste codigo ou algo que pode estar causando este erro em outra parte do GM ...


Re: [AJUDA] Radares - [S]trong - 30.04.2011

tente mudar a parte da 3dtextlabel para isto,
pawn Код:
Create3DTextLabel(str, COLOR_YELLOW,x, y, z+4, 50, 0, 0);



Re: [AJUDA] Radares - The Knight - 30.04.2011

Apague:
pawn Код:
format( str, sizeof( str ), "Radar !!\n 100 KM/H" );
Create3DTextLabel( str, COLOR_YELLOW, x, y, z+1, 50, 0, 0 );
e coloque:
pawn Код:
Create3DTextLabel( "Radar !!\n 100 KM/H", COLOR_YELLOW, x, y, z+1, 50, 0, 0 );
Para quк criar uma format? Sу seria necessбrio, se por exemplo tivesse assim:
pawn Код:
#define MaxSpeedRadar 100
format( str, sizeof( str ), "Radar!!\n %d KM/H" );
Create3DTextLabel( str, COLOR_YELLOW, x, y, z+1, 50, 0, 0 );



Re: [AJUDA] Radares - Shadoww5 - 30.04.2011

Estava desta forma que vocк sugeriu, mas como eu nгo sabia como consertar este bug usei o format.


Re: [AJUDA] Radares - Macintosh - 30.04.2011

pawn Код:
SetTimerEx("Atualizar3dTextRadar", 1000, 0, "i", playerid);
pawn Код:
forward Atualizar3dTextRadar();
public Atualizar3dTextRadar()
{
 new str[128];
 format(str,sizeof(str),"Radar !!\n 100 KM/H");
 Create3DTextLabel(str, COLOR_YELLOW,x, y, z+1, 50, 0, 0);
 return 1;
}
Tenta assim .