terraria吧 关注:786,451贴子:10,122,265

回复:泰拉瑞亚1.4(原版,非tmod)缩放方法分享

只看楼主收藏回复

感谢


IP属地:江西19楼2024-03-10 23:42
回复
    NB


    IP属地:山东来自Android客户端20楼2024-07-17 21:00
    回复
      2026-03-03 07:00:14
      广告
      不感兴趣
      开通SVIP免广告
      神贴,最大视野从上下35变成上下46了,直接高超了,笔记本玩家也有今天


      IP属地:安徽21楼2024-09-14 21:14
      回复
        撅一下楼主


        IP属地:山东22楼2025-10-20 12:29
        回复
          新版本怎么救,有大佬知道吗


          IP属地:江苏23楼2026-01-30 18:56
          收起回复


            IP属地:河南24楼2026-01-30 20:36
            收起回复
              有新版教程吗


              IP属地:广东来自Android客户端25楼2026-02-01 17:17
              收起回复
                关于1..4.5缩放解除方法
                这是大佬的git仓库地址:https://github.com/byddha/terarria-zoom-patcher
                有心的可以在右上角点点小星星
                首先你需要安装Python(这是必须的)
                需要下载仓库里的patcher.py文件到你的游戏根目录(看图1)
                好了后按win+r输入cmd回车 然后把这段输入进去:
                cd /d "替换为你的Terraria游戏根目录"
                python patcher.py Terraria.exe
                回车 然后出现黑框里的内容就代表成功了


                IP属地:广西27楼2026-02-06 12:09
                收起回复
                  2026-03-03 06:54:14
                  广告
                  不感兴趣
                  开通SVIP免广告
                  新的缩放方法确实可以用,请看27楼↑


                  IP属地:广西28楼2026-02-14 14:58
                  回复
                    1.4.5.5版本教程
                    打开这个链接网页链接
                    清空里面的代码输入我提供的代码:
                    ——————————————————
                    # 只生成代码版本 - 不需要访问本地文件
                    width = 2560
                    height = 1440
                    width_value = width - 1
                    height_value = height - 1
                    width_hex = width_value.to_bytes(2, byteorder="little", signed=False)
                    height_hex = height_value.to_bytes(2, byteorder="little", signed=False)
                    print("=" * 50)
                    print("泰拉瑞亚宽屏补丁 - 代码生成器")
                    print("=" * 50)
                    print(f"分辨率: {width} x {height}")
                    print()
                    print("需要查找的原始代码:")
                    print("04 20 80 07 00 00 20 B0 04")
                    print()
                    print("替换后的新代码:")
                    print(f"04 20 {width_hex.hex(' ')} 00 00 20 {height_hex.hex(' ')}")
                    print()
                    print("手动修改步骤:")
                    print("1. 用HxD打开 Terraria.exe")
                    print("2. Ctrl+F 搜索: 04 20 80 07 00 00 20 B0 04")
                    print("3. 替换为上面的新代码")
                    print("4. Ctrl+S 保存")
                    print("=" * 50)
                    ————————————————————
                    设置你自己的分辨率,然后点击run
                    看到结果按照楼主提供的教程走一遍就行了


                    IP属地:河南29楼2026-02-24 23:30
                    回复