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