Платное Bradley Drops 1.1.11

Commands (Prefix with / to use in game):

bdgive <Profile ShortName> <Steam64ID> <Amount>

bdbuy <Profile Shortname>

Please note correct use in config file for supply signal name and Bradley APC display name. These values CAN be different if you wish:

Capture.PNG.963346f71cf52e018094e44a1225af81.PNG

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