32 lines
991 B
JavaScript
32 lines
991 B
JavaScript
// ===========================================================================
|
|
// Vortrex's Roleplay Resource
|
|
// https://github.com/VortrexFTW/v-roleplay
|
|
// ===========================================================================
|
|
// FILE: taxi.js
|
|
// DESC: Provides taxi driver job functions and usage
|
|
// TYPE: Job (JavaScript)
|
|
// ===========================================================================
|
|
|
|
function taxiSetFareCommand(command, params, client) {
|
|
if (!canPlayerUseJobs(client)) {
|
|
messagePlayerError(client, "You are not allowed to use jobs.");
|
|
return false;
|
|
}
|
|
|
|
if (!canPlayerUseTaxiJob(client)) {
|
|
messagePlayerError(client, "You are not allowed to use the taxi job.");
|
|
return false;
|
|
}
|
|
|
|
if (!isPlayerWorking(client)) {
|
|
messagePlayerError(client, "You are not working! Use /startwork first.");
|
|
return false;
|
|
}
|
|
|
|
if (!doesPlayerHaveJobType(client, V_JOB_TAXI)) {
|
|
messagePlayerError(client, "You don't have a taxi job.");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} |