LustyMap

In-game map and minimap GUI

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

5/5, 163 likes
  1. Interesting!

    I think i can see why this might happen, adding some error checking to stop this now.
     
  2. Same on my server, saw it one time
     
  3. Kayzor updated LustyMap with a new update entry:

    1.1.15

     
  4. WTF after event
    111.jpg
     
  5. lots of heli debris ^^
     
  6. LOL) ok
     
  7. Hey. How are you able to have a button command to open the map? I'm currently looking at making plugins for oxide but cant seem to find the documentation for button press.
     
  8. Basically you just bind a key to a console command and have that trigger w/e you want to do.

    In my case, when a player joins the server i send the command to bind m to "LustyMap map"
    Code:
    player.Command("bind m \"LustyMap map\"");
    Then when they press M its the same as pressing F1 and typing "LustyMap map" into the console.
     
  9. Does that only work with rustIO installed on the server or can I do a key press without it?
    Thanks btw.
     
  10. The keybinds are just part of the of the rust client.

    You just need to create your own console command in your plugin, see: Oxide API for Rust
    Then bind a key to it for the anyone that joins your server
    Code:
            [HookMethod("OnPlayerInit")]
            void OnPlayerInit(BasePlayer player)
            {
                player.Command("bind g global.test");
            }
     
  11. Thanks for the help! :)
     
  12. Zoom is only available on the minimap in complex mode
     
  13. nice job v1.1.15 If possible, add transparency in the config
     
  14. Russian problem with nicknames, they are not displayed
     
  15. I have complex map. How do you understand?

    "LustyMap": {
    "Compass": true,
    "Debug": false,
    "FriendsAPIFriends": true,
    "Left": true,
    "MapButton": true,
    "MapMode": false,
    "MapURL": "",
    "Minimap": true,
    "RustIOFriends": true,
    "ShowCaves": true,
    "ShowDebris": false,
    "ShowHeli": true,
    "ShowMonuments": true,
    "ShowPlane": true,
    "ShowSupply": false,
    "StartOpen": true,
    "UseURL": false
     
  16. "MapMode": true,
     
  17. Or from ingame:
    /map mode <true|false> - Enables or Disables complex mode (default is disabled)
     
  18. I have this error:

    [Oxide] 17:18 [Info] Loaded plugin LustyMap v1.1.15 by Kayzor
    128.72.70.126:57010/76561198227902240/Kurkuma_30 kicked: RPC Error: sv_requestfile
    InvalidOperationException: data is NULL
    95.27.186.68:59010/76561198002270633/Rusya kicked: RPC Error: sv_requestfile
    InvalidOperationException: data is NULL
    [Oxide] 17:18 [Info] Unloaded plugin LustyMap v1.1.15 by Kayzor
     
  19. add support for Russian names
    Code:
    (c >= 'А' && c <= 'Я') || (c >= 'а' && c <= 'я')