diff --git a/scripts/client/animation.js b/scripts/client/animation.js index 0864cfbd..274db151 100644 --- a/scripts/client/animation.js +++ b/scripts/client/animation.js @@ -8,6 +8,13 @@ // TYPE: Client (JavaScript) // =========================================================================== +function initAnimationScript() { + logToConsole(LOG_DEBUG, "[AGRP.Animation]: Initializing animation script ..."); + logToConsole(LOG_DEBUG, "[AGRP.Animation]: Animation script initialized!"); +} + +// =========================================================================== + function makePedPlayAnimation(pedId, animationSlot, positionOffset) { let ped = getElementFromId(pedId); diff --git a/scripts/client/business.js b/scripts/client/business.js index ac882f34..fec93641 100644 --- a/scripts/client/business.js +++ b/scripts/client/business.js @@ -27,6 +27,13 @@ class BusinessData { // =========================================================================== +function initBusinessScript() { + logToConsole(LOG_DEBUG, "[AGRP.Business]: Initializing business script ..."); + logToConsole(LOG_INFO, "[AGRP.Business]: Business script initialized!"); +} + +// =========================================================================== + function receiveBusinessFromServer(businessId, name, entrancePosition, blipModel, pickupModel, buyPrice, rentPrice, hasInterior, hasItems) { logToConsole(LOG_DEBUG, `[AGRP.Business] Received business ${businessId} (${name}) from server`);