Jump to content

Search the Community

Showing results for tags 'npcevent'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Categories

  • Plugins
  • Carbon
  • Harmony
  • Maps
  • Monuments
  • Prefabs
  • Bases
  • Tools
  • Discord Bots
  • Customizations
  • Extensions

Forums

  • CF Hub
    • Announcements
  • Member Hub
    • General
    • Show Off
    • Requests
  • Member Resources
    • For Hire
  • Community Hub
    • Feedback
  • Support Hub
    • Support
    • Site Support

Product Groups

  • Creator Services
  • Host Services

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 3 results

  1. ZEODE

    Heli Signals

    Version 1.2.13

    3,807 downloads

    Heli Signals allows players with permission to call an Attack Helicopter to their location with a custom Supply Signal, where it will engage players and patrol, allowing players to fight it to win the valuable Heli crates. The plugin comes with 8 default heli profiles, Easy, Medium, Hard and Elite, with a duplicate profile of each set up for calling multiple helis at once for each tier. In addition there is also 2 Wave Heli profiles, which will call in a wave of different helis one after the other. Each default profile has it's own custom supply signal skin (below). Server owners can add as many profiles as they like in the config by copying and pasting an existing profile within the config and editing to suit. This may require the server owner to create their own custom skin for the inventory item. Please note: Wave Heli Signals currently only support single heli profiles. Multi heli profiles will only spawn one heli per wave. (This will be updated in future to call multi helis per wave). If you are setting up Multi heli signals, set the global and player limit in the config accordingly. There is also an option to have a BotReSpawn profile spawn at the crash site, just set the BRS profile name in the config. NOTE ABOUT SHOPS: The profile name in the config should match the Custom Supply Signal name which the shop gives the player. The Helicopter Name is separate and can be set independently from the Signal item. Also, when giving players items from shop plugins, if available, I always recommend adding the item to the shop using custom name, skinID etc, rather than the console command, but either will work. Plugin default Supply Signal Skin ID's to add items to various shops, loot plugins, kits etc are: Heli Signal (Easy) : 2920175997 Heli Signal (Medium) : 2920176079 Heli Signal (Hard) : 2920176050 Heli Signal (Elite) : 2920176024 Heli Signal (Expert) : 3099117081 Heli Signal (Nightmare) : 3099117372 Multi Heli (Easy) : 3083234542 Multi Heli (Medium) : 3083234833 Multi Heli (Hard) : 3083234755 Multi Heli (Elite) : 3083234647 Multi Heli (Expert) : 3099124338 Multi Heli (Nightmare) : 3099124426 Heli Wave Signal : 3099117224 Heli Wave Signal (Normal): 3104667036 Heli Wave Signal (Hard): 3104666951 Default Permissions: helisignals.admin (to use give|hsclearcd command) helisignals.buy (to use /hsbuy command) helisignals.bypasscooldown helisignals.easy helisignals.medium helisignals.hard helisignals.elite helisignals.easy_multi helisignals.medium_multi helisignals.hard_multi helisignals.elite_multi helisignals.wave_normal helisignals.wave_hard Please note: Permissions above are with default config, permission for each Heli profile can be customised in the config. Commands (Prefix with / to use in game): hsgive <Profile ShortName> <Steam64ID> <Amount> hsbuy list hsbuy <Profile Shortname> hsreport (Get details of all active helis) hsretire (Retire all a player or their teams called Helis, no refunds) hsclearcd (clear all cooldowns) hsclearcd <SteamID|Name> (clear cooldown for player) (Buy and Retire command customisable in config) Please note correct usage for Supply Signal name and Helicopter display name. These values CAN be different if you wish: Loot Options: Use the loot item example entries in the default config to create custom loot tables for crates. How to Add Loot Table Items (Example): Default Config: For Other Developers: The following hook is available to use in your plugins to check custom Supply Signals or Patrol Helicopters to avoid conflict with your plugins: object IsHeliSignalObject(ulong skinID) This will return true if the item is a Bradley Drop item/entity, or null if not. Call it directly without referencing the plugin: if (Interface.CallHook("IsHeliSignalObject", skinID) != null) return true; // IsHeliSignalObject Or reference my plugin and call like this: [PluginReference] Plugin HeliSignals; if (HeliSignals.CallHook("IsHeliSignalObject", skinID) != null) return true; // IsHeliSignalObject
    $13.99
  2. ZEODE

    Bradley Drops

    Version 1.1.11

    1,319 downloads

    About Bradley Drops. Bradley Drops allows players with permission to call a Bradley APC to their location with a custom Supply Signal, where it will patrol a set distance for a set time, allowing players to fight it to win the valuable Bradley crates. A cargo plane will deliver and drop the APC via parachutes. The APC can be configured in different ways and there are many config options to suit all servers. The plugin comes with 4 default settings for Bradley Drops, Easy, Medium, Hard and Elite, each with their own custom supply signal skin. But server owners can add as many options as they like in the config by copying and pasting an existing profile within the config. This would however require the server owner to create their own custom skin for the inventory item. (I will add more custom skins in the near future for this.) BotReSpawn compatibility, with the option to specify a BRS spawn profile at the Bradley kill site. NOTE ABOUT SHOPS: The profile name in the config should match the Custom Supply Signal name which the shop gives the player. The Bradley Name is now separate and can be set independently. Plugin default Supply Signal Skin ID's to add items to various shops, loot plugins, kits etc are: Bradley Drop (Easy) : 2905355269 Bradley Drop (Medium) : 2905355312 Bradley Drop (Hard) : 2905355296 Bradley Drop (Elite) : 2911864795 Default Permissions: bradleydrops.admin (to use give|hsclearcd command) bradleydrops.buy (to use /bdbuy command) bradleydrops.bypasscooldown bradleydrops.easy bradleydrops.medium bradleydrops.hard bradleydrops.elite Commands (Prefix with / to use in game): bdgive <Profile ShortName> <Steam64ID> <Amount> bdbuy <Profile Shortname> bdbuy list bdreport (list all active Bradleys and their state) bddespawn (Despawn all Bradleys called by a player or their team, no refunds) bdclearcd (clear all cooldowns) bdclearcd <SteamID|Name> (clear cooldown for player) (Buy, Report and Despawn command can be customised in the config) Please note correct use in config file for supply signal name and Bradley APC display name. These values CAN be different if you wish: Custom Loot: Check out the example loot items in the default config below to see how to add custom loot items to crates. How to Add Custom Loot Table Item: Config: For Other Developers: The following hook is available to use in your plugins to check custom Supply Signals, Cargo Planes and Supply Drops to avoid conflict with your plugins: object IsBradleyDrop(ulong skinID) This will return true if the item is a Bradley Drop item/entity, or null if not. Call it directly without referencing the plugin: if (Interface.CallHook("IsBradleyDrop", skinID) != null) return true; // IsBradleyDrop Or reference my plugin and call like this: [PluginReference] Plugin BradleyDrops; if (BradleyDrops.CallHook("IsBradleyDrop", skinID) != null) return true; // IsBradleyDrop
    $13.99
  3. Mercury

    IQBoss

    Version 1.1.11

    117 downloads

    IQBoss - a new event for your RUST server with the participation of NPCs Large and advanced configuration with which you can edit the event According to the standard, the configuration is already configured and has the theme "Ash Boss", you can fully change it at your discretion and set your own style of the event, it all depends on your imagination and desire, the configuration of the plugin will allow you to experiment perfectly and try different styles Required Plugins : (Free) - NpcSpawn The helicopter and chinook from the video do not belong to the plugin - this is a game moment that got into the frame Opportunities : Full customization of all NPCs Creating templates of NPC assistants for the boss Setting up an NPC Boss Behavior management via configuration settings Set the attack pattern for the boss via the configuration Mapping to G-Map Custom installation of the event location (you can specify any number on different monuments, or on one) (See the section "Commands") Setting up crates after killing the boss : - Number of crates - Items in crates - Prefab crates - Number of items in the drawer - Position in the crate Full NPC Setup : - NPC Clothing - NPC Weapons - Installing skins on NPCs - Installing mods for NPC weapons - HP NPC - Patrol/Visibility/Chase/NPC Attack Range - NPC Damage Multiplier - NPC Speed - NPC Scatter Multiplier Setting up the stages of the event (full-fledged adjustment of behaviors) : - Range of action - Action distance - Type of action - Recharge before action Chat Commands : /bosstp - teleport to the position where the event started (for administrators only) /boss.spawn - set the spawn point of the event on the monument (further configured in the configuration) Console Commands (F1) : show.monuments - view a list of all monuments { "Basic plugin setting": { "Cooldown before the event starts": 7200, "Radius of appearance of the boss's assistants": 4.0, "Setting up a marker on the G map": { "Use a marker (true-yes/false-no)": true, "Marker color": "#e08447", "Marker transparency": 0.4, "The radius of the marker on the map": 0.35 }, "Setting up prizes after killing the boss": { "Crate Prefab": "assets/prefabs/npc/m2bradley/bradley_crate.prefab", "The number of boxes that will spawn after killing the boss": { "Min": 3, "Max": 6 }, "Amount of items in crate": { "Min": 6, "Max": 6 }, "Possible items in the boxes": [ { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "metal.facemask", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 20.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "roadsign.kilt", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 30.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "roadsign.jacket", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 10.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "metal.plate.torso", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 20.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "attire.egg.suit", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 10.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "hazmatsuit", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 30.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "autoturret", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 40.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "ammo.rocket.basic", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 7 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 35.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "ammo.rifle.explosive", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 60, "Max": 128 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 40.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "ammo.rifle", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 30, "Max": 128 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 60.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "ammo.grenadelauncher.he", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 3, "Max": 8 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "supply.signal", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 2 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "explosive.timed", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 3 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 20.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "explosive.satchel", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 3, "Max": 8 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 60.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "icepick.salvaged", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "chainsaw", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "pickaxe", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 70.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "rifle.ak", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "grenade.f1", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 3, "Max": 6 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "lmg.m249", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 10.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "rocket.launcher", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 15.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "rifle.semiauto", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 60.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "shotgun.spas12", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 40.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "smg.thompson", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "hmlmg", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "rifle.lr300", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "rifle.l96", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 10.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "furnace.large", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "pookie.bear", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "scarecrow", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "secretlabchair", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1, "Max": 1 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "wood", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 5000, "Max": 25000 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 1000.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "sulfur.ore", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 3000, "Max": 8000 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 60.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "sulfur", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 1500, "Max": 5000 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 40.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "stones", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 3000, "Max": 10000 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "gunpowder", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 500, "Max": 1500 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 20.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "diesel_barrel", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 50, "Max": 150 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "crude.oil", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 200, "Max": 600 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 30.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "scrap", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 300, "Max": 600 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 20.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "metal.refined", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 300, "Max": 1000 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 10.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "explosives", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 10, "Max": 30 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 50.0 }, { "Container Type : Main/Wear/Belt": "Main", "Position (defalut = -1)": 0, "ShortName": "lowgradefuel", "SkinID": 0, "Amount": 0, "Amount [Crate]": { "Min": 300, "Max": 600 }, "Display Name (empty - default) [Crate]": "", "Chance [Crate]": 80.0 } ] } }, "Settings NPC-Boss": { "Wear NPC": [ { "Shortname": "burlap.gloves", "SkinID": 920525330, "Mods weapon": null }, { "Shortname": "hoodie", "SkinID": 920518283, "Mods weapon": null }, { "Shortname": "pants", "SkinID": 920509574, "Mods weapon": null }, { "Shortname": "mask.balaclava", "SkinID": 920544450, "Mods weapon": null }, { "Shortname": "burlap.shoes", "SkinID": 922596367, "Mods weapon": null } ], "NPC Weapon Variation": [ { "Shortname": "flamethrower", "SkinID": 0, "Mods weapon": [] } ], "Is this a stationary NPC?": false, "Health bots": 20000.0, "The radius of visibility of bots": 70.0, "The display name of the bots": "PEPEL-BOSS", "Roam Range": 30.0, "Chase Range": 150.0, "Attack Range Multiplier": 2.0, "Sense Range": 50.0, "Scale damage": 1.0, "Aim Cone Scale": 0.1, "Detect the target only in the NPC's viewing vision cone?": false, "Vision Cone": 135.0, "Speed": 7.0 }, "Settings NPC-Helpers": [ { "Wear NPC": [ { "Shortname": "hat.tigermask", "SkinID": 0, "Mods weapon": null }, { "Shortname": "halloween.mummysuit", "SkinID": 0, "Mods weapon": null } ], "NPC Weapon Variation": [ { "Shortname": "machete", "SkinID": 0, "Mods weapon": [] }, { "Shortname": "grenade.f1", "SkinID": 0, "Mods weapon": [] } ], "Is this a stationary NPC?": false, "Health bots": 500.0, "The radius of visibility of bots": 150.0, "The display name of the bots": "PEPEL-HELPER-LOW", "Roam Range": 30.0, "Chase Range": 150.0, "Attack Range Multiplier": 2.0, "Sense Range": 50.0, "Scale damage": 1.0, "Aim Cone Scale": 0.1, "Detect the target only in the NPC's viewing vision cone?": false, "Vision Cone": 135.0, "Speed": 7.0 }, { "Wear NPC": [ { "Shortname": "hat.ratmask", "SkinID": 0, "Mods weapon": null }, { "Shortname": "halloween.mummysuit", "SkinID": 0, "Mods weapon": null } ], "NPC Weapon Variation": [ { "Shortname": "knife.butcher", "SkinID": 0, "Mods weapon": [] }, { "Shortname": "grenade.f1", "SkinID": 0, "Mods weapon": [] } ], "Is this a stationary NPC?": false, "Health bots": 1000.0, "The radius of visibility of bots": 150.0, "The display name of the bots": "PEPEL-HELPER", "Roam Range": 30.0, "Chase Range": 150.0, "Attack Range Multiplier": 2.0, "Sense Range": 50.0, "Scale damage": 1.0, "Aim Cone Scale": 0.1, "Detect the target only in the NPC's viewing vision cone?": false, "Vision Cone": 135.0, "Speed": 7.0 } ], "Configuring plugins for Collaboration": { "Setting up collaboration with IQChat": { "IQChat :Custom prefix in the chat": "[<color=#ff4948>IQBoss</color>]", "IQChat : Custom avatar in the chat(If required)": "76561199206561118", "IQChat : Use UI notifications": false } }, "Spawn event's settings": { "water_treatment_plant_1": { "Spawn-Vector": [ { "x": 37.5561256, "y": 0.258712769, "z": -66.1273041 } ], "Title-Russia": "очистительных сооружениях", "Title-English": "sewage treatment plants" }, "airfield_1": { "Spawn-Vector": [ { "x": -67.03422, "y": 0.299999237, "z": 30.40028 }, { "x": 88.449295, "y": 0.008094788, "z": -70.0424042 }, { "x": -71.84445, "y": 0.0912208557, "z": -76.3673859 } ], "Title-Russia": "аэропорту", "Title-English": "airfield" }, "satellite_dish": { "Spawn-Vector": [ { "x": -2.37831259, "y": 6.05032349, "z": -2.687747 } ], "Title-Russia": "спутниковых антенах", "Title-English": "satellite dish" }, "junkyard_1": { "Spawn-Vector": [ { "x": 28.11554, "y": 0.203389168, "z": 4.140703 } ], "Title-Russia": "свалке", "Title-English": "junkyard" }, "trainyard_1": { "Spawn-Vector": [ { "x": 85.1474457, "y": 0.09121704, "z": 38.1284256 } ], "Title-Russia": "железнодорожном депо", "Title-English": "trainyard" } }, "Setting Stages": { "0": { "Number of assistants at this stage": 5, "The minimum number of boss HP to activate this stage": 19500.0, "Actions": [ { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 10.0, "Event action distance": 5.5, "Cooldown before the event action": 0.2 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 20.0, "Event action distance": 13.5, "Cooldown before the event action": 15.0 } ] }, "1": { "Number of assistants at this stage": 5, "The minimum number of boss HP to activate this stage": 18000.0, "Actions": [ { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 6.0, "Event action distance": 8.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 18.0, "Event action distance": 14.0, "Cooldown before the event action": 18.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 18.0, "Event action distance": 14.0, "Cooldown before the event action": 6.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 16.0, "Event action distance": 14.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 16.0, "Event action distance": 14.0, "Cooldown before the event action": 10.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 8.0, "Event action distance": 8.0, "Cooldown before the event action": 8.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 10.0, "Event action distance": 14.0, "Cooldown before the event action": 10.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 25.0, "Event action distance": 18.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 25.0, "Event action distance": 18.0, "Cooldown before the event action": 5.0 } ] }, "2": { "Number of assistants at this stage": 8, "The minimum number of boss HP to activate this stage": 12000.0, "Actions": [ { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 1.0, "Event action distance": 8.0, "Cooldown before the event action": 6.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 25.0, "Event action distance": 25.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 7.0, "Event action distance": 13.0, "Cooldown before the event action": 2.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 25.0, "Event action distance": 18.0, "Cooldown before the event action": 6.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 8.0, "Event action distance": 8.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 16.0, "Event action distance": 12.0, "Cooldown before the event action": 10.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 8.0, "Event action distance": 8.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 12.0, "Event action distance": 10.0, "Cooldown before the event action": 4.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 20.0, "Event action distance": 12.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 20.0, "Event action distance": 16.0, "Cooldown before the event action": 5.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 16.0, "Event action distance": 14.0, "Cooldown before the event action": 1.0 } ] }, "3": { "Number of assistants at this stage": 10, "The minimum number of boss HP to activate this stage": 8000.0, "Actions": [ { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 1.0, "Event action distance": 8.0, "Cooldown before the event action": 6.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 25.0, "Event action distance": 25.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 7.0, "Event action distance": 13.0, "Cooldown before the event action": 10.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 25.0, "Event action distance": 18.0, "Cooldown before the event action": 6.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 8.0, "Event action distance": 8.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 16.0, "Event action distance": 12.0, "Cooldown before the event action": 10.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 8.0, "Event action distance": 8.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "FireRain", "Event range": 12.0, "Event action distance": 10.0, "Cooldown before the event action": 4.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 20.0, "Event action distance": 12.0, "Cooldown before the event action": 1.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "RocketsRain", "Event range": 20.0, "Event action distance": 16.0, "Cooldown before the event action": 5.0 }, { "Specify one of the event types : Smoke/RocketsRain/FireRain": "Smoke", "Event range": 16.0, "Event action distance": 14.0, "Cooldown before the event action": 1.0 } ] } } }
    $35.00
1.1m

Downloads

Total number of downloads.

5.6k

Customers

Total customers served.

80.8k

Files Sold

Total number of files sold.

1.6m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.