Add tazer item script

This commit is contained in:
Vortrex
2021-01-15 03:44:40 -06:00
parent c0a15ca72c
commit 28d4b34826

View File

@@ -0,0 +1,36 @@
// ===========================================================================
// Asshat-Gaming Roleplay
// https://github.com/VortrexFTW/gtac_asshat_rp
// Copyright (c) 2021 Asshat-Gaming (https://asshatgaming.com)
// ---------------------------------------------------------------------------
// FILE: tazer.js
// DESC: Provides features and usage for the tazer item type
// TYPE: Server (JavaScript)
// ===========================================================================
// ---------------------------------------------------------------------------
function isPlayerTazed(client) {
return (getPlayerData(client).pedState == AG_PEDSTATE_TAZED);
}
// ---------------------------------------------------------------------------
function tazePlayer(client) {
getPlayerData(client).pedState = AG_PEDSTATE_TAZED;
setPlayerControlState(client, false);
setTimeout(function() {
unTazePlayer(client);
doActionToNearbyPlayers(client, `The tazer effect wears off`);
}, getGlobalConfig().tazerEffectDuration);
}
// ---------------------------------------------------------------------------
function unTazePlayer(client) {
getPlayerData(client).pedState = AG_PEDSTATE_READY;
setPlayerControlState(client, true);
}
// ---------------------------------------------------------------------------