[Ajuda] Comando Limpar ficha
#1

O Meu servidor e de truck , e eu quero colocar um comando que limpa a ficha , mais agnt tem uma profissгo de policia , se nao tiver policiais online limpar a ficha por 1000 reais cada estrela se tiver , mandar um aviso falando que tem policiais online

aqui tambem tem a profissгo de mecanico e tem o comando /assistencia , que chama o mecanico , e se nao tiver online , ele repara automatico o veiculo e abastece por um tanto de dinheiro , vou deixar aqui o comando para poder ajudar !


Comando : Assistencia
pawn Код:
new Tempos[MAX_PLAYERS];
COMMAND:assistencia(playerid, params[])
{
// Setup local variables
new bool:AssistOnline = false, Msg[128], Name[24];
if(Tempos[playerid] > gettime())
return SendClientMessage(playerid, -1, "{FFFF00}[ERRO] {009D4F}Aguarde 2 min para chama-lo novamente!");
Tempos[playerid] = gettime() + 60*2;
// Send the command to all admins so they can see it
SendAdminText(playerid, "/assistencia", params);

// Check if the player has logged in
if (APlayerData[playerid][LoggedIn] == true)
{
// Get the player's name
GetPlayerName(playerid, Name, sizeof(Name));
// Preset the message that needs to be sent to assistance players
format(Msg, 128, "{00FF00}O jogador {FFFF00}%s{00FF00} precisa de assistкncia mecвnica.", Name);

// Check if there is at least one assistance player online
for (new i; i < MAX_PLAYERS; i++)
{
// Check if this player is connected
if (IsPlayerConnected(i))
{
// Check if this player is assistance class
if (APlayerData[i][PlayerClass] == ClassAssistance)
{
// Set the flag to indicate that at least one assistance player is online
AssistOnline = true;
// Send the assistance player a message to inform him who needs assistance
SendClientMessage(i, 0xFFFFFFFF, Msg);
}
}
}

// Check if there is at least one assistance player online
if (AssistOnline == true)
{
// Set yourself as "AssistanceNeeded"
APlayerData[playerid][AssistanceNeeded] = true;
// Let the player know he called for assistance
SendClientMessage(playerid, 0xFFFFFFFF, "{00FF00}Vocк ja pediu ajuda.");
}
else // No assistance is online
{
// Check if the player is the driver of a vehicle
if (GetPlayerVehicleSeat(playerid) == 0)
{
// Fully repair the vehicle (damage value and bodywork)
RepairVehicle(GetPlayerVehicleID(playerid));
// Also re-fuel the vehicle
AVehicleData[GetPlayerVehicleID(playerid)][Fuel] = MaxFuel;
// Let the player pay for the repairs and refuel (default $700)
RewardPlayer(playerid, -700, 0);
// Let the player know he spent $2000 for auto-repair because there were no assistance players online
SendClientMessage(playerid, 0xFFFFFFFF, "{FF0000}Seu veнculo foi reparado e abastecido por R$700.");
SendClientMessage(playerid, 0xFFFFFFFF, "{FF0000}Nгo hа mecвnico online.");
}
}
}
else
return 0;

// Let the server know that this was a valid command
return 1;
}

Classe da Policia
pawn Код:
ClassPolice
Ali no comando do mecanico ele manda um aviso pros mecanicos online e deixa a pessoa com objetivo , ja na policia ele ja deixa no objetivo automatico entгo nao precisa desse negocio de mandar um aviso para policia sу apenas limpar a ficha se nao tiver um policial online !

Espero que me ajudem ... Obrigado
Reply
#2

REMOVED
Reply
#3

Eu quero um comando /190 que limpa a ficha , mais limpar sу se nгo tiver policias online , e se tiver policias online , mandar um aviso falando que tem policia online !
Reply
#4

Up ?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)