Jump to content

imthenewguy

Creator
  • Posts

    3,842
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. imthenewguy

    Error

    Why would my plugin handle vanilla items? Its not a loot plugin.
  2. imthenewguy

    Error

    My plugin is only responsible for spawning item perk items into containers and crates. You can disable all item perk spawning by setting 0 to all values under"Chance for a player to receive an enhanced item when looting a container [out of 100]".
  3. imthenewguy

    Error

    No idea. Never heard of the plugin.
  4. I had a look at the code for RestoreUponDeath, and there are no buttons in the plugin that players can click to get their items back; it just happens when they respawn. What plugin is giving you a button to restore the players inventory? I think I see the cause of the stripping after the second respawn. Will fix that.
  5. The team removal does not work with clans. It says that in the config. "Allow players to stay in a team when they join the event? [set to true if using any sort of clans or team management plugin]" There are no APIs for me to call to disable or bypass friendly fire for clans, so there isn't much that can be done.
  6. imthenewguy

    Question

    Nah its either all or none.
  7. imthenewguy

    Spam in chat

    Changed Status from Pending to Closed
  8. imthenewguy

    Spam in chat

    It happens when a player unlocks a skill that is locked behind a permission. Specifically when granting perms to view trees from memory.
  9. You can add them directly to the config.
  10. imthenewguy

    Ingredients wont drop

    Show me your config. Ingredient chance 1.0 does not mean 100% chance of dropping ingredients. Drop weight 1000 does nothing to the drop chance either; just makes that particular item more likely to drop when a successful drop is rolled.
  11. imthenewguy

    XP Levels update and Error

    You can only edit the xp per level using the x and y field values. "Leveling information. Y value must be set to 2 or 3": { "x": 0.07, "y": 2.0, Go to the main skill tree page, scroll down to "XP Table Info" heading and have a read at how the xp is calculated. There is a table you can use to tweak the values.
  12. That clash may be the extended magazine skill. You should be able to blacklist rocket launcher if you need to.
  13. Can you punch it into Chat GPT and ask it to explain it to you That helps me understand a lot of things I would otherwise be unfamiliar with now-days.
  14. imthenewguy

    Error

    How do you know it is?
  15. My plugin should be having not be affecting velocity for any rockets fired, excluding ones fired by players with the Rocket_Velocity buff. void OnRocketLaunched(BasePlayer player, TimedExplosive entity) => HandleRocket(player, entity); void HandleRocket(BasePlayer player, TimedExplosive timedExplosive) { if (!GetBuffDetails(player.userID, out var bd)) return; if (bd.GetBuff(Buff.Rocket_Velocity, out var value)) { if (!timedExplosive.TryGetComponent<ServerProjectile>(out var projectile)) return; projectile.CurrentVelocity += (projectile.CurrentVelocity * value); } if (bd.GetBuff(Buff.Explosion_Radius, out value) && !config.buff_settings.raid_perk_settings.Explosion_Radius_settings.blacklist.Contains(timedExplosive.ShortPrefabName) && PassRaidableBasesCheck(timedExplosive, Buff.Explosion_Radius)) { timedExplosive.explosionRadius += timedExplosive.explosionRadius * value; if (config.buff_settings.raid_perk_settings.Explosion_Radius_settings.add_to_minimum) timedExplosive.minExplosionRadius += timedExplosive.minExplosionRadius * value; } }
  16. imthenewguy

    download

    Changed Status from Pending to Closed
  17. Changed Status from Pending to Closed Changed Fixed In to Next Version
  18. imthenewguy

    Error

    It only adds perked items to NPCs that are from ItemPerks. It does not add other plugins items to NPCs because how can it? It wouldn't even know they exist.
  19. Not even sure what it is, so probably not. I can get rid of the ImageLibrary requirement and use skins though.
  20. imthenewguy

    Keep Loot On Death

    This tutorial explains how you can make custom skills using permissions:
  21. imthenewguy

    tell me

    Good idea. I will add a config option to the next release.
  22. imthenewguy

    Error

    What plugin is responsible for the admin LR300?
1.8m

Downloads

Total number of downloads.

8.4k

Customers

Total customers served.

126.6k

Files Sold

Total number of files sold.

2.6m

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.