Any chance you could put in an option to turn off the map icon? if there is already a way, mind telling/showing?
Option to turn Chinook map icon offNo Thanks
Can be removed, but will not be added in this plugin
Merged post
Merged post
Remove it using the following code.
private void OnEntitySpawned(CH47Helicopter entity)
{
if (entity == null) return;
entity.mapMarkerInstance?.Kill();
entity.mapMarkerEntityPrefab.guid = string.Empty;
}
Greatly appreciate it!
Arainrr
Can be removed, but will not be added in this plugin
Merged postRemove it using the following code.
private void OnEntitySpawned(CH47Helicopter entity) { if (entity == null) return; entity.mapMarkerInstance?.Kill(); entity.mapMarkerEntityPrefab.guid = string.Empty; }
So I guess Im just stupid when it comes to this but where exactly do I put this code? I pasted into the config file for this plugin and no luck. Sorry for me being "code dumb" but can you explain where to put this?
Update: Think I figured it out, goes in the .cs
Locked automatically