Jump to content

Paws4Luv's Wishlist

  1. More information about "Item Perks"

    $24.99

    Item Perks

    Item Perks is a plugin that enhances everyday weapons, tools and armour with over 50 different types of perks.
    Items with perks can be obtained a variety of ways, including:
    Finding them randomly in crates or barrels during your morning scrap farm. Randomly crafting an enhanced version of your equipment while you roof camp noobs from your base. Recycling enhanced equipment and finding enhancement kits stuck in the teeth of the recycler. Using a console or chat command that can be ran through seedy plugin traders like GUIShop.  
    The plugin gives a large amount of control to server owners when it comes to implementation. You can:
    Enable/disable perks, or modify the minimum and maximum values that they roll when applied to gear. Blacklist or whitelist items to each perk, so they will be exclusively excluded or included (based on the list you choose). Adjust the weight of each perk, so it is more or less likely to be seen on gear., or adjust the chances amount of perks that items can potentially have. Fully adjust or disable the chance for item drops to be found, or enable the enhancement kit system so players can recycle gear. So much more (watch the configuration section of the video below to see the full extent).  
     
     

    There are over 50 perks included with the plugin. The following list will describe briefly what each perk does.
    Name: Prospector Description: This perk increases your mining yield when mining stone, metal and sulfur nodes. Name: Lumberjack Description: This perk increases your woodcutting yield when chopping living or dead trees. Name: Butcher Description: This perk increases the resources gained from skinning humans and animals. Name: Horticulture Description: This perk increases the amount of resources gained when harvesting grown plants. Name: Forager Description: This perk increases the amount of resources gained when picking up map generated collectibles. Name: Angler Description: This perk increases the amount of fish you receive upon a successful catch. Name: BeastBane Description: This perk increases the damage dealt to animals. Name: ScientistBane Description: This perk increases the damage dealt to scientists. Name: FlakJacket Description: This perk reduces the damage received from explosions. Name: Elemental Description: This perk reduces damage from received from cold and heat sources. Name: Scavenger Description: This perk provides you with a chance to find additional scrap from crates and barrels. Name: Manufacture Description: This perk increases the speed of your crafting. Name: Durable Description: This peark reduces the durability damage of all equipped items. Name: BeastWard Description: This perk reduces the damage received from animals. Name: ScientistWard Description: This perk reduces the damage received from scientists. Name: Builder Description: This perk provides you with a chance for your building upgrades to be free. Name: Thrifty Description: This perk provides you with a chance for your crafting components to be refunded upon a successful craft. Name: Fabricate Description: This perk provides you with a chance to duplicate an item upon a successful craft. Name: Pharmaceutical Description: This perk increases the amount of healing received from all sources. Name: MeleeWard Description: This perk reduces the damage received from melee weapons. Name: Academic Description: This perk provides you with a chance to receive a scrap refund when researching an item at the research bench. Name: FallDamage Description: This perk reduces the impact damage received from falling. Name: Lead Description: This perk reduces the damage from radiation. Name: Smasher Description: This perk will provide you with a chance to instantly destroy barrels with any amount of damage. Name: Environmentalist Description: This perk will increase the speed of recyclers that you activate. Name: Smelter Description: This perk will increase the smelting speed of furnaces you activate. Name: Paramedic Description: This perk provides players that you revive with additional health. Name: Prepper Description: This perk provides you with a chance to not consume food when eating. Name: Regeneration Description: This perk will passively regenerate you. Name: SharkWard Description: This perk will reduce the amount of damage received from sharks. Name: SharkBane Description: This perk will increase the amount of damage dealt to sharks. Name: Deforest Description: This perk provides you with a chance to cut down nearby trees when successfully cutting a tree down. Name: BlastMine Description: This perk provides you with a chance to mine out nearby nodes when successfully mining out a node. Name: Tanner Description: This perk provides you with a chance to skin nearby corpses when successfully skinning out a corpse. Name: Vampiric Description: This perk will heal you for a percentage of the damage dealt to certain enemies. Name: Reinforced Description: This perk will reduce the the amount of damage that your vehicles receive when mounted. Name: ComponentLuck Description: This perk will provide you with a chance to receive additional components when looting barrels and crates. Name: ElectronicsLuck Description: This perk will provide you with a chance to receive additional electronics when looting barrels and crates. Name: UncannyDodge Description: This perk provides you with a chance to dodge incoming damage, reducing it to 0. Name: LineStrength Description: This perk increases the tensile strength of your fishing line. Name: HealShare Description: This perk will share healing effects with nearby players. Name: Attractive Description: This perk will provide you with a chance to automatically pick up components when destroying barrels. Name: WoodcuttingLuck Description: This perk provides you with a chance to find a random item when you cut down a tree. Name: MiningLuck Description: This perk provides you with a chance to find a random item when you mine out a node. Name: SkinningLuck Description: This perk provides you with a chance to find a random item when you skin out a corpse. Name: FishingLuck Description: This perk provides you with a chance to find a random item when you catch a fish. Name: Sated Description: This perk will increase the amount of calories and hydration you receive from food and water sources. Name: IronStomach Description: This perk provides you with a chance to negate negative effects when consuming food. Name: TreePlanter Description: This perk will provide a chance for a tree to instantly regrow when cut down. Name: RockCycler Description: This perk will provide a chance for a node to instantly respawn when mined out. Name: BradleyDamage Description: This perk increases the damage dealt to Bradley Tanks. Name: HeliDamage Description: This perk increases the damage dealt to Patrol Helicopters. Name: Thorns Description: This perk reflects a % of the damage done back to the attacker  

    Command: ipgive
    Type: console/chat
    Parameters: <target ID/Name> <optional: shortname> <optional: perks>
    Description: Gives the target player an enhanced item. If shortname is specified, it will base the enhancement off of that item. If perks are specified, it will add only those perks to the item.
    Command: ipgivekit
    Type:  console/chat
    Parameters:  <target ID/Name> <perk>
    Description:  Gives an enhancement kit to the target.
     

    itemperks.use - Required to receive any benefit from enhanced items. itemperks.loot - Required to loot enhanced items from crates and barrels. itemperks.craft - Required for a chance to received enhanced versions of crafted gear. itemperks.admin - Required to use admin commands. itemperks.enhance - Required to add enhancement kits to items via the workbench. itemperks.recycle - Required to receive enhancement kits from recycling enhanced items.  

    IPAPI_CreateItem - creates and returns an enhanced item using the details fed into the method. If shortname is left blank, it will pick a random valid item. If api_perks is null it will pick random perk(s) and add them.
    Returns Item
    [HookMethod("IPAPI_CreateItem")] public object IPAPI_CreateItem(string shortname = null, ulong skin = 0, Dictionary<string, float> api_perks = null) { List<KeyValuePair<Perk, float>> perks = Pool.GetList<KeyValuePair<Perk, float>>(); foreach (var perk in api_perks) { Perk _perk; if (parsedEnums.TryGetValue(perk.Key, out _perk)) perks.Add(new KeyValuePair<Perk, float>(_perk, perk.Value)); } var result = CreateItem(shortname, skin, perks); Pool.FreeList(ref perks); // Returns an Item class return result; } Example usage:
    [ChatCommand("testipapi")] void TestIPAPI(BasePlayer player) { Dictionary<string, float> perks = new Dictionary<string, float>() { ["Prospector"] = 1f, ["Lumberjack"] = 1f, ["Butcher"] = 1f, ["Horticulture"] = 0.5f }; var item = (Item)ItemPerks.Call("IPAPI_CreateItem", "hammer.salvaged", (ulong)2830083288, perks); if (item == null) { Puts("Failed"); return; } item.name = "tool of the trade"; player.GiveItem(item); }  

  2. More information about "Paintball"

    $19.99

    Paintball

    Paintball is a plugin that spawns an arena in the sky to host a paintball match using snowball launchers. Players have a set number of hits that they can take before they are eliminated.
    There are 2 game modes included with the plugin:
    Free-for-all: Everyone vs everyone. Team death-match: Players are split into 2 teams.  
    Players can be awarded with items, economics, server rewards and custom commands if they win.
    The plugin comes with 2 dynamic arenas included, which will be selected randomly each game.
    EventHelper is used to automatically start the event and will also allow players to vote for the event manually.
     
     

    The only permission is paintball.admin. This is required to run all commands except for joining and leaving an event, or redeeming prizes.
     
    Command: pbstart Parameters: <optional: arenaFile, optional: heightMod, optional: startDelay> Type: Console & Chat Description: Manually starts the game. Command: pbend Parameters: none Type: Console & Chat Description: Manually stops the game. Command: pbjoin (configurable) Parameters: none Type: Console & Chat Description: Joins an active game. Command: pbleave (configurable) Parameters: none Type: Console & Chat Description: Leaves an active game. Command: pbprize (configurable) Parameters: none Type: Chat Description: Redeems a prize for winning. Command: pbsetcentrepoint Parameters: <arenaFile> Type: Chat Description: Sets the centre point of an arena at the players location. The arena will spawn from that location moving forward.
  3. More information about "Permission/Group Shop"

    $10.00

    Permission/Group Shop

    This plugin allows players to buy permissions and groups true UI.
    Very simple to use , all can be done true UI ... No need to hard placing perms ,groups in config .

    All modification work can be done true UI :

    Adding or removing perms/groups   .
    Customize the permissions/groups .
    Changeable Perm/Group Title , ImageUrl, Description, What Perm/Group they will get , Cost .
    Flexible Economy :

    Item-Based Economy: Use in-game items as the currency for purchases.
    Plugin-Based Economy: Economics, ServerRewards, and CustomCurrency.

    Commands :  

    Chat Command :  /buyperms - Opens UI (Changeable chat command in config).
    Console Command :  open_perms_ui - opens UI.
    Console Command :  remove_perm <player_id or all> <permission or group_ or title>  -  remove from player or from all players that specific perm/group/title.
    Console Command :  wipe_perms <player_id> or <all>  -  with this console command you wipe for that player , or for all players buyed perms/groups.

    Perms :

    "permbuy.buy" :  required to open UI.
    "permbuy.admin" :  required to be able to add/remove ,modify perms/groups true UI .
    "permbuy.bypasscost" :  required for not taking any cost when you buying .

    Lang File Supported - you can change all texts there !
    Data file - you can see there who buyed what !

    Example Config :
    "Open UI Command": "buyperms",
      "UI Title Text": "Buy Permissions/Groups!",
      "Show Purchased Permissions in UI": true,
      "Cost Configuration": {
        "Economy Type [Item, Plugin]": "Item",
        "Plugin Cost Type [CustomCurrency, Economics, ServerRewards]": "CustomCurrency",
        "Item Shortname (if using Item-based)": "scrap",
        "Item Skin ID (if using Item-based)": 0,
        "Item Display Name (if using Item-based)": ""
      },
      "Available Perms/Groups": [
        {
          "Perm/Group Title": "God Mode",
          "Image URL": "https://www.dropbox.com/scl/fi/18yy55g7bfcz8tj4yhnkr/5e2c4da074770.png?rlkey=24zmukgzu3rll382s6wpkbd65&st=e1bi9i7k&dl=1",
          "Description": "Allows you to become truly invisible",
          "What Perm/Group": "vanish.allow",
          "Cost Amount": 100
        },
        {
          "Perm/Group Title": "Bronze VIP",
          "Image URL": "https://www.dropbox.com/scl/fi/ir8e03hvw0wtv59ofbey1/bronze-badge.png?rlkey=9gq4axhg5swt92dgqar6jk97e&st=8rz8iqh9&dl=1",
          "Description": "You will be Bronze VIP player!",
          "What Perm/Group": "group_VIP",
          "Cost Amount": 200
        },

     
  4. More information about "Item Perks: Legendary Items"

    $11.99

    Item Perks: Legendary Items

    Item Perks: Legendary items is a plugin that allows you to create and fully customize legendary named items on your rust server.
    It uses the perk sets available from the Item Perks plugin, allowing for the creation of some very unique items in Rust.
    The fields for creating a new item are:
    Name: Give the item a unique name that captures it's essence Skin: Assign a skin that matches what the item does. Description/Story: Add some flavor to the item and write a short blurb or backstory for the item, which will display when the player mouses over the ownership banner, along with the buffs. Buffs: Add as many or as few ItemPerk buffs as you would like, with any amount of buff values. Restrict enhancement: Prevent or allow enhancement kits to affect each Legendary item. Global chat announcement: Announce in chat when a player finds a really rare or powerful item. Amour slots: Set the amount of armor slots the item spawns with (if applicable).  

     
     

    There are a number of drop sources that can be selected for your legendary items to drop. Along with the source, you can specify which item/prefab shortname you want to restrict the drop to, or which shortnames you want it to exclude.
    The shortname will depend on the loot source. Loot sources with the type "Prefab" will need to use the prefab shortname, where as those with the "Item" type will need to use item shortnames.
     

    Type: Prefab
    Example: crate_normal_2, heli_crate, crate_elite.
     

    Type: Prefab
    Example: loot-barrel-2, loot-barrel-1
     

    Type: Boss name
    Example: scarecrow the destroyer.
     

    Type: Event name
    Supports:
    Harbor Event: "Harbor" Junkyard Event: "Junkyard" Satellite Dish Event: "SatDish" Water Event: "Water" Air Event:  "Air" Arctive Base Event:  "Arctic" Gas Station Event:  "GasStation" Sputnik Event:  "Sputnik" Shipwreck Event:  "Shipwreck" Triangulation Event:  "Triangulation" Supermarket Event:  "Supermarket" Caravan Event:  "Caravan" Powerplant Event:  "Powerplant" Armored Train Event:  "ArmoredTrain" Convoy Event:  "Convoy" Ferry Terminal Event:  "FerryTerminal" SurvivalArena:  "SurvivalArena"  

    Type: Prefab
    Example: scientistnpc_arena, scientistnpc_heavy.
     

    Type: Prefab
    Example: npc_tunneldweller,  npc_underwaterdweller.
     

    Type: Npc name
    Example: military defenders.
     

    Type: Prefab
    Example:  oak_b,  swamp_tree_a, pine_dead_snow_c.
     

    Type: Prefab
    Example: stone-ore, sulfur-ore, metal-ore.
     

    Type: Prefab
    Example:  chicken.corpse,  shark.corpse,  player_corpse.
     

    Type: Prefab
    Example: hemp-collectable,  berry-red-collectable,  corn-collectable.
     

    Type: Prefab
    Example:  hemp.entity,  pumpkin.entity,  wheat.entity.
     

    Type: Item
    Example: rifle.ak,  axe.salvaged,  icepick.salvaged.
     

  5. More information about "Jungle Ziggurat Event"

    $22.00

    Jungle Ziggurat Event

    The Jungle Ziggurat event is an exciting event where NPCs respawn and finding the code for the ladder hatch built into the ceiling gives players a unique experience.

    No permissions

    Server console commands:
    jzestart  jzestop
    Hook:
    void OnJungleZigguratEventStart() void OnJungleZigguratEventStop() Contact:
    Additional free plugins created by me are available  on Discord: https://discord.gg/C5CehdJMdK
    Config:
    { "Version": { "Major": 1, "Minor": 0, "Patch": 0 }, "Automatic event start": true, "Minimum time for event start": 3600.0, "Maximum time for event start": 7200.0, "Duration of the event": 2800.0, "Warning messages before event start": 300.0, "Warning messages before event end": 300.0, "Chat icon": 0, "Locked crate hack time": 900.0, "Disable BetterNpc plugin npc's for the duration of the event?": false, "Spawn NpcSpawn Scientist?(Required: NpcSpawn plugin!)": true, "Spawn BotReSpawn Scientist?(Required: BotReSpawn plugin!)": false, "BotReSpawn profil name:": "", "BotReSpawn Npc's number": 10, "Do you use a sphere around the code note?": true, "Garage doors SkinID": 3472105038, "Armored door SkinID": 3481083092, "Messages setting": { "Message before the event starts.": "Everyone be careful, the <color=#ff0000>Jungle Ziggurat Event</color> is about to start.", "Warning message before the event stop.": "The Jungle Ziggurat event will end soon!!", "Message when someone event owner": "has become the owner of <color=#ff0000>Jungle Ziggurat Event</color>!", "Send a message when someone damages the ladder hatch": "Find the code!", "Send a message when someone enterned the code into the ladder hatch": "Opened the ladder hatch at the <color=#ff0000>Jungle Ziggurat Event</color>", "Start message": "<color=#ff0000>Jungle Ziggurat Event</color> has started!!", "Stop message": "<color=#ff0000>Jungle Ziggurat Event</color> end!", "Map marker name": "Jungle Ziggurat Event", "Map marker radius": 0.6, "Color": { "r": 1.0, "g": 0.0, "b": 0.0 } }, "AutoTurret setting": { "Health": 300.0, "Weapon ShortName": "rifle.ak", "Ammo ShortName": "ammo.rifle", "Number of ammo": 5000 }, "List of lootable crates": [ { "Prefab": "assets/bundled/prefabs/radtown/crate_elite.prefab", "Position": "(-0.950, 0.025, 7.651)", "Rotation": "(0, 0, 0)", "Are you deleting the original loot from the crate?": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] } }, { "Prefab": "assets/bundled/prefabs/radtown/crate_elite.prefab", "Position": "(2.175, 0.025, 7.651)", "Rotation": "(0, 0, 0)", "Are you deleting the original loot from the crate?": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] } }, { "Prefab": "assets/prefabs/npc/patrol helicopter/heli_crate.prefab", "Position": "(0.217, 12.227, 1.822)", "Rotation": "(0, 0, 0)", "Are you deleting the original loot from the crate?": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] } }, { "Prefab": "assets/prefabs/deployable/chinooklockedcrate/codelockedhackablecrate.prefab", "Position": "(-1.868, 12.219, -1.658)", "Rotation": "(0, 0, 0)", "Are you deleting the original loot from the crate?": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] } }, { "Prefab": "assets/prefabs/deployable/chinooklockedcrate/codelockedhackablecrate.prefab", "Position": "(-1.868, 12.219, -0.102)", "Rotation": "(0, 0, 0)", "Are you deleting the original loot from the crate?": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] } } ], "Npcs settings": { "Minimum": 5, "Maximum": 6, "List of position": [ "(3.464, 0, -20.125)", "(22.754, 0, -10.366)", "(10.214, 0, 20.393)", "(-17.770, 0, 13.808)", "(-19.324, 0, -20.945)", "(1.784, 0.025, -7.372)", "(7.526, 0.025, 5.557)", "(7.203, 0.025, -0.254)" ], "NPCs setting": { "Name": "Jungle Guard", "Health": 150.0, "Roam Range": 30.0, "Chase Range": 30.0, "Attack Range Multiplier": 2.0, "Sense Range": 40.0, "Target Memory Duration [sec.]": 60.0, "Scale damage": 0.6, "Aim Cone Scale": 1.5, "Detect the target only in the NPC's viewing vision cone? [true/false]": false, "Vision Cone": 135.0, "Speed": 7.5, "Disable radio effects? [true/false]": false, "Is this a stationary NPC? [true/false]": false, "Use custom loot?": false, "CustomLoot": { "Minimum items": 1, "Maximum items": 1, "Use minimum - maxium?": false, "List of items": [ { "ShortName": "xmas.present.small", "Minimum": 3, "Maximum": 6, "Chance": 100.0, "Give blueprint?": false, "SkinID": 0, "Displayname": "" } ] }, "Wear items": [ { "ShortName": "hat.tigermask", "SkinID (0 - default)": 0 }, { "ShortName": "pants", "SkinID (0 - default)": 3468431914 }, { "ShortName": "hoodie", "SkinID (0 - default)": 3468432155 }, { "ShortName": "roadsign.jacket", "SkinID (0 - default)": 3472579116 }, { "ShortName": "roadsign.kilt", "SkinID (0 - default)": 3472577950 }, { "ShortName": "shoes.boots", "SkinID (0 - default)": 916448999 } ], "Belt items": [ { "ShortName": "blowpipe", "Amount": 1, "SkinID (0 - default)": 0, "Mods": [], "Ammo": "" }, { "ShortName": "syringe.medical", "Amount": 2, "SkinID (0 - default)": 0, "Mods": [], "Ammo": "" }, { "ShortName": "grenade.bee", "Amount": 2, "SkinID (0 - default)": 0, "Mods": [], "Ammo": "" } ] } }, "PVE Mode Setting (only for users PveMode plugin)": { "Use PveMode plugin?": false, "Required damage to the event owner": 500.0, "The event is a right of ownership, to obtain it you need damage multiplier.": { "Npc": 1.0 }, "Non owner can loot the crates?": false, "Non owner can loot the Npc's?": false, "Non owner can damage Npc's?": false, "Non owner can be attacked by Npc's?": false, "Non owner, can you enter the event zone?": false, "Allow a player who has an active cooldown of the Event Owner to enter the event zone?": true, "The time that the Event Owner may not be inside the event zone.": 300, "The time until the event owner can return to the event zone.": 60, "Block the RestoreUponDeath plugin in the event zone.": true, "After all this time, an event owner can be an event owner again.": 86400.0, "Darkening the sphere.": 15 } }  

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
3.1m
Total downloads
Customers
12.1k
Customers served
Files Sold
171.2k
Total sales
Payments
3.7m
Processed total
×
×
  • 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.