Jump to content

imthenewguy

Creator
  • Posts

    3,445
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. The only thing you can do is either disable the no durability plugin or remove xp for swipe cards. Check under xp sources.
  2. Restore upon death probably isn't handling the item.text field of the item when restoring it. You may need to approach the dev and ask them to add it.
  3. imthenewguy

    level requirement?

    Not currently no.
  4. Hey the Radiation expert perk doesn't add additional rad resistance, it simply reduces the incoming damage from radiation. If your rad stack was to tick for 0.2 damage and you had the 50% reduction, it would only tick for 1. If you had it at 100%, then you would never accumulate radiation as it would be removed each damage tick. The maintenance skill is agnostic to any type of source as it runs in the OnLoseCondition hook. This hook is fired whenever it loses condition. If condition is being lost from a source, then it may be forcing the condition loss via another plugin that doesn't trigger this hook.
  5. imthenewguy

    level requirement?

    The one on the sales page.
  6. imthenewguy

    level requirement?

    Hey mate, so one way you could handle this is: Enable permission based trees, so players require permissions to see each tree. Assign permissions to the default oxide group for each default tree so the players can see them. Create a new tree in the config and call it whatever you want. Add a node in at level 1 that will provide the user with the permission. Do not give permission for players to see this tree. See my video if you need help with this. Go to the leveling rewards section of your config and add in the desired level, and add a command that fires off a permission to give the player access to the new tree you just created when they achieve that level. "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.": { "o.grant user {id} skilltree.mytreenamehere": "You have unlocked the <insert name here> skill tree and can now learn on shot kill." }, "List of commands that are fired off when the player data is reset": [ "o.revoke user {id} skilltree.mytreenamehere" ] } },
  7. imthenewguy

    buff problem

    That is really strange. I am actually in the middle of a full re-write of cooking. I will look into the bug and see what may be misbehaving though.
  8. Unfortunately not. The game play system is hard coded into the plugin as it's a battle royal style game mode.
  9. imthenewguy

    EpicLoot

    EpicLoot already has the permission system built in Update to enchanting should be easy enough.
  10. Nah you will need to look at data
  11. imthenewguy

    Scrap bug

    @DezLife Here is the support ticket.
  12. imthenewguy

    Scrap bug

    Changed Status from Pending to Closed
  13. imthenewguy

    Scrap bug

    Dez life is going to fix the issue. Closing this off for now.
  14. imthenewguy

    Scrap bug

    I queried this with another customer and he sent me some snippets of XDStatistics that is causing the issue. I have sent them to DezLife to fix. Is all in his hands now.
  15. imthenewguy

    Scrap bug

    Really strange. If you don't have the loot magnet perk and smash a barrel/pick up the loot; does the scrap still have the same problem, or is it only with the loot magnet perk active?
  16. The colour is a floating version of RGB. RGB values max out at 255 for each colour, indicating the full value of the colour, where as floating values max out at 1.0. An example of red in RGB is: 255 0 0 An example of red in float is 1.0 0 0 The 4th value indicates the alpha/transparency. 1.0 means it is solid and not see-through at all, where as 0.0 means it is invisible.
  17. Those heli's look hilarious! Love it!
  18. imthenewguy

    EpicLoot

    I think the plugin you are referring to has a button to activate this feature doesn't it? The server doesnt know when a player opens their inventory until an item is moved/used etc, since the action is client side. The only thing I could potentially do is add a button to show a list of all epic loot items in the player inventory when pressed.
  19. imthenewguy

    Scrap bug

    The issue is that I have never had access to a server that has the big. Would you mind trying to unload all plugins except for skill tree and it's dependencies and see if the issue persists? Would be a good starting point.
  20. Changed Status from Pending to Closed
  21. I assume you mean not change when the item is created? If so, set the skin ids in console to 0
  22. Hey mate has it happened since?
  23. imthenewguy

    Scrap bug

    Hey mate I have only seen this happen once on a server I played on, which has the exact same issue. The only notable thing about the server is that it had a ridiculous amount of plugins and really poor server performance (15 server frames a second). Not sure if it was one of the other 150 plugins conflicting with it, or it the server just couldn't keep up with everything running that causes this weird bug. Ive even asked other devs if there is something I am doing wrong with the handling of the method, but they all say it looks fine so I am at a loss.
  24. imthenewguy

    EpicLoot

    Deployable nature - change the following config options: "Prevent wild animals from targeting and killing deployed animals?": false (disable deployable animals if there are still issues) "Allow players to use their middle mouse button to remove an item with a hammer (they can still use chat command regardless if they have perms)": false "Display a chat message when a player pulls out a hammer for the first time, reminding them that they can remove deployables": false SkillTreeItems is only subscribed to CanStackItem, CanCombineDroppedItem, OnEntityKill and OnItemAction. The first 2 are unsubscribed if you set the config for stack handling to false (which should be the case if you are using a stacks plugin). The second only pays attention when the action keyword is used, by default it is "unwrap". OnEntityKill only tracks LootContainer class and simply has 2 lines: a null check of the entity and a call to remove the looted container. SkillTree uses Subscribe/Unsubscribe to handle hooks that aren't relevant at the time. If any player lacks the buff that uses a particular hook, it unsubscribes the hook. It also uses the most hooks of all the plugins by far. EpicLoot uses a lot of hooks due to the nature of it and the number of buffs and abilities it has. There is no Subscribe/Unsubscribe method with this one though (is something I will probably need to add). ItemPerks has the Subscribe/Unsubscribe feature.
  25. Can't reproduce, but I may have already fixed it accidentally lol. We will see in the next release.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.7k

Files Sold

Total number of files sold.

2.4m

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.