-
Posts
59 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by Daemante
-
What version of Discord Extension do you have?
-
"Category ID": is the category in discord where the channels will be created.
-
That means there is already a channel for that player so it wont let them open a new one
-
Is the CategoryID in the _config correct?
-
Is the bot connected to Discord?
-
What are you getting in the console?
-
Can you check your config file and make sure everything is added
-
Version 1.3.1
119 downloads
Allows players to open a live admin chat from Rust to Discord to get support. **Please delete the "LiveAdminChat.json" language file in "/oxide/lang/en/" before updating to version 1.3.1.** If you have any errors, please open a support request and I will help you asap. FEATURES: Creates a discord channel in the provided channel category Allows the Rust player and Discord admins to communicate The ability to store the live admin chat as a transcript Allows a lot of customization, including: The command a player uses to respond to the admin chat The chat prefix for messages sent to the player The Steam profile icon for messages sent to the player The default reason for closing chats Whether or not to display the admin's name when sending messages to the player The channel ID where transcripts will be sent to The Discord roles that will be mentioned when a new channel is created Whether or not to close the channel when the player disconnects from the server Setting the in game chat command to start admin chats Defining the cooldown value after the last ticket was closed Setting a custom cooldown value per player DISCORD BOT: For every Rust server you install the plugin on, you should create a separate Discord Bot. Otherwise, the bot seems to get confused and will incorrectly track different parameters. Setup your bot according to the guide on the Discord extension plugin page: https://umod.org/extensions/discord Also make sure your Discord bot has the following permissions in your server for the channel category and transcript channel: View Channels Send Messages Read Message History Embed Links Attach Files Read Message History PERMISSIONS: liveadminchat.use - required to allow players to use the /adminchat command. liveadminchat.bypasscooldown - allows the player to bypass the chat cooldown CHAT COMMANDS: /adminchat - opens a live admin chat with Discord admins. /reply <message> - sends the response from the player to the Discord admins. CONSOLE COMMANDS: Usage: liveadminchat.setcooldown <steam64id> <cooldown_minutes> Usage: liveadminchat.removecooldown <steam64id> Usage: liveadminchat.listcooldowns DISCORD: Admins can provide a reason for closing the chat by typing the reason after !close in the channel. Anything after "!close" will be included in the reason. Example: !close Closed due to no response Admins can set the chat cooldown, in minutes, per player by using !cooldown in the chat channel. If no cooldown is specified when the chat is closed, the cooldown will be set to the "Chat Cooldown (minutes)" value from the config. Example: !cooldown 60 TRANSCRIPTS: If you want to save the player/admin chats as transcripts, add a channel ID to "Transcript Channel ID" in the config. Otherwise, if you do not want transcripts then leave it blank and they won't be created. CONFIG:$2.99 -
Didn't see the support was already added and that you need both plugins. However, if both AdvancedStatus and SimpleStatus are loaded, then the duration or percent of raid protection doesn't display just that raid protection is active/inactive, red for active and green for inactive? If just SimpleStatus is loaded then the percent does show. Although, the config section below for raid protection doesn't seem to work no matter if I change it to duration/percent or show/hide bleed balance, if keeps showing percent and bleed balance; the balance shown is not accurate. "Simple Status Settings": { "Text Value": "duration", "Always Show For Owners": false, "Always Show For Non Owners": false, "Show When Holding Hammer": false, "Show When Attacking": true, "Show Balance Bleed When Attacking": false
-
Hello, is it possible to add support for the AdvancedStatus bar plugin?
-
Oddly, same issue still happening after a wipe; such as force wipe today. Next wipe should be for tomorrow not in 3h 32m. I've already uploaded the update for AdvancedStatus as well hoping that would help but no dice. Thank you,
-
This is for oxide. Attached in the config as requested. WipeStatus.json
-
Works like a charm. Thank you.
-
Works like a charm. Thank you.
-
Regarding "Bar - Display Layer" in the config, you may want to consider defaulting to "Under" instead as "Hud" blocks input in menus such as the map screen. Its easy to change as you provided the method but some people may just ignore the link and assume its conflicting and doesn't work. Just my two cents.
-
Would it be possible to add "every x number of days" to the plugin so that when specifying a date you can also specify when it would reoccur so that you dont need to add a huge list of dates?
-
Ahhh I see. If that note about IsInvisible2 was always there then my apologies for not seeing/reading it. I will do as instructed. Thank you.
-
Again, thank you for the fast response. Will update and report back.
-
Yes that is the godmode plugin. I will update and report back. Thank you for the super quick implementation.
-
Issue remains without FauxAdmin. Seems it does rely on auth level so not sure it will work using godmode plugins.
-
Appears this only works after a reload but doing /vanish in game again doesn't show the indicator.
-
Found and fixed the issue. There was a typo: Original code: private bool IsInvisible(BasePlayer player) { if (Vanish != null) return (bool)Vanish.Call("IsInvisible2", player); if (BetterVanish != null) return (bool)BetterVanish.Call("_IsInvisible", player); return false; } Fixed code: private bool IsInvisible(BasePlayer player) { if (Vanish != null) return (bool)Vanish.Call("IsInvisible", player); if (BetterVanish != null) return (bool)BetterVanish.Call("_IsInvisible", player); return false; } VanishStatus.cs
-
Here is the error in console: [04.14 19:24:24] [CSharp] Started Oxide.Compiler v successfully [04.14 19:24:27] [CSharp] Started Oxide.Compiler v successfully [04.14 19:24:29] VanishStatus was compiled successfully in 1566ms [04.14 19:24:29] Unloaded plugin Vanish Status v0.1.3 by IIIaKa [04.14 19:24:29] Failed to call hook 'OnServerInitialized' on plugin 'VanishStatus v0.1.3' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.VanishStatus.IsInvisible (BasePlayer player) [0x00022] in <8734002a56ae4ca5859e17dc811b5c0b>:0 at Oxide.Plugins.VanishStatus.SendBar (BasePlayer player) [0x00010] in <8734002a56ae4ca5859e17dc811b5c0b>:0 at Oxide.Plugins.VanishStatus.InitPlayers () [0x00052] in <8734002a56ae4ca5859e17dc811b5c0b>:0 at Oxide.Plugins.VanishStatus.OnServerInitialized () [0x00056] in <8734002a56ae4ca5859e17dc811b5c0b>:0 at Oxide.Plugins.VanishStatus.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x004a9] in <8734002a56ae4ca5859e17dc811b5c0b>:0 at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <87ce9ac9776a48658bc55eae6debe38b>:0 at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in <cd7231f30b444d86bc6cca8a53cdd2ea>:0 at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <cd7231f30b444d86bc6cca8a53cdd2ea>:0 [04.14 19:24:29] Loaded plugin Vanish Status v0.1.3 by IIIaKa [04.14 19:24:29] [Image Library] Starting order VanishStatus [04.14 19:24:29] Image batch (VanishStatus) has been stored successfully [04.14 19:24:32] VanishStatus was compiled successfully in 1566ms Vanish.json
-
Just noticed that If I give myself owner then it shows the indicator. Does this plugin depend on certain flags like isadmin or isdeveloper? I am using FauxAdmin with the isdeveloper flag; so not real admin.
-
I am using the default config with Advanced Status and the godmode plugin. Flying will display but not godmode. Attached are the config for both plugins. Godmode.json FlyingGodStatus.json