Jump to content
Message added by ZEODE,

Thank you for looking at my plugin, if you have any questions or if you need help, please open a Support Thread or reach out to me on my Discord at https://discord.gg/KXJBwZ6uj9

6 Screenshots

  • 191.9k
  • 9.3k
  • 354.1 kB

About Heli Signals

 

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.

If you are setting up Multi heli signals, set the global and player limit in the config accordingly to accommodate higher numbers of helicopters per player.

There is also an option to have a BotReSpawn profile spawn at the crash site, just set the BotReSpawn profile name in the config.

IMPORTANT:

Each heli profile or wave profile in the config MUST have its own unique name and skin ID, otherwise you will have issues.

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

 

easyHeli.png.0b477b1e73caed8ea6d9b77c024889bc.pngmedHeli.png.7a5c819ae391a4689ef5ad5f468b4773.pnghardHeli.png.d6e09ef0a63b1b41ff21903c8999a0d5.pngeliteHeli.png.e9c472c85b57e4201f723b125487ad6e.pngexpertHeli.png.52d87415cdd43bde76b9d16629592fb4.pngnightmareHeli2.png.6faa7ba8fb308c1444a6face2031d9d5.png

 

Multi Heli (Easy) :  3083234542

Multi Heli (Medium) :  3083234833

Multi Heli (Hard) :  3083234755

Multi Heli (Elite) :  3083234647

Multi Heli (Expert) :  3099124338

Multi Heli (Nightmare) :  3099124426

 

easyMultiHeli.png.8f2b8fac2748fe361400406cfe03c1a3.pngmedMultiHeli.png.a2d4e46b2fe2009ee1424c9fb8f31c9e.pnghardMultiHeli.png.008d0186c62cff015f6ae71468ce5ff4.pngeliteMultiHeli.png.38202a39e51249ad0f7427c823327934.pngexpertMultiHeli.png.1d9c83a26e3a434583a3e756fc808b8f.pngnightmareMultiHeli.png.25d1eb74c807ecd595a1d38df8e8c66c.png

 

Heli Wave Signal :  3099117224

Heli Wave Signal (Normal):  3104667036

Heli Wave Signal (Hard):  3104666951

heliSignalWave.png.393975c81c250fb442d4bc369b37d70f.pngwaveNormal.png.9123e116bc4aa89790b7421182646f1c.pngwaveHard.png.3ca4d1ef2726df22b8e297301711c50b.png

 

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:

1200551836_helicap.PNG.a29ab0dbdd9eb7c94dffa69497a9fb97.PNG

 

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):

Quote
{
	"ShortName": "scrap",
	"Chance (0 - 100)": 50.0,
	"Min amount": 50,
	"Max Amount": 100,
	"SkinID": 0,
	"Custom Display Name (leave blank unless creating custom items)": "",
  	"Blueprint Chance Instead of Item, 0 = disabled. (0 - 100)": 0.0
},
{
	"ShortName": "blood",
	"Chance (0 - 100)": 50.0,
	"Min amount": 50,
	"Max Amount": 100,
	"SkinID": 2834920066,
	"Custom Display Name (leave blank unless creating custom items)": "Epic Scrap",
  	"Blueprint Chance Instead of Item, 0 = disabled. (0 - 100)": 0.0
}

 

 

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.Call("IsHeliSignalObject", skinID) != null)
	return true; // IsHeliSignalObject

Or reference my plugin and call like this:

[PluginReference]
Plugin HeliSignals;

if (HeliSignals.Call("IsHeliSignalObject", skinID) != null)
	return true; // IsHeliSignalObject

To return some basic info about a Heli Signal object:

object GetHeliSignalData(Patrolhelicopter heli)

Returns object as Dictionary<string, object>.

Returned data is:

["heliProfile"]         // string - Actual heli profile (from config)
["heliName"]         // string - Heli display name
["skinId"]               // ulong
["heliId"]                // ulong (Net.ID.Value)
["owner"]              // BasePlayer
["lastAttacker"]     // BasePlayer
["calledPosition"]  // Vector3
["callingTeam"]     // List

Example usage:

var hdata = HeliSignals.Call("GetHeliSignalData", heli) as Dictionary<string, object>;

string _heliProfile = hdata["heliProfile"];
string _heliName = hdata["heliName"];
string _heliSkin = hdata["skinId"];
string _owner = hdata["owner"];

etc

 

  • Like 4
  • Love 2

User Feedback

2.2m

Downloads

Total number of downloads.

10.3k

Customers

Total customers served.

149.7k

Files Sold

Total number of files sold.

3.2m

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.