Interesting!
I think i can see why this might happen, adding some error checking to stop this now.

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
-
Same on my server, saw it one time
-
-
-
lots of heli debris ^^
-
LOL) ok
-
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.
-
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\"");
-
Does that only work with rustIO installed on the server or can I do a key press without it?
Thanks btw. -
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"); }
-
-
I don't find the + - buttons yet.
Dropbox - 20160508031511_1.jpg
Dropbox - 20160508031517_1.jpg
Can you make the friends icons smaller? -
Zoom is only available on the minimap in complex mode
-
nice job v1.1.15 If possible, add transparency in the config
-
Russian problem with nicknames, they are not displayed
-
"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 -
-
Or from ingame:
/map mode <true|false> - Enables or Disables complex mode (default is disabled) -
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 -
add support for Russian names
Code:(c >= 'А' && c <= 'Я') || (c >= 'а' && c <= 'я')