Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. **Simple Kill Feed** Gives you a simple looking kill UI of various kill events. Also can you let display PVP kills in attackers and victims chat.
  2.  
  3. Feed:
  4. ![](https://i.imgur.com/WYrxSyI.png)
  5.  
  6. Chat:
  7. ![](https://i.imgur.com/AlAXL9W.png)
  8.  
  9. ## Commands
  10.  
  11. * `/feed` -- Toggle kill feed off and on individually
  12.  
  13. ## Configuration
  14.  
  15. ```json
  16. {
  17. "Show suicides in KillFeed (Default: true)": true,
  18. "Show radiation kills in KillFeed (Default: true)": true,
  19. "Chat Icon Id (Steam profile ID)": 76561197960839785,
  20. "Max messages in feed (Default: 5)": 5,
  21. "Max player name length in feed (Default: 18)": 18,
  22. "Feed message TTL in seconds (Default: 7)": 7,
  23. "Allow kill messages in chat along with kill feed": true,
  24. "Height ident (space between messages). Default: 0.0185": 0.0185,
  25. "Feed Position - Anchor Max. (Default: 0.995 0.986": "0.995 0.986",
  26. "Feed Position - Anchor Min. (Default: 0.723 0.964": "0.723 0.964",
  27. "Font size of kill feed (Default: 12)": 12,
  28. "Outline Text Size (Default: 0.5 0.5)": "0.5 0.5",
  29. "Default color for distance (if too far from any from the list). Default: #FF8000": "#FF8000",
  30. "Distance Colors List (Certain color will apply if distance is <= than specified)": [
  31. {
  32. "DistanceThreshold": 50,
  33. "Color": "#FFFFFF"
  34. },
  35. {
  36. "DistanceThreshold": 100,
  37. "Color": "#91D6FF"
  38. },
  39. {
  40. "DistanceThreshold": 150,
  41. "Color": "#FFFF00"
  42. }
  43. ],
  44. "Remove Entitys that should not shown in KillFeed": [
  45. "AutoTurret",
  46. "FlameTurret",
  47. "GunTrap",
  48. "Landmine",
  49. "BearTrap",
  50. "BaseHelicopter",
  51. "BradleyAPC"
  52. ],
  53. "Custom Weapon Names, you can add more!": {
  54. "Assault Rifle": "Ak-47",
  55. "LR-300 Assault Rifle": "LR-300",
  56. "L96 Rifle": "L96",
  57. "Bolt Action Rifle": "Bolt",
  58. "Semi-Automatic Rifle": "Semi-AR",
  59. "Semi-Automatic Pistol": "Semi-AP",
  60. "Spas-12 Shotgun": "Spas-12",
  61. "M92 Pistol": "M92"
  62. }
  63. }
  64. ```
  65.  
  66. ## Localization
  67.  
  68. ```json
  69. {
  70. "MsgAttacker": "You killed <color=#ff686b>{0}</color> from {1}m in <color=#ff686b>{2}</color>.",
  71. "MsgVictim": "<color=#ff686b>{0}</color> killed you from {1}m with their {2} to <color=#ff686b>{3}</color>.",
  72. "MsgFeedKill": "<color=#00ff00>{0}</color> killed <color=#ff686b>{1}</color>, <color=#ff686b>{2}</color>, <color=#ff686b>{3}</color><color={4}>({5}m)</color>",
  73. "MsgAtkWounded": "You wounded <color=#ff686b>{0}</color> till death.",
  74. "MsgVictimWounded": "<color=#ff686b>{0}</color> has wounded you till death.",
  75. "MsgFeedWounded": "<color=#00ff00>{0}</color> finished <color=#ff686b>{1}</color>",
  76. "MsgAttackerBlown": "You blown <color=#ff686b>{0}</color>!",
  77. "MsgVictimBlown": "<color=#ff686b>{0}</color> has blown you!",
  78. "MsgFeedBlown": "<color=#00ff00>{0}</color> blown up <color=#ff686b>{1}</color>",
  79. "MsgAtkBurned": "You burned <color=#ff686b>{0}</color> alive!",
  80. "MsgVictimBurned": "<color=#ff686b>{0}</color> has burned you alive!",
  81. "MsgFeedBurned": "<color=#00ff00>{0}</color> burned <color=#ff686b>{1}</color>",
  82. "MsgFeedKillBaseHelicopter": "<color=#ff686b>{0}</color> was killed by <color=orange>Helicopter</color>",
  83. "MsgFeedKillBradleyAPC": "<color=#ff686b>{0}</color> was killed by <color=orange>APC</color>",
  84. "MsgFeedKillAutoTurret": "<color=#ff686b>{0}</color> was killed by <color=orange>Auto Turret</color>",
  85. "MsgFeedKillFlameTurret": "<color=#ff686b>{0}</color> got burned down by a <color=orange>Flame Turret</color>",
  86. "MsgFeedKillGunTrap": "<color=#ff686b>{0}</color> was killed by <color=orange>Shotgun Trap</color>",
  87. "MsgFeedKillBearTrap": "<color=#ff686b>{0}</color> was killed by <color=orange>Bear Trap</color>",
  88. "MsgFeedKillLandmine": "<color=#ff686b>{0}</color> got blown up by a <color=orange>Landmine</color>",
  89. "MsgFeedKillSuicide": "<color=#ff686b>{0}</color> committed <color=orange>Suicide</color>",
  90. "MsgFeedKillRadiation": "<color=#ff686b>{0}</color> died to <color=orange>Radiation</color>",
  91. "Enabled": "KillFeed Enabled",
  92. "Disabled": "KillFeed Disabled"
  93. }
  94. ```
  95.  
  96. ## Plugin Data
  97.  
  98. This Plugin saves a data file under **oxide/data/SimpleKillFeed.data**.
  99. This file contains player IDs who have disabled the kill feed.
  100.  
  101. ## Credits
  102. * **[Def](https://umod.org/user/IDef)** - Initial development.
  103. * **[Lucky Luciano](https://umod.org/user/CosaNostra)** - Testing, Development and polishing.
  104. * **[Sensei](https://umod.org/user/Sensei)** - For the icon.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement