Now I've tried a few different RCON tools (i don't have straight console access)
via RCON if i type "find oxide." i only get:
if I type "oxide.plugins" i get no output in console.Code:find oxide. Variables:Commands:
The same happens for console commands for ZLevels (zl.info)
I check the log.log.txt and my Oxide.plugins info is in there, my zl.info output is in there, but there is never anything in the console.
I've used RustAdmin and rcon.io both do the same thing.
Fixed Oxide commands not showing with find command
Discussion in 'Rust Discussion' started by Dubz, Feb 9, 2017.
-
Wulf Community Admin
Update to the latest Oxide build, it was fixed yesterday.
-
Always one step ahead!
Thanks mate -
@Wulf
Still not getting all messages in console, even after last update.
this is the output of "find oxide."
Code:(10:19:00) | Variables:Commands:
Code:09:06 [Warning] [Updater] Couldn't check for updates of following plugins as they have no ResourceID set: ConnectMessages, Discord, Entity Radar, PassiveLeveling, RaidNotes, RotatingPickups, RustNotifications, SDonate 09:06 [Warning] [Updater] Following plugins are outdated:# MagicCraft | Installed: 0.2.7 - Latest: 0.2.8 | http://oxidemod.org/plugins/1347/# HeliControl | Installed: 1.1.5 - Latest: 1.1.7 | http://oxidemod.org/plugins/1348/# QuickSmelt | Installed: 1.3.0 - Latest: 2.5.0 | http://oxidemod.org/plugins/1067/# TimeOfDay | Installed: 2.2.1 - Latest: 2.3.2 | http://oxidemod.org/plugins/1355/# Trade | Installed: 1.0.9 - Latest: 1.1.0 | http://oxidemod.org/plugins/1242/
Code:(10:11:03) | [Oxide] 09:06 [Warning] [Updater] Couldn't check for updates of following plugins as they have no ResourceID set: ConnectMessages, Discord, Entity Radar, PassiveLeveling, RaidNotes, RotatingPickups, RustNotifications, SDonate (10:15:00) | [Oxide] 09:10 [Info] [PassiveLeveling] PassiveLeveling Tick
-
Wulf Community Admin
The find command issue we'll look into. -
-
Further to this, I ran "show group vip" via cmd console on a test server and it output the proper info to the console.
I then ran the same command via RCON, the info shows on the cmd console but not in the RCON console. -
Wulf Community Admin
-
Tested with the old experimental rcon with RustAdmin and it works....
So would that be a FP bug or? -
Wulf Community Admin
-
Ok
So it looks like when a plugin trys to print a text table it doesnt show up in RCON.
The below code will print the TEST message but will not display the TextTable in console via WebRcon.
Code:PrintWarning("TEST"); TextTable textTable = new TextTable(); textTable.AddColumn("FieldInfo"); textTable.AddColumn("Level"); textTable.AddColumn("Points"); textTable.AddRow(new string[] { "Woodcutting", playerData.WCL.ToString(), playerData.WCP.ToString() }); textTable.AddRow(new string[] { "Mining", playerData.ML.ToString(), playerData.MP.ToString() }); textTable.AddRow(new string[] { "Skinning", playerData.SL.ToString(), playerData.SP.ToString() }); textTable.AddRow(new string[] { "Acquire", playerData.AL.ToString(), playerData.AP.ToString() }); textTable.AddRow(new string[] { "Crafting", playerData.CL.ToString(), playerData.CP.ToString() }); textTable.AddRow(new string[] { "XP Multiplier", playerData.XPM.ToString()+"%", string.Empty }); PrintWarning( "Stats for player: " + player.Name + "\n" +textTable.ToString());
Same happens for SendReply, viewable in the logs but not via WebRcon. -
Wulf Community Admin
-
Anything that is a single line prints fine, anything that has multiple lines in the same string isn't getting detected by WebRcon.
[DOUBLEPOST=1487802545][/DOUBLEPOST]Confirmed that it's the new line causing the issue
The below does not show in WebRcon, but does show in the logs.
Code:PrintWarning("Test 2 \n Test 3");
-
Wulf Community Admin
The original issue for this thread is fixed in the latest release.
-
Code:(09:51:23) | Variables:Commands: oxide.lang( ) oxide.version( ) oxide.plugins( ) oxide.load( ) oxide.reload( ) oxide.unload( ) oxide.grant( ) oxide.group( ) oxide.revoke( ) oxide.show( ) oxide.usergroup( )
-
Wulf Community Admin
-
If I do "oxide.version" and it doesn't show up in WebRcon still only in the logs
Code:[02/24/2017 08:49:28] [Oxide] 08:49 [Info] Protocol: 1965 Build Version: 1170.8 Build Date: Thursday, February 23, 2017 7:14:03 PM Unity Version: 5.4.2f2 Changeset: 19337 Branch: /main Oxide Version: 2.0.3083
-
Wulf Community Admin
-