-
Posts
4,028 -
Joined
-
Last visited
-
Days Won
51
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by imthenewguy
-
Yeah you would need to do this for each level that you want it to trigger, keeping the same fields under each level as I showed above, and ensuring the syntax doesn't get messed up.
-
- 1,355 comments
-
- #leveling
- #progression
- (and 19 more)
-
Changed Status from Pending to Closed
-
Whats the name of the map in data? It creates a json file under oxide/data/MotorbikeRacing/ The prefix of the name should be the map name, and the suffix is the name that you gave it when creating the track.
-
Ive posted on his plugin page with what needs to be done.
-
- 98 comments
-
- 1
-
-
- #rust
- #real
-
(and 56 more)
Tagged with:
- #rust
- #real
- #pve
- #pvp
- #solo
- #build
- #friendly
- #raid
- #npc
- #monument
- #monuments
- #loot
- #looting
- #farm
- #newbie
- #custom
- #bar
- #ui
- #cui
- #panel
- #vehicle
- #claim
- #limit
- #limits
- #sleeping
- #bag
- #sleeping bag
- #bed
- #shelter
- #permission
- #permissions
- #vip
- #economy
- #economics
- #rad
- #town
- #radtown
- #queue
- #bypass
- #vehicles
- #raidable
- #base
- #bases
- #raidablebases
- #raider
- #raiders
- #humannpc
- #event
- #events
- #copy
- #paste
- #copypaste
- #plugin
- #plugins
- #umod
- #oxide
- #carbon
- #iiiaka
-
This plugin subscribes to CanEntityTakeDamage, which is what most PVE plugins use to determine if they should allow damage or not from other plugins. I would advise you tell the dev to add support for it so it works with most arena pvp plugins. object CanEntityTakeDamage(BasePlayer victim, HitInfo info)
- 31 comments
-
- 1
-
-
The reward settings that ships with the default config has this exact example. "List of rewards the player receives based on level": { "100": { "List of commands and chat messages that the player receives when reaching the specified level [Left = command. Right = Private message to player]. {id} = steam ID. {name} == name.": { "say <color=#ffae00>{name}</color> reached level <color=#4cff03>100</color>!": "You have reached a milestone level!" }, "List of commands that are fired off when the player data is reset": [ "say Test data reset." ] } },
-
I have a potential fix for this that I am going to trial on my discord server. Will push the update if it's successful.
-
Changed Status from Pending to Closed
-
Sounds like you don't have permissions set for the plugin. Ensure you have itemperks.use allocated to the relevant group.
-
Have you tried unloading all other plugins to see if the issue persists? It works fine on other servers.
-
Token "Ends" time displaying N/A after token claimed
imthenewguy replied to Nomad3211's Support Request in Support
Changed Status from Pending to Closed -
Token "Ends" time displaying N/A after token claimed
imthenewguy replied to Nomad3211's Support Request in Support
"t1" in config should be "tier1" -
disable repairing to max.
-
Token "Ends" time displaying N/A after token claimed
imthenewguy replied to Nomad3211's Support Request in Support
It returns NA if the player isn't found in data or if vip_levels doesnt contain the specified tier from data. if (!pcdData.pentiy.ContainsKey(player.userID)) return "NA"; var playerData = pcdData.pentiy[player.userID]; if (!playerData.vip_levels.ContainsKey(tier)) return "NA"; if (playerData.vip_levels[tier].end_date.Date == DateTime.Now.Date) { var enddate = playerData.vip_levels[tier].end_date; return $"{enddate.Hour}:{enddate.Minute}:{enddate.Second}"; } What does your data file look like? Is t1 in there? -
Isn't much I can do about that unfortunately.
-
Once wipe has happened, that option will no longer trigger. You could manually reward a player with 5 skill points using the givesp command, but the plugin won't tell you who it was.
-
You do not edit language directly in the .cs file. You edit it via lang. https://docs.oxidemod.com/guides/owners/localization
-
What config option are you referring to?
-
You could the desired items to the whitelist, so the specified perks will only ever spawn on the selected items. For example: "BradleyDamage": { "enabled": true, "min_mod": 0.03, "max_mod": 0.05, "perkWeight": 100, "whitelist": [ "rocket.launcher.dragon", "rocket.launcher" ], "blacklist": null, "Perk modifier cap": 0.0 }, "HeliDamage": { "enabled": true, "min_mod": 0.03, "max_mod": 0.05, "perkWeight": 100, "whitelist": [ "lmg.m249" ], "blacklist": null, "Perk modifier cap": 0.0 } Any buffs that you do not want to appear on equipment, set enabled to false.
-
Changed Status from Pending to Closed
-
No plans to add compatibility considering they are changing the fridge mechanics soon.
-
No the drop storage should work fine as its purely handled in data; it doesnt use an actual container. The container is only used to show the user the items stored. Not sure how it will behave if an item that can't be stored in a fridge is stored. You'll have to test; it was never designed for that, so I have no idea.