13.08.2011, 23:43
Bom Viniborn desculpe o titulo para chamar sua atenзгo, mais vocк estava OFF no MSN e entгo reparei que vocк estava online no fуrum, bom estou com 2 problemas em 2 empregos que nгo consigo arrumar, se vocк puder me ajudar agradeзo muito..
Bom o problema do 1° Emprego й que quando eu digito /comprarprods ele apenas mostra os meus produtos, ele nгo executa a funзгo de comprar os produtos, estou com muitos problemas nisso, pois ele й a unica coisa que falta para terminar o emprego de Entregador.. D:
Bom cheguei a dar uma arrumadinha *TENTEI* e deixei assim, hahaha..
Bom o problema do 1° Emprego й que quando eu digito /comprarprods ele apenas mostra os meus produtos, ele nгo executa a funзгo de comprar os produtos, estou com muitos problemas nisso, pois ele й a unica coisa que falta para terminar o emprego de Entregador.. D:
pawn Код:
new Produtos[4];
//CARROS PRODUTOS
Produtos[0] = CreateVehicle(456,1770.0118,-2049.0852,13.8499,271.1727,-1,-1,999999999);
Produtos[1] = CreateVehicle(456,1769.7986,-2031.1731,13.8230,270.4986,-1,-1,999999999);
Produtos[2] = CreateVehicle(499,1768.4127,-2022.9679,14.1371,270.4728,-1,-1,999999999);
Produtos[3] = CreateVehicle(499,1776.7191,-2022.9093,13.9409,269.6101,-1,-1,999999999);
if(vId >= Produtos[0] && vId <= Produtos[3]){
if(PlayerInfo[playerid][pJob] == 18){
format(string, sizeof(string), "Produtos: %d/%d", PlayerHaul[GetPlayerVehicleID(playerid)][pLoad],PlayerHaul[GetPlayerVehicleID(playerid)][pCapasity]);
SendClientMessage(playerid, TEAM_GROVE_COLOR, string);
SendClientMessage(playerid, COLOR_WHITE, "DICA: Vocк pode fornecer produtos para as empresas e lucrar com isso.");
SendClientMessage(playerid, COLOR_WHITE, "DICA: Os comandos sгo: /produtos /comprarprods /venderprods");
} else {
SendClientMessage(playerid,0x972FFFAA,"{CD5C5C}[BOTInfo] {FFFFFF}Vocк nгo й um Entregador, E nгo pode usar esse veiculo!");
RemovePlayerFromVehicle(playerid);
TogglePlayerControllable(playerid, 1);
}
}
pawn Код:
if(strcmp(cmd, "/comprarprods", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new vId = GetPlayerVehicleID(playerid);
new tmpcar = GetPlayerVehicleID(playerid);
new compcost = 50;
if(PlayerToPoint(60.0, playerid, 1750.9022,-2054.1663,14.1010))
{
if(vId >= Produtos[0] && vId <= Produtos[3]){
if(PlayerHaul[tmpcar][pLoad] < PlayerHaul[tmpcar][pCapasity])
{
new amount;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD1, "USO: /comprarprods [quantia]");
return 1;
}
amount = strval(tmp);
if(amount < 1 || amount > 500) { SendClientMessage(playerid, COLOR_GREY, " Can't buy less then 1 Product ou more then 500 !"); return 1; }
new check= PlayerHaul[tmpcar][pLoad] + amount;
if(check > PlayerHaul[tmpcar][pCapasity])
{
format(string, sizeof(string), " Vocк ultrapassou o limite de produtos %d, seus carregamentos %d",PlayerHaul[tmpcar][pCapasity],PlayerHaul[tmpcar][pLoad]);
SendClientMessage(playerid, COLOR_GREY, string);
return 1;
}
new cost = amount*compcost;
if(GetPlayerGP(playerid) >= cost)
{
PlayerHaul[tmpcar][pLoad] += amount;
format(string, sizeof(string), "Produtos: %d/%d.", PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
SendClientMessage(playerid, TEAM_GROVE_COLOR, string);
format(string, sizeof(string), "Vocк comprou %d por R$ %d", amount,cost);
SendClientMessage(playerid, COLOR_WHITE, string);
GivePlayerGP(playerid,-cost);
PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
return 1;
}
else
{
format(string, sizeof(string), " Vocк nгo pфde pagar os produtos por R$ %d !", amount,cost);
SendClientMessage(playerid, COLOR_GREY, string);
return 1;
}
}
else
{
format(string, sizeof(string), "Produtos: %d/%d.", PlayerHaul[tmpcar][pLoad],PlayerHaul[tmpcar][pCapasity]);
SendClientMessage(playerid, TEAM_GROVE_COLOR, string);
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Esse veнculo nгo faz entrega de produtos");
return 1;
}
}
}
return 1;
}
pawn Код:
if(strcmp(cmd, "/comprarprods", true) == 0)
{
if(IsPlayerConnected(playerid)){
if(PlayerInfo[playerid][pJob] == 18){
new vId = GetPlayerVehicleID(playerid);
if(vId >= Produtos[0] && vId <= Produtos[3]){
if(PlayerToPoint(60.0, playerid, 1750.9022,-2054.1663,14.1010))
SendClientMessage(playerid, COLOR_RED, "Vocк deve estar ao Porгo para comprar seus Produtos.");{
new compcost = 50;
new amount;
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_RED, "[Digite] {FFFFFF}/comprarprods [Produtos] (Caminhгo Grande 200 - Caminhгo Pequeno 120)");
return 1;
}
amount = strval(tmp);
if(amount < 1 || amount > 2000) { SendClientMessage(playerid, COLOR_GREY, "Preзo entre R$1 e R$2000"); return 1; }
new cost = amount*compcost;
if(GetPlayerGP(playerid) >= cost)
{
format(string, sizeof(string), "Vocк comprou %d por R$%d", amount,cost);
SendClientMessage(playerid, COLOR_WHITE, string);
GivePlayerGP(playerid, -cost);
PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
return 1;
} else {
SendClientMessage(playerid,COLOR_RED,"Vocк nгo estб em um caminhao de entregas");
}
return 1;
}
}
}
}
}