[Pedido] parar roubo -
Gutierrez_zikaloko - 21.05.2012
tipo quando o player q estб roubando se ele sair do local, tipo ele ta na loja 1 ai ele sai pra fora, o roubo para, aparece q ele с consegue rouba.
Ajuda awe.
Re: [Pedido] parar roubo -
ViniBorn - 21.05.2012
Й sу adicionar IsPlayerInRangeOfPoint ao cуdigo
Re: [Pedido] parar roubo -
Gutierrez_zikaloko - 21.05.2012
em q parte add iso?
pawn Код:
public RouboBanco(playerid)
{
KillTimer(tempobanco);
if(!PlayerToPoint(8.0,playerid,2141.221923,1642.316802,992.978110))
{
format(gstring, sizeof(gstring), "%s e os %s nгo conseguiram roubar o cofre do Banco! ID:[%d]", PlayerName(playerid), NomeORG(playerid), playerid);
SendClientMessageToAll(GetPlayerColor(playerid), gstring);
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo estб no cofre do banco.");
ClearAnimations(playerid);
RemovePlayerAttachedObject(playerid,3);
ProvocoBanco[playerid] = 0; roubando[playerid] = 0; roubobanco = 0; KillTimer(tempobanco); temporoubobanco= 0;
return 1;
}
ForPlayers(i)
{
Re: [Pedido] parar roubo -
Gutierrez_zikaloko - 21.05.2012
ME AJUDA AI AONDE ADD ISSO NO CODE?
Re: [Pedido] parar roubo -
Gutierrez_zikaloko - 22.05.2012
aonde coloco isso?
Re: [Pedido] parar roubo -
leosivi - 22.05.2012
Tente:
pawn Код:
else if(PlayerToPoint(8.0,playerid,2141.221923,1642.316802,992.978110))
{
format(gstring, sizeof(gstring), "%s e os %s nгo conseguiram roubar o cofre do Banco! ID:[%d]", PlayerName(playerid), NomeORG(playerid), playerid);
SendClientMessageToAll(GetPlayerColor(playerid), gstring);
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo estб no cofre do banco.");
ClearAnimations(playerid);
RemovePlayerAttachedObject(playerid,3);
ProvocoBanco[playerid] = 0; roubando[playerid] = 0; roubobanco = 0; KillTimer(tempobanco); temporoubobanco= 0;
return 1;
}
ForPlayers(i)
{
Re: [Pedido] parar roubo -
Gutierrez_zikaloko - 22.05.2012
с funfo, da erro na compilaзгo, ele nem xega a compilar, fala q o pawno parou de funcionar.
Re: [Pedido] parar roubo -
kinhobryant - 22.05.2012
e so colocar "}" no final .-.
Re: [Pedido] parar roubo -
Gutierrez_zikaloko - 23.05.2012
с foi coloquei } no final e da o mesmo erro, o programa para de funciona
Re: [Pedido] parar roubo -
KinX - 23.05.2012
pawn Код:
public RouboBanco(playerid)
{
KillTimer(tempobanco);
if(!IsPlayerInRangeOfPoint(playerid, 8.0 ,2141.221923,1642.316802,992.978110))
{
format(gstring, sizeof(gstring), "%s e os %s nгo conseguiram roubar o cofre do Banco! ID:[%d]", PlayerName(playerid), NomeORG(playerid), playerid);
SendClientMessageToAll(GetPlayerColor(playerid), gstring);
SendClientMessage(playerid, COLOR_GREY, "Vocк nгo estб no cofre do banco.");
ClearAnimations(playerid);
RemovePlayerAttachedObject(playerid,3);
ProvocoBanco[playerid] = 0;
roubando[playerid] = 0;
roubobanco = 0;
KillTimer(tempobanco);
temporoubobanco= 0;
return 1;
}
ForPlayers(i)
{
// Continuaзгo do Cуdigo
}