| Issue 411: | Don't show what i did. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Jan 5, 2012
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 ) == "!" |