My favorites | Sign in
Project Home Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 411: Don't show what i did.
1 person starred this issue and may be notified of changes. Back to list
Status:  New
Owner:  ----


 
Reported by crille...@gmail.com, Dec 30, 2011
Could you please add an option that lets you change if you wan't the "<NAME> has rocketed <NAME>" and all other messeges to show up?
Jan 5, 2012
#1 Darkassa...@gmail.com
if you use @<cmd> insted of !<cmd> of /<cmd> its a silent cmd and wont print to chat or console
Jan 5, 2012
#2 Darkassa...@gmail.com
also if you go into addons/evolve/lua/ev_plugins  an open sv_chatcommands.lua you can edit these lines (43 and 53)

----------------------------------------------------------------------------------------------------------------------

if ( ( GAMEMODE.Name == "Sandbox" and string.Left( msg, 1 ) == "/" ) or string.Left( msg, 1 ) == "!" or string.Left( msg, 1 ) == "@" ) then
 evolve.SilentNotify = string.Left( msg, 1 ) == "@"   

----------------------------------------------------------------------------------------------------------------------

change @ in both lines to the symboll you want ex: #
if ( ( GAMEMODE.Name == "Sandbox" and string.Left( msg, 1 ) == "/" ) or string.Left( msg, 1 ) == "!" or string.Left( msg, 1 ) == "#" ) then
 evolve.SilentNotify = string.Left( msg, 1 ) == "#"   

----------------------------------------------------------------------------------------------------------------------

but if you change the simboll to ! or ? then use this

if ( ( GAMEMODE.Name == "Sandbox" and string.Left( msg, 1 ) == "/" ) or string.Left( msg, 1 ) == "!") then
 evolve.SilentNotify = string.Left( msg, 1 ) == "!"   

Powered by Google Project Hosting