Jump to content

imthenewguy

Curator
  • Posts

    4,030
  • Joined

  • Last visited

  • Days Won

    51

Everything posted by imthenewguy

  1. Next update supports NPC corpses. Barrel supports road signs and barrels.
  2. Add short prefab names to the config and see what works.
  3. imthenewguy

    Console error

    You get xp each time an item is crafted, so long as its vanilla crafting system and not anoither plugin cancelling the vanilla invoke and handling crafting on its own.
  4. imthenewguy

    Console error

    This issue is literally not happening for anyone else mate. Also the crafting issue is completely different to the errors above. How often are you having to reload the plugin?
  5. Changed Status from Pending to Closed
  6. What are you talking about?
  7. I will add the description for noscoreboard, but the others are explained in the config. "Modified max skill points based on permissions [must be higher than default]") "Modified max skill points based on permissions [must be higher than default]" "Permission based level requirement override" "Permission based point requirement override" "Permission based modifiers [1.0 = no reduced amount]" "Dictionary of permission based overrides for starting skill points" "Modifiers based on permissions to adjust the rested xp value [1.0 = 100% increase. 0.0 = no increase]"
  8. imthenewguy

    Console error

    What if you change to oxide?
  9. imthenewguy

    Console error

    That is a Carbon issue.
  10. Changed Status from Pending to Closed
  11. Have you tested this yourself?
  12. Are your players removed from team when they join the lobby?
  13. imthenewguy

    Console error

    How often is this happening?
  14. Send me a PM and mention that we spoke here
  15. It will be out when it's out mate. You can join the discord for early access if you need it though.
  16. Oh, do you have EventHelper?
  17. imthenewguy

    epic hammer craft

    Changed Status from Pending to Closed
  18. They should work fine with alpha loot as they aren't added to a container until the first player loots it.
  19. It was added in 1.0.7 This is the code with comments showing that it does not send if those options are set to false. foreach (var player in BasePlayer.activePlayerList) { // This is the string that is built to send through chat, UINotify and SendGUIAnnouncement string str = string.Format(lang.GetMessage("BuildingCreated_Success", this, player.UserIDString), GetGrid(pos, false), Math.Round(randomTime, 0)); // This handles sending the message via chat. The send_chat_announcements is that config option. If its false, the code won't reach the PrintToChat method. if (config.notificationSettings.send_chat_announcements) PrintToChat(player, str); // This triggers SendGUIAnnouncement method, which handles the checks in the method itself. SendGUIAnnouncement(player, str); // This handles sending the message via UINotify. It won't reach the method if send_on_spawn is set to false. if (config.notificationSettings.UINotify.send_on_spawn) SendNotify(player, str); } This the code the SendNotify, showing that there are no chat message methods inside of the SendNotify method. void SendNotify(BasePlayer player, string message) { if (string.IsNullOrEmpty(message)) return; if ((Notify != null && Notify.IsLoaded) || (UINotify != null && UINotify.IsLoaded)) Interface.Oxide.CallHook("SendNotify", player, config.notificationSettings.UINotify.type, message); } Short of the notify plugin having built in chat messages (why would it), it should not be sending chat messages. This is also the SendGUIAnnouncement method for reference. void SendGUIAnnouncement(BasePlayer player, string message) { if (!config.notificationSettings.GUIAnnouncements.enabled || GUIAnnouncements == null || !GUIAnnouncements.IsLoaded) return; GUIAnnouncements.Call("CreateAnnouncement", message, config.notificationSettings.GUIAnnouncements.banner_colour, config.notificationSettings.GUIAnnouncements.text_colour, player, config.notificationSettings.GUIAnnouncements.position_adjustment); }
  20. imthenewguy

    Tea Buff not working?

    Under the SkillTree channel. You will need to PM me for roles.
  21. imthenewguy

    epic hammer craft

    Yep. Might want to do toolgun as well.
  22. Are you on version 1.0.8?
1.9m

Downloads

Total number of downloads.

9k

Customers

Total customers served.

132.5k

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.