13.06.2013, 10:05
Olб mais uma vez pessoal, estou com um baita problema. й o seguinte: eu criei um settimer pra definir que quando esse tempo acabasse, ativasse uma linha de texto dini, mas acontece que ele nгo tб funcionando, quando se passa o tempo definido, o dini nгo й ativado. Preciso que alguem me ajude a ver se tem algum erro nele, obrigado xD
PF GALERA se alguem puder me ajudar
pawn Код:
new producao[MAX_PLAYERS];
pawn Код:
if(strcmp(cmdtext,"/mentrega", true) == 0) {
for(new p = 0; p < MAX_PROPS; p++)
{
format(string, sizeof(string), "/Props/prop%d.ini", p);
if(IsPlayerInRangeOfPoint(playerid, 2.0, dini_Float(string, "PosX"), dini_Float(string, "PosY"), dini_Float(string, "PosZ"))){
if(dini_Int(string,"Entrega") == 1)
if(PropEmp(playerid, p) == 1){
if(dini_Int(string, "Producao") == 0){
//SendClientMessage(playerid, Vermelho,"Vocк nгo й empregado dessa empresa");
if(fentrega[playerid] == 1){
}
dini_IntSet(string, "Entrega", 0);
dini_IntSet(string, "Mercadoria", 1);
producao[playerid] = SetTimerEx("Producaoiniciada", 21600000, false, "i", playerid); // tб ae o settimer
SendClientMessage(playerid, Vermelho,"|EMPRESA| Mercadoria entregue com sucesso !"); // nгo sei se ta certo
}
}
}
}
return 1;
}
pawn Код:
forward Producaoiniciada(playerid);
public Producaoiniciada(playerid)
{
new string[256];
format(string, sizeof(string), "/Props/prop%d.ini", proximaprop);
dini_IntSet(string, "Producao",1);
return true;
}