Author Topic: People can't see what admin is running commands (Ban, Bring, etc)  (Read 1621 times)

0 Members and 1 Guest are viewing this topic.

Offline Monikas_Comin

  • Newbie
  • *
  • Posts: 6
  • Karma: 1
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.

Offline Timmy

  • Ulysses Team Member
  • Sr. Member
  • *****
  • Posts: 252
  • Karma: 168
  • Code monkey
Re: People can't see what admin is running commands (Ban, Bring, etc)
« Reply #1 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.



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

Offline Monikas_Comin

  • Newbie
  • *
  • Posts: 6
  • Karma: 1
Re: People can't see what admin is running commands (Ban, Bring, etc)
« Reply #2 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.



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!