-
Posts
50 -
Joined
-
Last visited
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Everything posted by myst1c
-
You can add services for withdrawing money for Russian developers)
-
- 16 comments
-
- 1
-
-
- 16 comments
-
- 1
-
-
- 16 comments
-
- 1
-
-
Hello, I'm glad you liked the plugin! I've been thinking for a long time about making a dark theme and a button in the menu to switch themes. As for people seeing all the statistics of the player, I will also implement it somehow. And I don't know about PVE servers, I've never encountered them, I'll definitely find out what and how, and implement functions for PVE servers. Thank you for your feedback!
- 16 comments
-
- 1
-
-
Changed Status from Pending to Work in Progress Changed Fixed In to 3.4.5
-
Hello, I will try to do it soon. You can explain in more detail about the flexibility of the interface what exactly needs to be done. And in order for avatars to be displayed, you need to configure the ImageLibrary plugin as I wrote below: { "Avatars - Store player avatars": false, // Here you need to specify true "Steam API key (get one here https://steamcommunity.com/dev/apikey)": "", // Enter your steam api key here "URL to web folder containing all item icons": "https://www.rustedit.io/images/imagelibrary/", "Progress - Show download progress in console": true, "Progress - Time between update notifications": 20, "User Images - Manually define images to be loaded": {}, "Version": { "Major": 2, "Minor": 0, "Patch": 62 } }
-
- 16 comments
-
- 16 comments
-
- 2
-
-
Version 0.2.01
184 downloads
MyStatistics – an advanced and modern statistics system for players, offering detailed tracking, leaderboards and wipe-based rewards. Functions: 1. Advanced Player Statistics Tracking Player kills (PvP) Deaths (players / suicide) K/D ratio calculation Shots fired Accuracy tracking Playtime tracking Custom stat categories Automatic real-time stat updates Per-player detailed statistics view Track everything that matters and give players a reason to compete. 2. Leaderboards Top players by any statistic Dynamic category-based ranking Automatic top calculation Configurable reward places (Top 1 / Top 3 / Top 5 etc.) Flexible category keys 3. Wipe Detection & Rewards Automatic wipe detection Auto-reset statistics (configurable) Reward distribution after wipe Top category awards Per-category reward settings 4. MySQL Integration Full MySQL support Safe data handling Optimized queries Persistent storage between restarts Designed for serious projects using external databases. 5. User Interface Clean CUI interface Category navigation Player statistics panel Leaderboards display Time formatting support Configurable stat formatting Player Commands: /stats - Opens the statistics menu Configuration: API:$21.00- 16 comments
- 2 reviews
-
- 4
-
-
Figured it out!
-
Hello, I recently started learning how to write plugins for Rust on Carbon and I had a problem. I made a plugin that makes a button that is visible to the player when logging on to the server. And I made sure that when you click on it, the menu opens. I did it all right, but there was a problem in the code. I wrote Cui and a separate hook that shows the menu opening button when loading the plugin and the command that opens the menu. But the plugin only works if the command is linked to Cui and if you make a separate command that opens only the menu without a button I hope I explained it clearly) Well, if anything, a plugin that works but with the wrong code in my opinion: 1.txt But it's not working, but it seems to me with the right code: 2.txt
-
I've fixed everything. private bool DOORLOOC(BasePlayer player, out Door door) { RaycastHit hit; door = null; if (UnityEngine.Physics.Raycast(player.eyes.HeadRay(), out hit, 3)) { door = hit.GetEntity() as Door; } return door != null; }
-
The plugin still throws an error He says that there is no Raycast Mistake: 1. Cannot implicitly convert type 'ulong' to 'uint'. An explicit conversion exists (are you missing a cast?) [CS0266] 4. 'PhysicsEffects' does not contain a definition for 'Raycast' [CS0117]nd 'uint' [CS0019] (MyPlugin 32 line 91) nce?) [CS0246]
-
Hello, I am learning to write plugins from the video "Mike Hawke" And I have a problem in the video "The Hooks" The console writes this error `1. Cannot implicitly convert type 'NetworkableId' to 'uint' [CS0029] 4. 'PhysicsEffects' does not contain a definition for Raycast' [CS0117]nd 'uint' [CS0019] (MyPlugin 32 line 96) nce?) [CS0246] (MyPlugin 32 line 96) Here is the code itself Текстовый документ.txt