LustyMap

In-game map and minimap GUI

Total Downloads: 48,884 - First Release: Sep 8, 2015 - Last Update: Dec 29, 2017

5/5, 163 likes
  1. You can add Supply Drop?
     
  2. Просто удали кусок кода.
    Simple remove couple strings of code
     
  3. Как показать на карте AirDrop?
    As show on the map AirDrop?
     
  4. To show any other thing on map, like air supply or friends, clan mates, etc. - many parts of code should be added. I can "help" with it, pm ^_^. I ve added all that things.
    Чтобы добавить какие либо еще детали на карту - надо прилично покодить, не в пару строчек. Я могу "помочь" с этим за небольшой гонорар. Все добавлено и опробовано.
     
  5. how can I make minimap little further down, because I Infopanel top
     
  6. Fix please.
     

    Attached Files:

  7. you have updated oxide?
     
  8. Of course..
     
  9. i have not problems. rustymap is running of my server
     
  10. i see my self on lusty map but i my players are not able to see on it.
     
  11. Looks like i find some bug.

    This plugin dont work on Linux after update.

    Code:
    (19:56:39) | Error downloading: plane320 - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\plane320.png(19:56:39) | Error downloading: plane330 - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\plane330.png(19:56:39) | Error downloading: plane340 - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\plane340.png(19:56:39) | Error downloading: plane350 - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\plane350.png(19:56:39) | Error downloading: plane360 - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\plane360.png(19:56:39) | Error downloading: lighthouse - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\lighthouse.png(19:56:39) | Error downloading: radtown - Couldn't open file /home/steam/steamcmd/steamapps/common/rust_dedicated/server/mosha_one/oxide/data\LustyMap\\icons\radtown.png
    
    to fix this need to change \\ to // :D

    Code:
    private void cacheImages()
            {
                // Disable map updates while downloading images...
                run = false;            // Initialize image cache
                LustyObject = new GameObject();
                ImageAssets = LustyObject.AddComponent<ImageCache>();
                ImageAssets.imageFiles.Clear();            // Icons
                if (debug) { Puts("Downloading images..."); }
                string dataDirectory = "file://" + Interface.Oxide.DataDirectory + "//LustyMap/";            List<string> files = new List<string>()
                {
                    "self",
                    "heli",
                    "plane"
                };            foreach (string file in files)
                {
                    string path = dataDirectory + "//icons//";
                    string ext = ".png";                for (int i = 0; i <= 360; i = i + 10)
                    {
                        ImageAssets.getImage(file + i.ToString(), path + file + i.ToString() + ext);
                    }
                }            ImageAssets.getImage("lighthouse", dataDirectory + "//icons//lighthouse.png");
                ImageAssets.getImage("radtown", dataDirectory + "//icons//radtown.png");
                ImageAssets.getImage("cave", dataDirectory  + "//icons//cave.png");
                ImageAssets.getImage("warehouse", dataDirectory + "//icons//warehouse.png");
                ImageAssets.getImage("dish", dataDirectory + "//icons//dish.png");
                ImageAssets.getImage("spheretank", dataDirectory + "//icons//spheretank.png");
                ImageAssets.getImage("special", dataDirectory + "//icons//special.png");            // Map
                ImageAssets.getImage("mapimage", dataDirectory + "map.jpg");
    
     
  12. Hi, I am having an issue where my map is black. Any help is much appreciated thank you!
     

    Attached Files:

  13. You should use
    Path.DirectorySeparatorChar

    for linux and windows
     
  14. Thanks for the tip, will do!
     
  15. Also, after regenerate map, on my map all monuments are gone =( how can i fix it?
     
  16. hey guys
    ive followed the info and my lusty map in game is just black with prefabs showing in white
    any ideas how to fix it
     
  17. I am also having this issue would love some help thank you
     
  18. i got it working eventually i have to ftp it to server was giving an error but after a few attempts it worked
     
  19. read the description of the plugin and will not have problems.
     
  20. the minimap in the left upper corner is not working. i cant see nothing, its just transparent. when i press M, my map is seeable. advise?