Помогите б

Скиньте Код Чтобы Когда Писал В Чат /donate То В Консоль После Ввода Команды Писалось donate_menu и киньте в какую папку писать

Зачем?

Кидать в addons/addon/lua/autorun/client/cl_donatecommand.lua

hook.Add( "OnPlayerChat", "donatecommand", function( ply, strText, bTeam, bDead ) 
    if ( ply != LocalPlayer() ) then return end

	strText = string.lower( strText ) -- make the string lower case

	if ( strText == "/donate" ) then -- if the player typed /hello then
		RunConsoleCommand( "donate_menu" ) -- print Hello world to the console
		return true -- this suppresses the message from being shown
	end
end )

Спс Огромное