Jump to content

MACHIN3

Creator
  • Posts

    602
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by MACHIN3

  1. MACHIN3

    XPerience

    I have moved them to a more reliable location. I host them myself, that is what the local option is for. Once you setup your server to local host (which I have it auto detect but the instructions are there for verification and troubleshooting) your server will download them automatically from my host to yours and then your server will have them. Then you will no longer have to rely on a remote server period for the images as they will be on your server. The fastest rendering you could have. You don't have to change the URLs or anything as it will do that automatically as well.
  2. MACHIN3

    XPerience

    This plugin is not an out-of-box ready to go plugin. This is why is has an ingame admin panel with live adjustments and is highly recommended to setup on a test server first to get the correct environment you want. This plugin changes way too much in the game to have a basic ready to go default. If changing the images from remote to local within the ingame UI is too much then this is definitely not the plugin for you as the settings pages and amount of adjustments are far more detailed
  3. MACHIN3

    XPerience

    You can do this in the UI within the game. Best option is to use the local hosting which allows your server itself to host the images.
  4. MACHIN3

    XPerience

    All image URLs can be changed: https://www.rustlevels.com/XPerience/index.php/setup/image-urls
  5. There are setup instruction on the plugin page showing how to setup the markers step by step for each area type. It cannot be done in the config directly as it uses your player position to set the markers.
  6. MACHIN3

    Weapon Mechanics

    I need a little more info than this and our discord is a much better place for reporting issue or help. The plugin loads with the latest Rust update without issues so please report what issues your having.
  7. MACHIN3

    Random NPC Names

    examples? I have this running on several servers and so far it renames every NPC without issues.
  8. updated, should be fixed now
  9. MACHIN3

    Weapon Mechanics

    The CloseRangeAddition, MediumRangeAddition, and LongRangeAddition values modify the weapon's effectiveness at different ranges when used by NPCs. CloseRangeAddition – This value could enhance the weapon's performance at short distances, possibly increasing accuracy, damage, or attack frequency when an NPC is within close range. MediumRangeAddition – This might adjust the weapon’s effectiveness at mid-range, potentially affecting accuracy, damage scaling, or AI behavior when engaging targets at moderate distances. LongRangeAddition – This could influence how well the weapon performs at long distances, possibly reducing accuracy drop-off, increasing damage scaling, or modifying AI targeting behavior. These values likely work in conjunction with other AI-related parameters (aiAimCone, aiAimSwayOffset, CanUseAtMediumRange, CanUseAtLongRange) to determine how NPCs wield the weapon across different engagement distances. If you’re testing or modifying these values, tweaking them could help balance NPC combat behavior in your game.
  10. MACHIN3

    Weapon Mechanics

    This works for projectile weapons only not throwables.
  11. MACHIN3

    Entity Lists

    Version 1.0.004

    27 downloads

    Entity Lists shows you all living entities on your server in an organized user friendly UI. Can view the name, health, location, ID, and alive time for each entity and includes group permissions where you can create different groups that can only see certain lists. Includes admin controls to teleport to a specific player/entity, teleport them to your location, and/or kill that entity. Features: UI with lists of all Entities Details of each entity (name, ID, location, alive time, health) Group Permissions Options to show/hide each list per group Option to allow locations per group Admins: Adjust all settings in game using UI Teleport to entity Teleport entity to you Kill entity Config: { "Settings": { "openui": "elist", "requireperms": true, "refreshtime": 10 }, "Permission Groups": { "ELGroup1": { "groupname": "EL Group 1", "players": true, "sleepers": true, "npcs": false, "animals": false, "frankenstein": false, "locations": false }, "ELGroup2": { "groupname": "EL Group 2", "players": true, "sleepers": true, "npcs": true, "animals": true, "frankenstein": false, "locations": false } } } Language: { "EL_admin_001": "Admin Settings", "EL_menu_001": "Menu", "EL_menu_002": "Main", "EL_menu_003": "Admin", "EL_menu_004": "Save", "EL_001": "Entity Lists", "EL_002": "Players", "EL_003": "Sleepers", "EL_004": "Scientists", "EL_005": "Tunnel Dwellers", "EL_006": "Underwater Dwellers", "EL_007": "Animals", "EL_008": "Scarecrows", "EL_009": "Zombies", "EL_010": "Name", "EL_011": "Health", "EL_012": "ID", "EL_013": "Location", "EL_014": "Time Alive", "EL_015": "{0} mins", "EL_016": "{0} hours", "EL_020": "You do not have permission to view Entity Lists", "EL_021": "Information Panel", "EL_022": "(Click any Entity to view details here)", "bear": "Bears", "polarbear": "Polar Bears", "wolf": "Wolves", "stag": "Stags", "boar": "Boars", "ridablehorse2": "Horses", "shark": "Sharks", "chicken": "Chickens", "close": "Close", "pageprev": "Prev", "pagenext": "Next", "EL_admin_002": "Open UI Chat Command", "EL_admin_003": "Require Permissions", "EL_admin_004": "Turning this off will allow everyone to view all UI pages and entities.", "EL_admin_005": "Permission Groups", "EL_admin_006": "Create Group", "EL_admin_007": "Require Permissions Disabled", "EL_group_001": "Permission Groups", "EL_group_002": "Editing Group: {0}", "EL_group_003": "Group Name", "EL_group_004": "View Options", "EL_017": "NPCs", "EL_admin_008": "Refresh Timer", "EL_admin_009": "⇧ Teleport ⇧", "EL_admin_010": "⇨ Teleport ⇨", "EL_admin_011": "Kill" }
    $9.99
  12. Version 1.0.003

    10 downloads

    Random NPC Names is a simple plugin that will automatically rename all NPCs on your server with a more realistic human like name. As NPCs spawn they will be given a First name with a single letter for their last name ( John D. / Mary K. / Stan R.). You can edit/remove the prefix that appears in front of every NPC type in the config. Chat Command: commands shown use the default chat command prefix (/rnpcs), if you change the prefix command you must use that prefix with the values below /rnpcs <value> - change <value> to one of the options below on - enables the Random NPC Names off - disables the Random NPC Names and returns NPC names to default debugon - turns Debug mode on debugoff - turns Debug mode off renameall - manually renames all active NPCs save - saves settings to config file prefix <type> "<name>" - changes the prefix of NPC type to the name you enter Available Types: scientist tunneldweller underwaterdweller scarecrow Chat Command Example: /rnpcs prefix scientist "Crazy Scientist" API for Developers: // Returns the NPC name as string (looks for BaseCombatEntity) GetNameBCE(BaseCombatEntity entity) // Returns the NPC name as string (looks for BaseEntity) GetNameBE(BaseEntity entity) Config: Example only { "Settings": { "enable": true, "debug": true, "chatcommand": "rnpcs" }, "NPC Prefix": { "scientist": "[Scientist]", "tunneldweller": "[Dweller]", "underwaterdweller": "[Dweller]", "scarecrow": "[Scarecrow]", "zombie": "[Zombie]", "frankenstein": "[Frankenstein]" } } Language: { "RNPC_001": "Random NPC Names: {0}", "RNPC_002": "Random NPC Names Debug Mode: {0}", "RNPC_003": "{0} NPCs have been renamed", "RNPC_004": "missing command value (on, off, debugon, debugoff, renameall)" }
    $2.99
  13. Version 1.0.004

    3 downloads

    IMPORTANT: This is an addon to Combat Classes plugin! You MUST have Combat Classes installed on your server to use this addon! This addon allows classes to be assigned to NPCs where they can have all the same abilities as players do. Features: NPCs use the same level system and abilities as players (Combat Classes) Assign specific or random classes to each NPC type Assign specific or random level to each NPC type Add/Disable NPCs you want to use classes Show when NPCs level up in chat About Combat Classes Want to setup a battlefield server? Combat Classes allows your players to select from several types of combat styles that enhance their abilities. Each class has it's own XP and level statistics where players level up and increase each class ability. Each class comes with a preferred primary and secondary weapon which has increase damage while using non class weapons will have reduced damage along with other abilities listed below. Each player has a user friendly UI where they can view and change their class and view other player's progress. Discord Join our community discord for fast support and future updates. We have several channels where you can get help, offer suggestions, see what's coming in future updates, and more. Our discord is the fastest way to get the help and info you need! http://discord.rustlevels.com/ NOTE: Depending on the number of NPCs spawned this can impact performance with the added abilities to each NPC. We are always working on ways to improve performance and welcome all suggestions in our discord!
    $9.99
  14. What do you have the height option set for? The height option will add x value to the height detected by the terrain. You can adjust this to fine tune where the players are teleported to height - requires value (#) - adds x value to the height when teleporting
  15. MACHIN3

    Weapon Mechanics

    This adjusts the base weapons on a global scale for everyone. There might be a future update that supports permission based weapons but not at this time
  16. Version 1.0.013

    14 downloads

    Want to setup a battlefield server? Combat Classes allows your players to select from several types of combat styles that enhance their abilities. Each class has it's own XP and level statistics where players level up and increase each class ability. Each class comes with a preferred primary and secondary weapon which has increase damage while using non class weapons will have reduced damage along with other abilities listed below. Each player has a user friendly UI where they can view and change their class and view other player's progress. Discord Join our community discord for fast support and future updates. We have several channels where you can get help, offer suggestions, see what's coming in future updates, and more. Our discord is the fastest way to get the help and info you need! http://discord.rustlevels.com/ Main Adjustments: Set XP requirement per level Set max level Set difficulty increase by % per level Set XP gain from player kills Enable XP loss on death and amount Premade list of NPCs with XP earned per kill Add NPCs to the list with XP amount earned for kills Damage indicator to show how much damage each shot does Combat Classes: All Classes: + Primary weapon damage + Secondary weapon damage - All other weapon damage Assault: + Medium range addition + Adrenaline Shot (+ dmg resistance for x sec) + Smoke Grenades Medic: + Revive HP + Recover HP + Heal bonus + Passive Healing Heavy: + Explosive Resistance + Bullet Resistance + F1 Grenades Demolition: - Explosive Dud Chance + Explosive Damage + Explosive Radius + Rocket Damage + Rocket Speed Sniper + Long Range Addition + Area Scanner Assassin: + Close Range Addition + Melee damage increase + Melee Poison Damage + Target Detection Combat Gear Sets: Create gear set for each class Option to give gear set to player on respawns Combat Gear Box: Gives players the gear from the matching gear set Set box name and skin place boxes anywhere on the map Boxes cannot be damaged or picked up by non admins Set timer for how often players can access the Gear Box Team / Clan Support: Enable Team/Clan support Allow or Prevent team/clan kills Shows icon for team/clan members on Ui Theme Selections: 5 different colors for each player to choose from Multiple size options for player who need bigger UIs In Game Admin Panel: Adjust all classes and settings in game using the UI Adjust each aspect of every class to best fit your server including primary/secondary weapons and damage amounts Add entities to the XP list and adjust how much XP each award Level calculator so you can determine how difficult you want the progress to be Developers: Example Hooks // Called after a player has changed classes void CombatClassChanged(ulong userId, string newClass) { // Handle the class change Puts($"Player {userId} changed to class {newClass}"); } // Called after a player has leveled up a class void CombatClassLevelUp(ulong userId, string currentClass, int newLevel) { // Handle the class level up Puts($"Player {userId} has reached level {newLevel} in class {currentClass}"); } // Called after a player has lost a class level void CombatClassLevelDown(ulong userId, string currentClass, int newLevel) { // Handle the class level down Puts($"Player {userId} has lost a level in class {currentClass}. Now level {newLevel}"); } // Called after a player has increased rank in a class void CombatClassRankUp(ulong userId, string currentClass, int newRank) { // Handle the class rank up Puts($"Player {userId} has reached rank {newRank} in class {currentClass}"); } API // Returns the current level of the player current class (looks for player steadID as ulong) GetCombatPlayerLevel(ulong player)
    $24.99
  17. MACHIN3

    Clean Server

    Try to enabled debug and see what it shows in console when using the commands. If any error appear please report them in our discord so they can be addressed.
  18. MACHIN3

    Clean Server

    This is correct, it takes all loot and items and drops them on death when droploot and corpse remove is enabled.
  19. MACHIN3

    XPerience

    Rocket effects are part of the XPerience Addon not the base XPerience plugin and only effects Rockets fired from a rocket launcher
  20. MACHIN3

    Global Event

    Your welcome to ask the community in our discord as well for possible examples.
  21. MACHIN3

    XPerience

    The admin option to show welcome panel on join is for new players. Each player can turn this on or off in their profile settings. Previous players who were on the server before the Addon was added will have this option off already and must turn it on.
  22. updated to work with the Dragon Rocket Launcher
  23. MACHIN3

    Global Event

    Version 1.0.416

    44 downloads

    Global Event plugins allows you to create custom goals for players to achieve like gathering resources or items and kill specific entities. Each player that contributes towards the event will receive the rewards you list. Comes with HUD UI and interactive UI (preview below) for players to view details about the event, goals, rewards, and more.. This plugin was originally created for the XPerience Addon. I have chosen to recreate it as a separate plugin for others to use that don't want the XPerience Addon plugin and remake it to be more customizable. NOTE: If using the XPerience Addon you must disable the Global Event Feature! Discord Join our community discord for fast support and future updates. We have several channels where you can get help, offer suggestions, see what's coming in future updates, and more. Our discord is the fastest way to get the help and info you need! http://discord.rustlevels.com/ Features: Create kill goals for different entities Create item goals for items or resources (wood, ores, scrap, weapons, and more..) Give Rewards to players that participate (XP, Items, Economics, Server Rewards, Per player Commands, Global Commands) Awards all players that contribute to the event Global Event deposit box for event contributions (obtained by chat command or give button in UI panel) Option to restrict getting a global event box by permission Option to set max number of global event boxes allowed per player Option to show chat notifications when contributions are made and goals are reached Global Event HUD option to show all goals Option to auto reset global event after x amount of hours from completion Option to destroy all global event boxes on event completion Global Event UI with details and statistics for the event and per player Chat Commands: (can change in settings) /ge - opens Global Event Ui /gestart - starts/resets the global event /gebox - give a global event box to the player
    $19.99
  24. MACHIN3

    Clean Server

    Version 1.0.0

    32 downloads

    Clean Server allows you to keep your server clean from random buildings, deployed items, and corpses to help prevent unwanted items from taking up space and server resources. Set an automatic timer to clean the server every few mins or hours to keep your server running smooth. Manually scan the server by chat command at anytime to clean up unwanted items on the fly. [Features] * Automatically Clean server from corpse (animal, NPCs, players) * Set delay in corpse removal * Set corpse to drop loot on removal (NPCs / Players) * Automatically remove abandoned building blocks after x amount of time * Manually Remove abandoned building blocks * All settings adjustable by chat command * Option to list items to ignore from removal [Chat Commands] * /cleanserver - Runs a clean check and removes items * /clean <setting> <value> - changes the settings to the value you enter Settings: * Save - saves settings, no value needed * help - show all commands in chat - no value needed * tcrange - requires # value - sets the TC range for safe items * check - requires # value - sets the time in mins when items will be scanned and removed * timer - requires # value - sets the time for how long items can be placed before deleted on next scan * delay - requires # value - sets the delay time when corpse are removed * corpse - requires on/off value - turns on/off corpse removal * item - requires add/remove value and item ShortPrefab name - adds or removes item from the excluded list * animals - requires value on/off - turns on/off animal corpse removal * droploot - requires value on/off - turns on/off loot drop when corpse are removed * debug - requires value on/off - turns on/off debug mode for troubleshootin NOTES: If corpse removal is enabled and drop loot is on it will drop 2 bags. One with the inventory contents and one with all the equipped items (weapon and armor) No Corpse Preview: Config Example: { "Settings": { "checktimer": 10.0, "buildingtimer": 1, "tcrange": 20.0, "removecorpse": true, "droploot": true, "removeanimalcorpse": false, "removaldelay": 1.0, "debug": true, "excludeitems": ", lock.code" } } Language File Example: { "cs_001": "Missing settings and value -> /clean <setting> <value> \n Try the help command for list of all commands. /clean help", "cs_002": "Remove NPC/Player Corpse: {0}", "cs_003": "Remove Animal Corpse: {0}", "cs_004": "Commands: \n /cleanserver \n /cleanserver <#> \n /clean <setting> <value> \n Settings: \n corpse, animals, tcrange, timer, delay, droploot, debug, check, item \n Values: \n on, off, #, add, remove, list \n /clean save \n /clean help", "cs_005": "TC Range: {0}", "cs_006": "Remove Timer: {0} mins", "cs_007": "Clean Server Setting Saved", "cs_008": "Corpse Removal Delay: {0} (min value = 1)", "cs_009": "Corpse Drop Loot: {0}", "cs_010": "Debug Mode: {0}", "cs_011": "Check Timer: {0} mins", "cs_012": "Item {0} has been added to the excluded list", "cs_013": "Item {0} has been removed from the excluded list", "cs_014": "Excluded Item List: \n {0}" }
    $5.99
  25. MACHIN3

    Weapon Mechanics

    it supposts XPerience as that is one of mine. No plans at this time to add support for others. I would ask those developers to add support if needed
2.3m

Downloads

Total number of downloads.

10.6k

Customers

Total customers served.

153.2k

Files Sold

Total number of files sold.

3.3m

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.