Jump to content

Theswingingturtle

Member
  • Posts

    147
  • Joined

  • Last visited

Everything posted by Theswingingturtle

  1. Version 1.0.0

    2 downloads

    Browse and showcase your custom items in-game with categories, search and themed UI. Features • Unlimited categories • Color formatted text (<color> tags supported) • Search by name, shortname or skin ID • Item images via ImageLibrary (shortname or URL) • Designed for modded servers with custom items How to open ItemShowcaseUI Use /items Optional Dependency ImageLibrary - only required for item images Example of adding more categorys and different colors to both UI and info text. Endless Info text Easy to find items with searchbar Data Example { "Id": 1, "DisplayName": "<color=#FF66CC>Bubblegum Armor</color>", "Category": "<color=#FFD700>ARMOR</color>", "Shortname": "metal.plate.torso", "SkinID": 0, "Url": null, "Description": [ "Colored text example", "Gold, cyan and lime colors supported" ], "Drops": [ "Elite Crate", "Dungeon Boss" ] } Config Example { "General": { "Browser Title": "Custom Item Browser", "Categories": [ "<color=#FFD700>ARMOR</color>", "<color=#FFD700>WEAPONS</color>", "<color=#FFD700>CONSUMABLE</color>" ] }, "Override UI Theme (None, Blue, Teal, Purple, Green, Yellow, Orange, Red, Pink, Swamp, Oak)": "None" }
    $14.99
  2. Failed to call hook 'OnPluginUnloaded' on plugin 'ChaosNPC v3.0.37' (MissingMethodException: Method not found: void .BaseNetworkable.Kill(BaseNetworkable/DestroyMode)) at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00107] in <15f61ddda771464d8246ebdce8ff4811>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <15f61ddda771464d8246ebdce8ff4811>:0 Unloaded plugin CustomItems v2.0.0 by 0xF Failed to call hook 'OnPluginUnloaded' on plugin 'ChaosNPC v3.0.37' (MissingMethodException: Method not found: void .BaseNetworkable.Kill(BaseNetworkable/DestroyMode)) at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00107] in <15f61ddda771464d8246ebdce8ff4811>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <15f61ddda771464d8246ebdce8ff4811>:0 Unloaded plugin Customizable Protection v2.1.12 by 0xF [dsc.gg/0xf-plugins] Failed to call hook 'OnPluginUnloaded' on plugin 'ChaosNPC v3.0.37' (MissingMethodException: Method not found: void .BaseNetworkable.Kill(BaseNetworkable/DestroyMode)) at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00107] in <15f61ddda771464d8246ebdce8ff4811>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <15f61ddda771464d8246ebdce8ff4811>:0 Unloaded plugin CustomItemDefinitions v2.3.2 by 0xF // dsc.gg/0xf-plugins I think
  3. it says it conflicts with other stack plugins, and this one doesn't offer a stack modifier, or am I misreading it?
  4. StackSizeController , umod basic one.
  5. Hello, seems like if you're stacking or have a stack of any of the pro items, then unstack them they become Large Presents instead. Happens to all pro items. Doesn't matter if stack is found or if players stacked it, unstacking always convert them to regular Large Presents but with the custom icon still
  6. Quick and responsive, thanks Ninja works, also love the plugin, makes the server feel more live!
    I'm so happy with this plugin. It makes the server look alot more alive and players can keep track on eachother in a totally different way! It doesn't matter if you're running PvE or PVP this is a must have Developer is awesome aswell, made fixes asked right away.
  7. Tested your update. Helisignals/Patrol Helicopter showing correct now. Side thing, when you destroy each gib on bradleys and helis it also gives "killed patrol/bradley" now. Custom items working properly.
  8. Changing GetWeaponName to this fixed custom items showing correct for me: private string GetWeaponName(HitInfo info) { if (info == null) return null; if (info.Weapon != null) { var item = info.Weapon.GetCachedItem() ?? info.Weapon.GetItem(); if (item != null) { if (!string.IsNullOrEmpty(item.name)) return item.name; if (item.info != null && item.info.displayName != null && !string.IsNullOrEmpty(item.info.displayName.english)) return item.info.displayName.english; } } if (info.WeaponPrefab != null) { var weaponName = info.WeaponPrefab.ShortPrefabName; if (!string.IsNullOrEmpty(weaponName)) { weaponName = weaponName.Replace(".entity", "").Replace(".prefab", ""); weaponName = weaponName.Replace("_", " "); if (weaponName.Contains("/")) { var parts = weaponName.Split('/'); weaponName = parts[parts.Length - 1]; } return System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(weaponName); } }
  9. definitely working on his Bradley Drops plugin ^ But not on the Heli Signals, could @ZEODEdo same with Heli Signals and make it count like the BradleyDrops does maybe?
  10. hello, can you please make Zeodes HeliSignals on codefling count towards kills. His BradleyDrops plugin works fine with bradley kills but would be nice if also HeliSignals works too with heli kills I'm also using custom items made via CustomItemsDefinitions on codefling aswell, on a custom lr-300 with new shortname and display name it just say Killed with LR 300 but it should be for example "Admin.LR" If you don't mind talking on discord add Theswingingturtle
  11. Theswingingturtle

    problem

    just came home, didn't see anything in rawlogs last 24 hours, had 2 restarts. and I tested a reload now, perfect aswell. You can go ahead and close thanks
  12. Theswingingturtle

    problem

    out of 145 plugins this one is the only one requiring it, is it because lootmanager or convoy? i didn't get this before update
  13. Theswingingturtle

    problem

    kept coming on reload, but on server restart it's now working properly.
  14. Theswingingturtle

    problem

    [Convoy] A backup of the config named 'Convoy_Backup.json' has been created! Failed to call hook 'OnServerInitialized' on plugin 'Convoy v2.9.2' (UnauthorizedAccessException: Access to the path "/home/container/oxide/data/LootManager/LootTables/convoy_biker_m92_easy_1.json" is denied.) at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.Boolean anonymous, System.IO.FileOptions options) [0x0019e] in <f98723dd4586469db5213ec59da723ca>:0 at System.IO.FileStream..ctor (System.String path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share, System.Int32 bufferSize, System.IO.FileOptions options) [0x00000] in <f98723dd4586469db5213ec59da723ca>:0 at (wrapper remoting-invoke-with-check) System.IO.FileStream..ctor(string,System.IO.FileMode,System.IO.FileAccess,System.IO.FileShare,int,System.IO.FileOptions) at System.IO.StreamWriter..ctor (System.String path, System.Boolean append, System.Text.Encoding encoding, System.Int32 bufferSize) [0x00055] in <f98723dd4586469db5213ec59da723ca>:0 at System.IO.StreamWriter..ctor (System.String path) [0x00008] in <f98723dd4586469db5213ec59da723ca>:0 at (wrapper remoting-invoke-with-check) System.IO.StreamWriter..ctor(string) at System.IO.File.WriteAllText (System.String path, System.String contents) [0x00026] in <f98723dd4586469db5213ec59da723ca>:0 at Oxide.Core.Configuration.DynamicConfigFile.WriteObject[T] (T config, System.Boolean sync, System.String filename) [0x0003f] in <112d89ea5d3348c8b949af0ab1a866d2>:0 at Oxide.Core.DataFileSystem.WriteObject[T] (System.String name, T Object, System.Boolean sync) [0x00007] in <112d89ea5d3348c8b949af0ab1a866d2>:0 at Oxide.Plugins.Convoy+LootManagerMigrator.SaveLootTable (System.String presetName, Oxide.Plugins.Convoy+LootTableData lootTableData) [0x0002c] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.Convoy+LootManagerMigrator.GetLootManagerPresetName (Oxide.Plugins.Convoy+BaseLootTableConfig baseLootTableConfig, System.String presetName) [0x0001a] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.Convoy+LootManagerMigrator.SendAllLootTablesToLootManager () [0x001c3] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.Convoy.UpdateConfig () [0x00206] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.Convoy.OnServerInitialized () [0x00015] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.Convoy.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00255] in <37ce2dd323df4ed297189121661ce5b2>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <42f9bedc659b4f4786eb778d3cd58968>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000de] in <112d89ea5d3348c8b949af0ab1a866d2>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <112d89ea5d3348c8b949af0ab1a866d2>:0 Loaded plugin Convoy v2.9.2 by Adem
  15. I set everything to false in rb main config+raid-profile, but raidablebases still doing it, idk why Calling hook OnBackpackDrop resulted in a conflict between the following plugins: DeathModifier - False (Boolean), RaidableBases (True (Boolean)) Calling hook OnBackpackDrop resulted in a conflict between the following plugins: DeathModifier - False (Boolean), RaidableBases (True (Boolean)) .
  16. Hello, do anyone know here what to put in Name if I have custom items? I can't get it to work with customshortnames on "Name", am I supposed to use display name?
  17. If hackable crate isn't unlocked yet it keep trying to loot https://medal.tv/games/rust/clips/lKlE0Mvi7Nh_F99gX?invite=cr-MSxrbnQsNDg2NjYxMjEx&v=15
  18. I still get it with TruePVE for some reason, doesn't seem to be an issue tho..
  19. Figured everything out. It was all config issues. All 3, dungeon, truepve and rb was keeping backpack on death, changing to drop on death took away boolean
  20. "Prevent player active item from dropping on death": true, "Prevent player backpack from dropping on death (Rust backpack)": true, I set these to false and it took care of TruePVE
  21. Calling hook OnBackpackDrop resulted in a conflict between the following plugins: DeathModifier - False (Boolean), TruePVE (True (Boolean)) Calling hook OnBackpackDrop resulted in a conflict between the following plugins: DeathModifier - False (Boolean), RaidableBases (True (Boolean)) I tried to find the dungeon boolean but couldn't.. Might have seen wrong idk..
  22. hello, I have a boolean with Raidable Bases, True PVE and Dungeon Events, conflicting in OnBackpackDrop, makes the Revive Free not working and, their corpse stay in the raid, and when they go to loot it ammo is gone most of the times if it happens
  23. hello, is it possible to increase damage above 1.0 on turrets? I have modded armors that can take more damage etc
  24. Theswingingturtle

    Shortnames

    Hello, I tried your "Name": and it doesn't support custom names. Could that be fixed? Merry xmas
2.2m

Downloads

Total number of downloads.

10.3k

Customers

Total customers served.

149.2k

Files Sold

Total number of files sold.

3.2m

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.