Jump to content

imthenewguy

Curator
  • Posts

    4,028
  • Joined

  • Last visited

  • Days Won

    51

Everything posted by imthenewguy

  1. imthenewguy

    Skill Tree

    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.
  2. No idea, I don't use ZoneManager. I just know that it sends a string, so whatever the string value (which I assume is the name) is.
  3. imthenewguy

    Barrel Smasher

    Changed Status from Pending to Closed
  4. imthenewguy

    start concole

    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.
  5. imthenewguy

    Barrel Smasher

    Weird.
  6. imthenewguy

    realPVE

    Ive posted on his plugin page with what needs to be done.
  7. imthenewguy

    Real PvE

    Hey mate can you add a hook call to allow plugins to prevent your plugin from stopping damage? The standard is calling CanEntityTakeDamage to determine if your plugin should handle it. object CanEntityTakeDamage(BasePlayer victim, HitInfo info)
  8. 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)
  9. imthenewguy

    Skill Tree

    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." ] } },
  10. 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.
  11. imthenewguy

    Armor Buffs Not Applying

    Changed Status from Pending to Closed
  12. imthenewguy

    Armor Buffs Not Applying

    Sounds like you don't have permissions set for the plugin. Ensure you have itemperks.use allocated to the relevant group.
  13. imthenewguy

    Barrel Smasher

    Have you tried unloading all other plugins to see if the issue persists? It works fine on other servers.
  14. Changed Status from Pending to Closed
  15. "t1" in config should be "tier1"
  16. disable repairing to max.
  17. 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?
  18. Isn't much I can do about that unfortunately.
  19. 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.
  20. imthenewguy

    language

    You do not edit language directly in the .cs file. You edit it via lang. https://docs.oxidemod.com/guides/owners/localization
  21. What config option are you referring to?
  22. imthenewguy

    Better weapons

    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.
  23. imthenewguy

    FridgeFood.cs

    Changed Status from Pending to Closed
  24. imthenewguy

    FridgeFood.cs

    No plans to add compatibility considering they are changing the fridge mechanics soon.
  25. imthenewguy

    FridgeFood.cs

    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.
1.9m

Downloads

Total number of downloads.

9k

Customers

Total customers served.

132.4k

Files Sold

Total number of files sold.

2.8m

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.