πŸšΆβ€β™€οΈSpawn NPC Copy Sample Version

Config.lua to Spawn NPC Copy Sample Version

config.lua
Config = {}

Config.behavior = false -- (true/false) false = aggressive | true = No reaction (only working if the NPC have a weapon in hand)
Config.offset = 2.0 -- how many meters away from you should it spawn?

-- Weapon Options --

Config.weapon = "weapon_pistol50" -- Change the weapon ID https://wiki.rage.mp/index.php?title=Weapons

-- Animation Option --

Config.loop = true -- (true/false) false = No loop | true = loop
Config.animationnotify = true -- (true/false)

-- Commands --

Config.spawncommand = "spawncopy" -- Change to your own command

Config.deletecommand = "deletecopy" -- Change to your own command

Config.weaponcommand = "addweapon" -- Change to your own command

Config.removeweaponcommand = "removeweapon" -- Change to your own command

Config.animationcommand = "playanimation" -- Change to your own command

Config.stopanimation = "stopanimation" -- Change to your own command

-- Notify System --

Config.notify = true -- (true/false) | Spawn Copy Notify

Last updated