Is this the plugin I need to have the server announce when someone has joined the server?
Chat Handler [Unmaintained]
Discussion in 'Plugin Support' started by Domestos, Nov 2, 2014.
-
How to do?
Moderator edit: Please use English when posting.Attached Files:
Last edited by a moderator: May 31, 2015 -
-
-
hi there, for some reason - the Player name colour changes donators name colour? hoever priority 1 for players and 4 for donators?
-
-
yes, so my players are set to priority 1, donators are set to priority 4. however the name colour will be the player is used??
the only way to stop this is to remove the player from the player oxide group? -
How do i set player as VIP?! must be set on console??
i just edited this script like this:
"VIP": {
"NameColor": "green",
"Permission": "vip",
"Prefix": "*VIP*",
"PrefixColor": "yellow",
"PrefixPosition": "left",
"PriorityRank": 3,
"ShowPrefix": true,
"TextColor": "white"
} -
Wulf Community Admin
-
am i doing something wrong? :/ -
Wulf Community Admin
-
no error on log or console
http://puu.sh/iajtl/a2e72643a4.jpg -
Wulf Community Admin
-
-
can i change something on "server/oxide/data" oxide.users.json OR oxide.groups ? -
-
-
-
chathandler.json
Code:{ "ChatGroups": { "Admin": { "NameColor": "cyan", "Permission": "admin", "Prefix": "", "PrefixColor": "", "PrefixPosition": "left", "PriorityRank": 5, "ShowPrefix": false, "TextColor": "white" }, "Donator": { "NameColor": "#5af", "Permission": "donator", "Prefix": "[$$$]", "PrefixColor": "#06DCFB", "PrefixPosition": "left", "PriorityRank": 4, "ShowPrefix": true, "TextColor": "#ffffff" }, "Moderator": { "NameColor": "#5af", "Permission": "moderator", "Prefix": "[Mod]", "PrefixColor": "#FFA04A", "PrefixPosition": "left", "PriorityRank": 2, "ShowPrefix": true, "TextColor": "#ffffff" }, "Player": { "NameColor": "cyan", "Permission": "player", "Prefix": "[Player]", "PrefixColor": "#ffffff", "PrefixPosition": "left", "PriorityRank": 1, "ShowPrefix": false, "TextColor": "white" }, "VIP": { "NameColor": "green", "Permission": "color_VIP", "Prefix": "*VIP*", "PrefixColor": "yellow", "PrefixPosition": "left", "PriorityRank": 3, "ShowPrefix": true, "TextColor": "white" } }, "Messages": { "AdminNotifications": { "AdminModeDisabled": "Admin mode disabled", "AdminModeEnabled": "You are now in admin mode", "NoPermission": "You dont have permission to use this command", "WordfilterAdded": "WordFilter added. {word} will now be replaced with {replacement}", "WordfilterError": "Error: {replacement} contains the word {word}", "WordfilterNotFound": "No filter for {word} found to remove", "WordfilterRemoved": "successfully removed {word} from the wordfilter" }, "Helptext": { "ChatHistory": "Use /history or /h to view recent chat history", "Wordfilter": "Use /wordfilter list to see blacklisted words" }, "PlayerNotifications": { "AdWarning": "Não é permitido anúncios de outros servidores!", "AutoMuted": "Você será mutado por {punishTime}", "BroadcastAutoMutes": "{name} got {punishTime} auto muted for spam", "NoChatHistory": "No chat history found", "SpamWarning": "Pare com o SPAM, se continuar será punido!", "WordfilterList": "Blacklisted words: {wordFilterList}" } }, "Settings": { "AdminMode": { "ChatName": "ADMINISTRADOR", "NameColor": "white", "TextColor": "orange" }, "AntiSpam": { "EnableAntiSpam": "true", "MaxLines": 4, "TimeFrame": 6 }, "ChatCommands": { "AdminMode": [ "admin" ], "ChatHistory": [ "history", "h" ], "Wordfilter": [ "wordfilter" ] }, "General": { "AllowedIPsToPost": [], "BlockServerAds": "true", "ChatHistoryMaxLines": 10, "EnableChatGroups": "true", "EnableChatHistory": "true", "MaxCharsPerLine": 64 }, "Logging": { "LogBlockedMessages": "true", "LogToConsole": "true", "LogToFile": "false" }, "Permissions": { "AdminMode": "canadminmode", "EditWordFilter": "caneditwordfilter" }, "Wordfilter": { "EnableWordfilter": "false", "ReplaceFullWord": "true" } }, "WordFilter": { "bitch": "sweety", "cunt": "****", "fucking hell": "lovely heaven" } }
Code:{ "admin": { "Title": "admin", "Rank": 0, "Perms": [ "color_owner", "admin" ], "ParentGroup": null }, "moderator": { "Title": "moderator", "Rank": 1, "Perms": [ "color_mod", "moderator" ], "ParentGroup": null }, "player": { "Title": "player", "Rank": 2, "Perms": [ "color_player", "player" ], "ParentGroup": null }, "VIP": { "Title": "VIP", "Rank": 3, "Perms": [ "color_VIP" "VIP" ], "ParentGroup": null } }
oxide.user.json
Code:{ "76561198079789976": { "LastSeenNickname": "ADMIN", "Perms": [], "Groups": [ "admin" ] }, "76561198113350712": { "LastSeenNickname": "Handye", "Perms": [], "Groups": [ "player" ] }, "76561198081912324": { "LastSeenNickname": "FourceKill", "Perms": [], "Groups": [ "player" ] }
-