20.02.2011, 17:04
Eu criei o comando /servico taxi sу que ele nгo funciona pq o /corrida ta bugado
eu digito /corrida e o taxistas nao entra em serviзo nao aparece nada como se o comando nao existisse! por favor me ajudem, se puder postar o comando do /servico taxi e /corrida funfando por favor agradeзo muito**
eu digito /corrida e o taxistas nao entra em serviзo nao aparece nada como se o comando nao existisse! por favor me ajudem, se puder postar o comando do /servico taxi e /corrida funfando por favor agradeзo muito**
pawn Код:
if(strcmp(cmd,"/corrida",true)==0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pMembro] == 10||PlayerInfo[playerid][pLider] == 10|| PlayerInfo[playerid][pEmprego] == 14)
{
if(TransportDuty[playerid] == 1)
{
TransportDuty[playerid] = 0;
format(string, sizeof(string), "* Estб fora de serviзo, ganhou R$%d.", TransportMoney[playerid]);
SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
GivePlayerMoneyEx(playerid, TransportMoney[playerid]);
ConsumingMoney[playerid] = 1,TransportValue[playerid] = 0,TransportMoney[playerid] = 0;
return 1;
}
else
{
if(IsATaxiCar(GetPlayerVehicleID(playerid)))
{
if(GetPlayerState(playerid) == 2)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /corrida [price]");
return 1;
}
moneys = strval(tmp);
if(moneys < 1 || moneys > 1000)
{
SendClientMessage(playerid, COLOR_GREY, " Minimo R$ 1, Maximo R$ 1000 !");
return 1;
}
TaxiDrivers += 1,TransportDuty[playerid] = 1,TransportValue[playerid] = moneys;
GetPlayerName(playerid,sendername,sizeof(sendername));
format(string, sizeof(string), "Taxista %s estб no trabalho,/servico taxi Corrida: R$%d.", sendername, TransportValue[playerid]);
OOCNews(TEAM_GROVE_COLOR,string);
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo esta dirigindo !");
return 1;
}
}
if(IsAOniCar(GetPlayerVehicleID(playerid)))
{
if(GetPlayerState(playerid) == 2)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USE: /corrida [price]");
return 1;
}
moneys = strval(tmp);
if(moneys < 1 || moneys > 999)
{
SendClientMessage(playerid, COLOR_GREY, " Minimo R$ 1, Maximo R$ 999 !"); return 1;
}
BusDrivers += 1,TransportDuty[playerid] = 2,TransportValue[playerid]= moneys;
GetPlayerName(playerid,sendername,sizeof(sendername));
format(string, sizeof(string), "Motorista De Onibus %s estб no trabalho, Corrida: R$%d.", sendername, TransportValue[playerid]);
OOCNews(TEAM_GROVE_COLOR,string);
}
else
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo esta dirigindo !");
return 1;
}
}
}
}
}
return 1;
}
if (strcmp(cmd, "/servico taxi", true)==0){
new tmp[256];
new string[256];
strmid(tmp, cmdtext, 5, strlen(cmdtext));
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_RED, "/servico taxi [lugar]");
return 1;
}
else
{
SendClientMessage(playerid, COLOR_YELLOW, "Os taxistas foram informados");
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[playerid][pMembro] == 10||PlayerInfo[playerid][pLider] == 10|| PlayerInfo[playerid][pEmprego] == 14)
{
format(string, sizeof(string), "%s pediu um taxi. Local: %s" , TransportMoney[playerid]);
SendClientMessage(i, COLOR_YELLOW, string);
}
}
}
return 1;
}