Kill Feed

Displays a basic Kill Feed on screen!

Total Downloads: 17,863 - First Release: Nov 9, 2015 - Last Update: Oct 27, 2017

5/5, 36 likes
  1. It still not working, any ideas ?
     
  2. The plugin still does not work. The console displays this:
    Code:
    AddUI: Unknown Parent for "{0} feedEntry ": Hud.Under
     
  3. Just as a quick-fix for this that I came up with...

    in KillFeed.cs, find two locations that contain 'Hud.Under':

    Code:
    #region feedEntryElement
                CuiElement feedEntryElement = new CuiElement
                {
                    Name = "{0} feedEntry",
                    Parent = "Hud.Under",
                    FadeOut = fadeOut,
                    Components =
                        {
                            new CuiRawImageComponent
                            {
                                Sprite = "assets/content/textures/generic/fulltransparent.tga"
                            },
                            new CuiRectTransformComponent
                            {
                                AnchorMin = anchormin.x + " " + anchormin.y,
                                AnchorMax = anchormax.x + " " + anchormax.y
                            }
                        }
                };
    and change the line Parent = "Hud.Under" to Parent = "Hud" like this:

    Code:
    #region feedEntryElement
                CuiElement feedEntryElement = new CuiElement
                {
                    Name = "{0} feedEntry",
                    Parent = "Hud",
                    FadeOut = fadeOut,
                    Components =
                        {
                            new CuiRawImageComponent
                            {
                                Sprite = "assets/content/textures/generic/fulltransparent.tga"
                            },
                            new CuiRectTransformComponent
                            {
                                AnchorMin = anchormin.x + " " + anchormin.y,
                                AnchorMax = anchormax.x + " " + anchormax.y
                            }
                        }
                };
    Do the same for the second place you find "Hud.Under", then save the file, reload the plugin and the kill feed should be working properly.
     
  4. Thank you very much)))
     
  5. No problem :)
     
  6. thanks works great is there one for infopanel so people see when the airdrops and heli are coming in
     
  7. I haven't made any changes to InfoPanel and mine is working as normal. Could you elaborate on your exact issue?
     
  8. no errors it dont show up when a heli or airdrop comes in
     
  9. The icon doesn't turn red or green or anything? A helicopter came into my server a few minutes ago and the icon has turned red. Make sure your InfoPanel is up to date and while in-game, press F1 and are there any errors mentioning unknown parenting for the GUI?
     
  10. yeah that part shows but there was a banner at top of scrren that used to show
     
  11. İs there anyone know how we can fix?
     

    Attached Files:

  12. Don't work for me :/
     
  13. remove tags or increase "1.2.4 number of characters": 20,
     
  14. Dont work.
    I use
    "2.2 number of entries": 1,
    "2.3 destroy after": 5.0,
     
  15. rust update. compiler error report.

    Code:
    KillFeed.cs(1082,27): warning CS0649: Field `Oxide.Plugins.KillFeed.Key.key' is never assigned to, and will always have its default value `null'
    KillFeed.cs(1083,27): warning CS0649: Field `Oxide.Plugins.KillFeed.Key.action' is never assigned to, and will always have its default value `null'
    KillFeed.cs(1084,27): warning CS0649: Field `Oxide.Plugins.KillFeed.Key.defaultAction' is never assigned to, and will always have its default value `null'
     
  16. Wulf

    Wulf Community Admin

    Style warnings, not errors. They can be ignored.
     
  17. Please update from config the plugin does not go.
     
  18. Please read the entries before writing...