Option to turn Chinook map icon offNo Thanks
Any chance you could put in an option to turn off the map icon? if there is already a way, mind telling/showing?
Can be removed, but will not be added in this plugin

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!
5c18c7da631b5.jpg Arainrr
Can be removed, but will not be added in this plugin

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;
        }

 

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