Ulysses

General => Developers Corner => Topic started by: Monikas_Comin on December 16, 2018, 07:00:41 PM

Title: People can't see what admin is running commands (Ban, Bring, etc)
Post by: Monikas_Comin on December 16, 2018, 07:00:41 PM
I'm looking to change this. Is there a way to do so? I've looked for a while and found nothing.


Simplified:

I wanna change (Someone) brought You
to Ruby brought You
or etc.
Title: Re: People can't see what admin is running commands (Ban, Bring, etc)
Post by: Timmy on December 17, 2018, 12:53:13 AM
Method 1: XGUI
Open XGUI > Click "Settings" tab > Click "Server" tab > Click "ULX Command/Event Echoes" > Select "Echo commands and identify admin" in the first drop-down list.

(https://timmy.github.io/images/xgui-command-echoes.png)

Method 2: Server console
Use the "ulx logEcho" console variable to control how ULX echoes commands.

There's 3 different modes:
Code: [Select]
0 - OFF No output to any players when an admin command is used
1 - ANONYMOUS Output to players without access to see who used the command (admins by default) similar to "(Someone) slapped Bob with 0 damage"
2 - FULL Output to players similar to "Foo slapped Bob with 0 damage"

In this case you'd set it to 2. So you would run:
Code: [Select]
ulx logEcho 2
Title: Re: People can't see what admin is running commands (Ban, Bring, etc)
Post by: Monikas_Comin on December 17, 2018, 02:40:07 PM
Method 1: XGUI
Open XGUI > Click "Settings" tab > Click "Server" tab > Click "ULX Command/Event Echoes" > Select "Echo commands and identify admin" in the first drop-down list.

(https://timmy.github.io/images/xgui-command-echoes.png)

Method 2: Server console
Use the "ulx logEcho" console variable to control how ULX echoes commands.

There's 3 different modes:
Code: [Select]
0 - OFF No output to any players when an admin command is used
1 - ANONYMOUS Output to players without access to see who used the command (admins by default) similar to "(Someone) slapped Bob with 0 damage"
2 - FULL Output to players similar to "Foo slapped Bob with 0 damage"

In this case you'd set it to 2. So you would run:
Code: [Select]
ulx logEcho 2

This worked great for me! Thank you so much!