Comando /depositarfazenda nao fufar -
MeTaLLeiRO - 18.02.2017
PHP код:
CMD:depositarfazenda(playerid, params[])
{
new borse = PlayerInfo[playerid][pPFazkey];
if (borse == 255)
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem uma Fazenda.");
return true;
}
new quant;
new string[128];
if(sscanf(params, "d", quant))
{
if (borse < 255)
{
format(string, sizeof(string), " Vocк tem R$%d de saldo em sua Fazenda.", FBizzInfo[borse][fbTill]);
SendClientMessage(playerid, COLOR_GRAD3, string);
}
SendClientMessage(playerid, COLOR_GRAD2, "USE: /depositarfazenda [quantidade]");
return true;
}
new cashdeposit = quant;
if (cashdeposit > GetPlayerMoney(playerid) || cashdeposit < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem tanto");
return true;
}
if (borse < 255)
{
if(!PlayerToPoint(100, playerid,FBizzInfo[borse-200][fbEntranceX],FBizzInfo[borse-200][fbEntranceY],FBizzInfo[borse-200][fbEntranceZ]))
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк estб longe de sua fazenda");
return true;
}
else
{
GiveDinheiro(playerid,-cashdeposit);
FBizzInfo[borse][fbTill] += cashdeposit;
format(string, sizeof(string), " Vocк guardou R$%d no cofre de sua fazenda. O saldo de sua fazenda: R$%d", cashdeposit,FBizzInfo[borse-200][fbTill]);
SendClientMessage(playerid, COLOR_YELLOW, string);
SalvarFEmpresa(borse);
}
}
Atualizar3Dtexts();
return true;
}
estou tentando depositar dinheiro na fazenda so que sempre fala que o comando nao existe quando estou depositando.
alguem pode me ajudar?
Re: Comando /depositarfazenda nao fufar -
Cheleber_Pausini - 18.02.2017
Tenta isso:
PHP код:
if(!IsPlayerInRangeOfPoint(playerid, 100, FBizzInfo[borse-200][fbEntranceX],FBizzInfo[borse-200][fbEntranceY],FBizzInfo[borse-200][fbEntranceZ]))
Em vez de:
PHP код:
if(!PlayerToPoint(100, playerid,FBizzInfo[borse-200][fbEntranceX],FBizzInfo[borse-200][fbEntranceY],FBizzInfo[borse-200][fbEntranceZ])) [fbEntranceZ]
Re: Comando /depositarfazenda nao fufar -
MeTaLLeiRO - 18.02.2017
nгo funcionou ainda estou com msm problema
Re: Comando /depositarfazenda nao fufar -
Cheleber_Pausini - 19.02.2017
Refiz o comando, tenta:
PHP код:
CMD:depositarfazenda(playerid, params[])
{
new quant;
new string[128];
new borse = PlayerInfo[playerid][pPFazkey];
if (borse == 255) return SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem uma Fazenda.");
if(sscanf(params, "d", quant))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /depositarfazenda [quantidade]");
format(string, sizeof(string), " Vocк tem R$%d de saldo em sua Fazenda.", FBizzInfo[borse][fbTill]);
SendClientMessage(playerid, COLOR_GRAD3, string);
return 1;
}
new cashdeposit = quant;
if (cashdeposit > GetPlayerMoney(playerid) || cashdeposit < 1) return SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem tanto");
if(!IsPlayerInRangeOfPoint(playerid, 100, FBizzInfo[borse-200][fbEntranceX],FBizzInfo[borse-200][fbEntranceY],FBizzInfo[borse-200][fbEntranceZ]))
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк estб longe de sua fazenda");
return true;
}
else
{
GiveDinheiro(playerid,-cashdeposit);
FBizzInfo[borse][fbTill] += cashdeposit;
format(string, sizeof(string), " Vocк guardou R$%d no cofre de sua fazenda. O saldo de sua fazenda: R$%d", cashdeposit,FBizzInfo[borse-200][fbTill]);
SendClientMessage(playerid, COLOR_YELLOW, string);
SalvarFEmpresa(borse);
}
Atualizar3Dtexts();
return true;
}
Se nгo funcionar, tenta assim:
PHP код:
CMD:depositarfazenda(playerid, params[])
{
new quant;
new string[128];
new borse = PlayerInfo[playerid][pPFazkey];
if (borse == 255) return SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem uma Fazenda.");
if(sscanf(params, "d", quant))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: /depositarfazenda [quantidade]");
format(string, sizeof(string), " Vocк tem R$%d de saldo em sua Fazenda.", FBizzInfo[borse][fbTill]);
SendClientMessage(playerid, COLOR_GRAD3, string);
return 1;
}
new cashdeposit = quant;
if (cashdeposit > GetPlayerMoney(playerid) || cashdeposit < 1) return SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo tem tanto");
if(!IsPlayerInRangeOfPoint(playerid, 100, FBizzInfo[borse][fbEntranceX],FBizzInfo[borse][fbEntranceY],FBizzInfo[borse][fbEntranceZ]))
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк estб longe de sua fazenda");
return true;
}
else
{
GiveDinheiro(playerid,-cashdeposit);
FBizzInfo[borse][fbTill] += cashdeposit;
format(string, sizeof(string), " Vocк guardou R$%d no cofre de sua fazenda. O saldo de sua fazenda: R$%d", cashdeposit,FBizzInfo[borse-200][fbTill]);
SendClientMessage(playerid, COLOR_YELLOW, string);
SalvarFEmpresa(borse);
}
Atualizar3Dtexts();
return true;
}