📦 Scripts
🎁 Akilla Donator
Configuration
NPC Settings

👤 NPC Settings

Configure the shop NPC appearance and location.

NPC Configuration

Config.NPC = {
    enabled = true,
    model = 's_m_m_movspace_01',
    coords = vector4(146.1, -1035.5, 29.3, 250.0),
    scenario = 'WORLD_HUMAN_CLIPBOARD',
    interactionDistance = 2.5,
}

Settings

OptionDescription
enabledEnable/disable the NPC
modelPed model name
coordsLocation (x, y, z, heading)
scenarioAnimation/scenario for the NPC
interactionDistanceHow close player must be to interact

Popular NPC Models

ModelDescription
s_m_m_movspace_01Space worker
a_m_m_business_01Businessman
s_f_y_shop_midShop clerk
cs_janetJanet
ig_mollyMolly

Blip Configuration

Config.Blip = {
    enabled = true,
    sprite = 617,
    color = 49,
    scale = 0.8,
    label = 'Donator Store',
}

Interaction Options

Using Target System

Config.Interaction = {
    system = 'auto', -- 'auto', 'ox_target', 'qb-target', 'textui'
    label = 'Open Donator Store',
    icon = 'fas fa-gift',
}

Using TextUI

Config.Interaction = {
    system = 'textui',
    key = 'E',
    label = '[E] Open Store',
}