-
Posts
176 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by HunterZ
-
After poking at the code, it seems the problem is that the leaderboard data within Player Ranks itself never gets populated unless I manually take a snapshot using admin commands/GUI? I was hoping it would just save the latest leaders to SQL whenever it saves the main stats, so that I can figure out who Player Ranks has given a title when there's a tie. Might also be nice for it to save a "last wipe's leaders" row/table when a wipe happens.
-
FYI, "Structures Upgraded" doesn't work on Carbon because the Carbon's support for the `OnStructureUpgrade()` hook is currently broken. I filed a bug here: https://discord.com/channels/1013291619765723196/1291239356597669938 In the meantime, adding a `d` to the end works: void OnStructureUpgraded(BaseCombatEntity entity, BasePlayer player, BuildingGrade.Enum grade) => Plus(player, "StructuresUpgraded", 1); Edit: This is no longer an issue.
- 424 comments
-
- #statistics
- #leaderboard
- (and 12 more)
-
I have this set in my playerranks.json config file: "MySQL": { "useMySQL": true, "autoWipe": true, "sql_port": 3306, "sql_host": "REDACTED", "sql_db": "playerranks_hzcr", "sql_user": "REDACTED", "sql_pass": "REDACTED", "tablename": "playerranksdb", "LBtableName": "playerranksleaderdb" } `playerranksdb` gets populated with current detailed stats as expected. BUG: `playerranksleaderdb` gets created with proper columns but no rows.
-
FYI, I have released Player Base PvP Zones as my own spin on this idea, which covers all base types, provides moving and dynamic sizing, creation/deletion delays, PvP exit delays, etc.
-
Also started tearing my hear out not being able to figure out why it won't connect, and came here to see that it's probably a MySQL 8 incompatibility. Bummer. Edit: Read somewhere that trying the `mysql_native_password` authentication plugin might help - will try and report back. Edit 2: Yeah, I just can't get it working with 8.x. I added logging of the exception message (not sure why the plugin doesn't do that) and got this: "Authentication method 'caching_sha2_password' not supported by any of the available plugins." Tried reinstalling the 8.x database with 5.x authentication and it didn't help at all. Tried going back to 8.x and recreating the account with caching_sha2_password and that didn't work either. I guess this plugin really does only work with 5.x databases, so I'll have to try that next. Edit 3: Yeah, was a pain to get MySQL 5.7 installed, but it works!
-
- 272 comments
-
- 1
-
-
- #updates checker
- #plugin
- (and 5 more)
-
Came here to report the vending machine thing, but I see it's already been discussed. Interesting thing is it only seems to happen in my hand-created easy bases, and not in the ones from your Tier 3 pack. Edit: Oh, I see - it's because those are the only ones I defined raid costs for to show in the map tooltips.
-
- 272 comments
-
- #updates checker
- #plugin
- (and 5 more)
-
- 272 comments
-
- 1
-
-
- #updates checker
- #plugin
- (and 5 more)
-
Version 2.3.0
96 downloads
Provides timed/manual/disabled unlocking of workbenches. Introduction This plugin will allows the server owner to lock out any or all workbenches from being crafted until specified amounts of time have elapsed since start of wipe, or indefinitely / until manually unlocked. Also optionally supports blocking research of locked workbenches so that players can't then replicate them via industrial crafters. Supports the following notification method(s) on craft/research failure: Chat (up to once every 5 seconds), sound, toast. Tutorial Island players are exempted from lockouts, as completing that requires crafting a Level 1 Workbench. Important This plugin is based on "Timed Workbench" by DizzasTeR, but is a significant overhaul. The two plugins cannot coexist in a single server installation. The plugin will detect map wipes and will automatically refresh the workbench locks. To facilitate other forms of wiping, the server owner/maintainer may manually invoke the `twwipe` command. Permissions * `timedworkbenchunlock.skiplock` — Allows crafting workbenches regardless of lock status * `timedworkbenchunlock.admin` — Gives access to **all** commands below * `timedworkbenchunlock.broadcast` — Gives access to the `twbroadcast` command * `timedworkbenchunlock.info` — Gives access to the `twinfo` command * `timedworkbenchunlock.modify` — Gives access to the `twmodify` command * `timedworkbenchunlock.reload` — Gives access to `twreload` command * `timedworkbenchunlock.reset` — Gives access to `twreset` command * `timedworkbenchunlock.wipe` — Gives access to `twwipe` command Note: No permissions are granted automatically. Commands * `twbroadcast <value>` — Configure global status broadcast period to the specified number of seconds, or specify a non-positive number to disable * `twinfo` — Prints elapsed time since wipe, and unlock status and times for each workbench tier * `twmodify <tier> <value>` — Configure lockout for the given workbench tier, where a negative value is indefinite lockout, zero is unlocked, and a positive value is the number of seconds to unlock after start of wipe * `twreload` — Reload the config file to pick up manual changes while the server is running * `twreset` — Resets config to the default settings (**be careful with this!**) * `twwipe` — Resets the last wipe timestamp to the current time, effectively restarting the lockout timers Configuration Example config file: { "Block crafting of locked workbench(es)": true, "Block researching of locked workbench(es)": true, "Report craft failure as chat message": false, "Report craft failure as sound effect": true, "Report craft failure as toast message": true, "Global status broadcast interval in seconds (0 to disable)": 300, "Time that current wipe started (UTC)": "2024-12-10T01:05:57Z", "Workbench unlock times (seconds from start of wipe, or 0 for unlocked, or -1 for permanently locked)": [ 86400, 172800, 259200 ] } Except for detailed tweaks to wipe time, all of the config settings are modifiable via ingame comands. Credits * DizzasTeR for the original "Timed Workbench" plugin on which this is based * Umod.org documentation/forums/discord * Other plugins as examples of best practices and Oxide API usage * MrBlue for being patient with me lol * misticos for detailed feedbackFree -
No, you need to find the existing SuperPVxInfo.json in your carbon/configs or oxide/config directory, and change the default PVP Zone Names list: "PVP Zone Names (case insensitive substrings / none to disable)": [ "PVP" ], ...to something more like: "PVP Zone Names (case insensitive substrings / none to disable)": [ "PVP", "Lighthouse #1", "Lighthouse #2", "Mining Outpost #1" ],
-
@ShadoW6 As expected, Zone Manager Auto Zones has a number of shortcomings that make SuperPVxInfo integration more challenging: It calls TruePVE/NextGenPVE directly instead of using a general hook call, so SuperPVxInfo can't intercept its mappings as a means of learning about PvP zones. It does not include "PVP" in the names of the created zones, so SuperPVxInfo can't determine their nature from zone names either (note that this also breaks compatibility with Zone PVx Info). If you are not willing to ditch ZoneManagerAutoZones in favor of DynamicPVP, then your only option is as follows: Open `data/ZoneManager/zone_data.json` under your oxide or carbon directory, and note down the "Name" value for every PVP zone created by Zone Manager Auto Zones. Open `SuperPVxInfo.json` in your plugin configs directory, and add each of the zone names to the PVP Zone Names list. Reload SuperPVxInfo or restart the server.
-
Added support for Ferry Terminal Event by KpucTaJl in SuperPVxInfo 1.5.0. Haven't seen any updates from Adem yet.
-
In-work apparently: https://game4freak.io/threads/providing-an-api-for-third-party-integration.135/ I just put in a nudge on behalf of Update Checker. It looks like the site uses a very regular format, though, so worst case it wouldn't be super difficult to scrape https://game4freak.io/plugins/ or individual plugin pages for version numbers.
-
It's more of a forum than a proper plugin site. The stuff it shows for updates has more to do with the threads than the actual plugins.
-
Lots of people are asking for this, but the author is shutting down / ignoring all requests. The reason seems to be that Update Checker depends on ServerArmour's website under the hood, and SA doesn't support Game4Freak. I bet if someone were to get SA to add LD support, UpdateChecker would follow suit.
- 272 comments
-
- 1
-
-
- #updates checker
- #plugin
- (and 5 more)
-
What are you taking about? Stuff has been updated this month: https://game4freak.io/plugins/better-dropped-item-stacker.60/history
-
Please reconsider adding support for game4freak.io. It has been featured in multiple videos by srtbull, so there is now lots of interest.
-
I originally started creating this because Zone Manager Auto Zones didn't work with Zone PVx Info - but then I switched to Dynamic PVP which is a much better implemented plugin. It should be possible to support Zone Manager Auto Zones, however: If it creates TruePVE "exclude" mappings or includes "PVP" in its zone names then it should "just work". Otherwise, you may need to add part or all of its zone names to the matcher list in Super PVx Info's configuration.
-
It says right there in the message that you've enabled Popup Notifications support, but have not installed Popup Notifications. Check the "works with" list in this plugin's description - or disable Popup Notifications support. Edit: I should probably disable Popup Notifications support by default, since I only provide it for feature parity with Zone Manager. I don't understand the question. What PVE/PVP plugins are you running?
-
Right, it doesn't know what TruePVE is doing, which is why you also have to align the height limits in Super PVx Info's config file with what you have in TruePVE's config file. My plugin is limited to what TruePVE's public API allows, or else there's no chance of also supporting other PVE plugins like NextGenPVE, SimplePVE, etc.