Jump to content

imthenewguy

Creator
  • Posts

    4,840
  • Joined

  • Last visited

  • Days Won

    62

Everything posted by imthenewguy

  1. Send me a PM and mention that we spoke here
  2. It will be out when it's out mate. You can join the discord for early access if you need it though.
  3. Oh, do you have EventHelper?
  4. imthenewguy

    epic hammer craft

    Changed Status from Pending to Closed
  5. They should work fine with alpha loot as they aren't added to a container until the first player loots it.
  6. 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); }
  7. imthenewguy

    Tea Buff not working?

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

    epic hammer craft

    Yep. Might want to do toolgun as well.
  9. Are you on version 1.0.8?
  10. That message is locked behing "Send announcements via in-game chat?". foreach (var player in BasePlayer.activePlayerList) { string str = string.Format(lang.GetMessage("BuildingCreated_Success", this, player.UserIDString), GetGrid(pos, false), Math.Round(randomTime, 0)); if (config.notificationSettings.send_chat_announcements) PrintToChat(player, str); SendGUIAnnouncement(player, str); if (config.notificationSettings.UINotify.send_on_spawn) SendNotify(player, str); }
  11. Do you use a clans plugin or anything like that?
  12. imthenewguy

    1000 MlRs

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

    1000 MlRs

    Ill update it in the next release. Ty
  14. Can you please show me word for word what the text is that is spamming?
  15. imthenewguy

    epic hammer craft

    "List of craftable items that cannot be enhanced"
  16. Once enough feedback has been given about the patch from my users.
  17. imthenewguy

    Tea Buff not working?

    I have pushed a fix on my discord for testing.
  18. imthenewguy

    epic hammer craft

    Yes add it to black list.
  19. I see the issue. I have a patch rolled out on my discord to test.
  20. There isnt a way to blacklist areas, but I can add a check that prevents it from being placed in a distance from rig.
  21. imthenewguy

    Stacking Setting Broke

    Changed Status from Pending to Closed
  22. imthenewguy

    Recyclers not appearing

    What command is this firing off?

About Us

Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.

Downloads
2.5m
Total downloads
Customers
11.2k
Customers served
Files Sold
160.2k
Total sales
Payments
3.4m
Processed total
×
×
  • 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.