Jump to content

Search the Community

Showing results for tags 'developer'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Categories

  • Plugins
  • Carbon
  • Harmony
  • Maps
  • Monuments
  • Prefabs
  • Bases
  • Tools
  • Discord Bots
  • Customizations
  • Extensions

Forums

  • CF Hub
    • Announcements
  • Member Hub
    • General
    • Show Off
    • Requests
  • Member Resources
    • For Hire
  • Community Hub
    • Feedback
  • Support Hub
    • Support
    • Site Support

Product Groups

  • Creator Services
  • Host Services

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 14 results

  1. Version 1.2.0

    7 downloads

    A webhosting always required. This website is for developers to manage their licenses It doesn't automatically license your plugins, but it talks about how to license it in the documentation. The system works with the IP address of the server where the plugin will run, not with the license key. Documentation content Already Licensed A Sample Plugin Information on how to license a plugin Information about api returns
    $20.00
  2. Version 1.0.3

    78 downloads

    Introduction CustomRewards is a turnkey solution to reward player engagement. This plugin allows you to give a player any type of reward based on conditions you'll be able to configure. Whether you're a server admin aiming to boost player engagement or a developer creating complex reward systems, CustomRewards is your go-to solution. Main Features: Diversity of Rewards: Set up a huge variety of rewards for your players, ranging from items to special permissions, including server command execution. Reward Templates: Create different reward models for various events or scenarios, providing maximum flexibility to meet your server's needs. Award Conditions: Ensure only eligible players receive certain rewards by setting conditions based on groups, permissions, and more. Integration with Other Plugins: CustomRewards isn't just a standalone, it can also be seamlessly integrated with other externals plugins such as VoteSystem or PlaytimeTracker : Vote System : By using Custom Reward with VoteSystem, your players will be able to obtain rewards by voting. PlayTime Reward (free) : By using CustomRewards with PlaytimeTracker, your players will be able to obtain rewards based on their playtime. Interface Customization Provide your players with an appealing visual experience with a fully customizable user interface, custom reward images, and colorful themes. Expandability for Developers For those looking to delve deeper, CustomRewards offers a robust API, allowing you to integrate your own point system or even other plugins ! Plugin's Future: We always listen to the community! If you have a specific plugin you'd like to see integrated with CustomRewards, please let us know. Our goal is to make CustomRewards as versatile and useful as possible for all users. Support : I am very often available and will respond as quickly as possible to all your questions, here or on my Discord: https://discord.gg/JJnxFgP27G. Full Documentation : Feel free to check out the complete documentation here. Commands (chat) : - /CustomRewards_Give <type> <player name or id> <quantity> : available only for administrators or with permission CustomRewards.Admin - The commands to show the UI need to be implemented in the configuration. Permissions : - CustomRewards.Admin : enable admin commands if not administrator - CustomRewards.<Type>.Use : Permission linked to the type (rewards template), users without the permission will not be able to use the command to display the UI. Therefore, it's important to add the permission to your groups once the template is created! How To use API : private void Give_API(string rewardType, ulong playerId, int quantity) // Add quantity points for player (for referenced rewardType) private int Get_API(string rewardType, ulong playerId) // Get quantity points for player (for referenced rewardType) CustomRewards Configuration Tutorial Step 1: Initial Setup : - Ensure the CustomRewards_rewards folder is present in Oxide/Data. If not, the plugin will attempt to create it automatically, but it's good to check. - Ensure - For each reward type you want to configure, create a .json file in the CustomRewards_rewards folder. For instance, for a reward type called "VIP", you might have a VIP.json file. Step 2: Basic Configuration In your .json file: - "Enabled": Set this value to true to activate this reward type. - "Commands for show UI": List of commands that will display the user interface for this reward type. For example: ["rewards_vip", "vip_rewards"]. Step 3: User Interface Configuration Under "UI Settings": - Configure the appearance and layout of the user interface with properties like "Max Reward By Page", "Window Rect", etc. - Set the theme colors under "Theme" using properties like "Colors". Each color is defined by an RGBA value. - Configure rarity colors under "Rarity Colors". - To modify the window title or description (above the rewards), go through the lang files (Oxide/Lang/<lang>/CustomRewards_<type>). Example Lang file : { "Messages": { "Title": "Rewards", "Description": "Every time you earn points, you can claim your rewards here." } } Step 4: Reward Configuration Under "Rewards Settings": - "Rewards List": Here, you'll define each individual reward for this type. - "Rarity (Common - Rare - Epic - Legendary)": Set the reward's rarity. - "Quantity": If the reward is an item, set the quantity here. - "Item Shortname (optional)": If the reward is an item, set its short name here. - "Custom image URL (optional)": For a custom image for the reward. - "Server command (optional)": Commands to execute when this reward is claimed. - "Grant Permissions ": Permissions to grant when this reward is claimed. - "Grant Groups": Groups to grant when this reward is claimed. - "Nedded Permissions": Permissions needed to claim this reward. - "Nedded Group ": Groups needed to claim this reward. Step 5: Plugin Extensions Under PluginExtensions, you can configure integration with other plugins: - For PlaytimeTracker, use properties under "PlayTimeTracker" like "Count Afk Time?", "Added points", and "Add point every (in seconds)". Step 6: Save and Reload After completing your configuration, save the .json file and reload the plugin on your server. Here's a sample configuration file to help you get started:
    $5.99
  3. Version 1.0.4

    104 downloads

    Features Be a template for your own plugin Store the last connection time of a player Store the number of death of a player Permissions myplugin.admin - Allows player to use the /myplugin command Commands myplugin help - Displays some help Configuration Default configuration: { "Default Chat Avatar (steamId)": 0 } Localization Default English localization: { "PluginMissing": "The plugin \"SomePlugin\" was not found. Check on UMod: https://umod.org/plugins/someplugin", "NoPermission": "You are not allowed to run this command!", "HelpMessage": "Some useful help!", "UnknownCommand": "Unknown command!" } Hooks DateTime? GetLastConnectionTime(ulong userId) // Return the last connection time (DateTime?) of a player or null if the player is not found int? GetNumberOfDeath(ulong userId) // Return the number (int?) of death of a player or null if the player is not found Credits YourName - Author
    Free
  4. Version 1.2.4

    159 downloads

    Purpose Create some custom plugins for the Rust game using Carbon Oxide Test the plugins with a local server Update the dependencies with a simple script Getting started Download this repository somewhere on your computer (windows only) Run the Workplace_Installer.bat script Open the Plugins.sln solution with Visual Studio or Rider You're done! Update the Frameworks & Server To update the Workplace run Workplace_Updater.bat script This script will call all the update scripts under Scripts\ This action is only requiered on force wipe. However you can run the script by hand if you want to update a specific part of the workplace. It might be usefull when a new version of Carbon or Oxide is released. Please note that the Rust Server will update itself automatically when you start it with the rustserver\Server_Launcher script. Manager the Server To start the server run rustserver\Server_Launcher.bat script Feel free to edit the script to change the server settings. To install Carbon/Oxide on the server run rustserver\Framework_Installer.bat script You will be asked to choose the framework you want to install. To copy all the plugins to the server run rustserver\Plugin_Loader.bat script You will be asked to choose on witch framework you want to load the plugins. Note that Oxide plugins will be loaded enven if you choose Carbon* Extensions There are currently 3 Oxide extensions automatically downloaded: Chaos Discord RustEdit You can simply add more by adding them to the modding\ folder or by editing the Scripts\Extensions.txt file. Carbon extensions are also supported. Documentations I recommend you to read the documentations of the frameworks or browse some existing plugins to understand how they work: Carbon Oxide Rust Server Tools & Versions - .NET Framework 4.8.1 - (C#10) Credits - Author: HandyS11
    Free
  5. Version 2.0.4

    164 downloads

    Rust Snippets Rust Snippets are designed to enhance the coding experience for Rust plugin developers. It streamlines the programming workflow, eliminating the need to repeatedly visit forums or perform repetitive tasks. Rust Snippets integrates all Rust plugin hooks directly into Visual Studio, allowing developers to code on the fly with embedded comments for each hook. Expect regular updates. Shortcuts Setup: Initializes a default Oxide plugin setup. Harmony: Sets up a default Harmony Oxide plugin. Config: Sets up a basic config file. Language: Sets up a basic language file. ChatCommand: Creates a basic ChatCommand. ConsoleCommand: Creates a basic ConsoleCommand. Permissions: Configures basic permissions. Hook Snippets The remaining shortcuts are related to various Rust plugin hooks. Typing "On" or "Can" triggers a dropdown with all available hooks. These hooks currently include all hooks from https://umod.org/documentation/games/rust Tutorial Included in the download is a comprehensive readme that guides users through the setup process. The instructions are easy to follow, ensuring a smooth onboarding experience. Feel free to reach out with any questions. Credits Special thanks to @Billy Joe for the initial idea. Although he didn't continue his work, his contributions inspired me to carry on. Be sure to check out his previous work, he produced some excellent content. I hope I could make your life easier with these snippets
    Free
  6. flutes

    Vote System

    Version 1.0.5

    17 downloads

    What is Vote System ? Vote System is a sophisticated plugin designed to track player votes in real-time on various ranking sites. It offers two main functionalities: Integration with other plugins: Vote System can be paired with other plugins to enhance its features. See the list of compatible plugins. API for Developers: With a robust API, developers can create plugins that directly interact with the voting system, allowing for advanced customization. Supported Plugins Vote System is compatible with the following plugins: CustomReward: Allows players to receive rewards through a user interface after voting. Economics: Converts votes into virtual currency for players. Documentation : More informations on documentation Supported Ranking Sites Vote System currently supports the following ranking sites: rust-servers.net top-games.net top-serveurs.net
    $4.99
  7. Version 1.0.0

    357 downloads

    This plugin is only intended for developers to make the development of plugins easier! This plugin lets you specify a directory and will automatically copy all .cs files to your plugin folder when they are changed.
    Free
  8. Hello! I'm David and I've been running rust services for over a year now! I've built up a client base and decided to reopen up my services discord with my close friend Shady4u! You might know him from sone of his products like simple splitter or simple symmetry. With summer coming up we're running full steam ahead with the possibility of you getting anything you need made within one community. Join the services discord: here
  9. I am new to c# but i can do some basic stuff for your server and also i have been working on server configurations, optimization and map making since 2 years . If you are looking for an admin to manage stuff or you need a server to be configured or optimized you can shoot me a pm. If you want to see my previous work you can dm me on discord : Qube#9311 Thank you
  10. Hello All, My name is Billy Joe and have been programming in Rust for the past 2 and a half years, doing commission work for a whole ton of clients/community's. I have found some free time to get some more work done, and am looking for serious clients. If you are interested all details needed are down below, please only add me if you are serious and ready to pay. Details: Payment Type: Paypal Pay Amount: $35/hr - I will give you a time estimate based on what you are wanting. Discord: Billy Joe#2213 Hope to hear from you, Billy Joe
  11. Castom St

    Plugin develop

    I want to get a list of all the mines placed by the player, entity.GetComponentsInChildren<Landmine>() returns me only landmine[0] And I still don't know how to track the pressing of the RF transmitter and the player who pressed it(
  12. Version 1.0.3

    364 downloads

    Ruster.NET Addons is a service that allows plugin developers to create and server owners to upgrade and change Ruster.NET in almost any way possible. This plugin provides API and hook support that gives you access to interactions users make in Ruster.NET, from creating your own DM bots with custom commands, to use all the modular panels Ruster.NET provides for your own purposes. Read documentation here or get Addons on this tag. Features API Access Open / close users' browser Open modals with custom (required) fields Open color picker Get users or a specific user Check if users are admins, moderators, verified, developer or a bot Create your own users with custom profile pictures and user configurations (for bots) Get friends of users Get friend requests Get posts for a specific feed or user Get marketplace or advert posts Get blocked users Send or handle friend requests for an user Pin/unpin posts Like/dislike posts Get feed information, such as feed title, type, owner Create posts and publish them on feeds or users' profiles Get or create conversations between users Send messages to players Mark message status (read/unread), and much more. Hook Access On coupons added or removed On language change On custom nickname update On wallet withdraw On restock On hashtag filter On post created/removed On post viewed/closed On post with audio played/stopped On DM sent, and much more. Type Examples Feed Post Marketplace Listing Story Coupon Transaction User Gif Flipbook Modal Field Licensed Item Gift Card User Configuration User Notification Conversation Direct Message Emoji Friend Request Hashtag Business Card Bot Bot Command Check the documentation for more in-depth examples and what you can do so far in Ruster.NET and Ruster.NET Addons.
    Free
  13. Hello there, I am looking to hire a Developer, to fully develop a Rust Game Server. At this current moment in-time, little Development progress has been made in any regard, due to lack of experience of myself. I have all the necessary components required to be able to make this Server, including a Dedicated Server. In addition to this, there is a spacious budget for Paid Plugins, etc. A little bit about me, and my Community; I come from the background of FiveM, to which I currently own a Community of nearly 10,000 strong, with an active player base, of nearly 64 players, every night! I am potentially looking to expand our horizons into the Rust Community too. However, I lack the experience in Rust to be able to confidently Develop a Game Server. We have all the assets required to be able to confidently run the Server, in exception to Development experience. To conclude, I am looking for an experience Developer, preferably with experience of building Rust Game Server's to be able to complete this project for me, and oversee its operation for a short-period of time. If you feel like this opportunity would suit you, please contact me, via this thread, and we can further talks to Discord. Cheers.
  14. Hi, I have a few projects I would like to have worked on and can use some help. Looking for a Rust developer who has a portfolio of work, communicates well, is consistent and is excited about developing Rust plugins! Please reach out to me on Discord at Bumfuzzler#8705 or reply here or course. Thanks!
1.1m

Downloads

Total number of downloads.

5.6k

Customers

Total customers served.

80.7k

Files Sold

Total number of files sold.

1.6m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.