[AJUDA] Settimer
#1

Colocar para abrir portгo e tal automбtico й muito fбcil eu sei fazer...

Mas como fazer com settimer? Ele fechar daqui 10 segundos e tal?

Eu vi um tuto do bruno mas ele explicou igual o bumbum dele, rs... Ajuda aк meus amigos
Reply
#2

pawn Код:
forward JFS(); // Topo Para o SetTimer
 
public OnGameModeInit()
{
    SetTimer("JFS",10000,false); // ( 1000 - 1 Segundo )
}
 
public JFS() // Public :C
{
    print("10 Segundos й Hora do Sexo * - *");
}

Oq tu quer saber mais ou menos a fazer oq ?
Reply
#3

ele quer abrir um portao e fechar com SetTimer
faзa o comando estilo:
pawn Код:
{
if(!IsPlayerInRangeOfPoint(playerid, 2.0, 229.2247,153.0629,1003.0234)) return SendClientMessage(playerid, COR_CREDITOS, "Voce Nao Esta No Lugar Certo De Abrir O Portao!");
{
MoveObject(Portaodp, 228.32666016, 152.09010315, 1007.28723145,1.0);
SetTimerEx("portadplv",5000, false, "i", playerid);
SendClientMessage(playerid,COR_PM, "Portгo aberto! Fecharб em 5 Segundos");
return 1;
}
}
e cria a forward portadplv (playerid);
e add
pawn Код:
public portadplv (playerid)
{
    MoveObject(Portaodp, 228.26464844, 152.10253906, 1004.66027832, 1.0);
    return 1;
}
Reply
#4

Outro Exemplo :

pawn Код:
forward JFS1();

SetTimer("JFS1", 10000, true);

public JFS1()
{
SendClientMessage(playerid, COLOR_VIADO,"Vocк Estб Vendo Essa Mensagem Pуis Jб Passou 10 Segundos !.");
return 1;
}
Reply
#5

Ae aprendi a fazer isso
Que belezinha xD
Reply
#6

Quote:
Originally Posted by Carl_Thuse
Посмотреть сообщение
Ae aprendi a fazer isso
Que belezinha xD
Tomara que o JR aprenda Tambй, =(
Reply
#7

vou tentar, jб jб venho dar um edit.

@EDIT

Код:
C:\Documents and Settings\Luciano\Desktop\Gaming of Life - Gang War\filterscripts\VIP.pwn(843) : error 017: undefined symbol "playerid"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
public...

pawn Код:
public PORTAOVIP()
{
SendClientMessage ( playerid, COLOR_VIP2, "Em 10 segundos o portгo vai fechar!");
return 1;
}
Reply
#8

Estava sem os parametros playerid '-'

pawn Код:
forward JFS1(playerid);

SetTimer("JFS1", 10000, true);

public JFS1(playerid)
{
SendClientMessage(playerid, COLOR_VIADO,"Vocк Estб Vendo Essa Mensagem Pуis Jб Passou 10 Segundos !.");
return 1;
}
Reply
#9

hehe valws falcon * - * nem vi D
Reply
#10

pawn Код:
#define COLOR_VIADO 0xF0400A
pawn Код:
forward JFS1(playerid);
pawn Код:
if(strcmp("/abrirportao", cmd, true) == 0)
{
 MoveObject(//Funзгo); Aqui serб quando o portгo estiver aberto
 SetTimer("JFS1", 10000, true); //JFS1 й o nome da public que serб executada | 10000ms = 10s
 return 1;
}
pawn Код:
public JFS1(playerid)
{
 SendClientMessage(playerid, COLOR_VIADO,"Vocк Estб Vendo Essa Mensagem Pуis Jб Passou 10 Segundos!");
 MoveObject(//Funзгo); // Aqui serб quando o portгo estiver fechado
 return 1;
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)