[Ajuda] SetTimerEx format
#1

Olб e bom dia a todos.

Estou com o seguinte cуdigo

Code:
new Text3D:label = Create3DTextLabel( string, 0xffffff, p[0], p[1], p[2], 30.0, 0  );
SetTimerEx( "OnRetirarTexto3D", 5000, 0, "s", label );
Porйm o format "s" gera um warning na hora da compilaзгo. Minha dъvida й: Que tipo de format posso passar? Ja tentei todos, "d", "f", "b", etc...

Agradeзo desde jб.
Reply
#2

tenta o "n"
Reply
#3

pawn Code:
SetTimer("OnRetirarTexto3D", 5000, 0);
public nRetirarTexto3D() return Delete3DTextLabel(label);
Espero que funcione
Abraзos!
Reply
#4

https://sampwiki.blast.hk/wiki/Format
Reply
#5

pawn Code:
new Text3D:label = Create3DTextLabel( string, 0xffffff, p[0], p[1], p[2], 30.0, 0  );
SetTimer( "OnRetirarTexto3D_Label");

forward on..
public on..
{
   Destroy..
}
Reply
#6

A variбvel label armazena nъmeros inteiros, entгo o sнmbolo apropriado seria o i ou o d .



O warning estб sendo gerado devido аs tags da elipse do SetTimerEx, mas hб um truque para burlar isso :


pawn Code:
new Text3D:label = Create3DTextLabel( string, 0xffffff, p[0], p[1], p[2], 30.0, 0  );
SetTimerEx( "OnRetirarTexto3D", 5000, 0, "i", (_:label) );


Espero ter ajudado .
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)