[AJUDA] Radares
#1

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
Reply
#2

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

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
Reply
#4

UP UP
Reply
#5

man tenta adicionar pelo prуprio gamemode que derrepente funcione
Reply
#6

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 ...
Reply
#7

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

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 );
Reply
#9

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

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 .
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)