静看光阴荏苒
不管不顾不问不说也不念

自建冒险岛国际服(GMS)游戏加速器更新版

2023年10月21日更新,打个小广告:

本人现承接代搭建MapleStory GMS(冒险岛国际服)游戏加速器业务。

如果你是小白不知道如何操作Linux系统,又或者没有时间折腾这些东西只想安心玩游戏,可以联系我有偿帮你搭建。

请注意我给你部署的方法并不是文章内公开的方法,而是更好用更稳定的方法。我可以做出以下几点保证:

1、你的游戏账号不会被IP连坐封号。

2、使用NexonLauncher启动器不会弹出需要验证邮箱的提示。

3、比市面上的游戏加速器玩起来更流畅,你不会感觉到卡顿、延迟。

你可以在这里下单购买:https://shop.meows.lol/MapleStory

目前在线支付只支持PayPal付款,如果你没有PayPal可以工单联系我,我可以发支付宝二维码给你付款。如果你不知道如何在上述网站发工单也可以直接在这篇文章下留言。

在你购买前需要注意以下几点:

1、你可以自备VPS服务器,我只负责帮你在VPS服务器上部署程序。你也可以选择让我准备VPS服务器,即一条龙服务,所有的东西都交给我处理。根据你自身的需求来下单。

2、如果你自备VPS服务器,请确保服务器IP位于北美范围内,例如美国、加拿大。

3、自备VPS服务器一次性收费12美元,如果你使用支付宝付款则按当天的美元兑人民币汇率来计算。

4、一条龙服务一次性收费12美元,每月收费8美元(VPS服务器每月续费)。

5、只支持使用NexonLauncher启动器,如果你使用Steam请事先切换到NexonLauncher启动器。

——————————————————–分隔线——————————————————–

这篇文章应该算是这3篇文章的更新版:

自建冒险岛国际服(GMS)游戏加速器

游戏福音:kcptun+udp2raw解决udp干扰/QoS

udp2raw+tinyfecvpn+shadowsocks搭建游戏加速器

由于udp2raw的faketcp/easyfaketcp伪装模式已经不好用,我这边现在是几分钟就要断一次,再加上旧版shadowsocks也有一些问题,所以这篇文章更新一个新的搭建方法。

udp2raw本身还支持一个icmp伪装模式,经过我的测试这个模式目前非常稳,游戏稳定在线一整天完全没问题,另外之前安装的shadowsocks是通过apt包管理器安装的,版本太旧,存在一些问题,现在改为用snap安装最新版。

此外我还是决定套kcptun来用,经过我的测试kcptun玩起来比tinyfecvpn更流畅,虽然现在冒险岛把大部分职业的技能都改为本地计算cd了,在技能施放这块可以说基本感受不到卡顿了,但是在其他方面,比如进游戏商城,接取任务等方面还是有一些延迟。在这方面kcptun的表现更优秀。

正好今天游戏更新春季版本,故我也更新下梯子的教程。。祝各位新版本肝的愉快,开冲!!!

安装snap/supervisor:

apt -y update
apt -y install wget snapd supervisor

使用snap安装新版shadowsocks:

snap install core
snap install shadowsocks-libev --edge

启动supervisor:

systemctl enable --now supervisor

新建shadowsocks配置文件:

nano /var/snap/shadowsocks-libev/common/etc/shadowsocks-libev/config.json

写入如下配置:

{
    "server":"0.0.0.0",
    "mode":"tcp_and_udp",
    "server_port":8888,
    "local_port":1080,
    "password":"设置你的ss密码",
    "timeout":60,
    "method":"chacha20-ietf-poly1305"
}

新建supervisor配置文件用于守护shadowsocks进程:

nano /etc/supervisor/conf.d/shadowsocks-libev.conf

写入如下配置:

[program:shadowsocks]
priority=1
command=/usr/bin/snap run shadowsocks-libev.ss-server -c /var/snap/shadowsocks-libev/common/etc/shadowsocks-libev/config.json
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/log/supervisor/shadowsocks.log

启动shadowsocks:

supervisorctl update

下载安装udp2raw/kcptun:

cd /opt && mkdir -p udp2raw kcptun
cd udp2raw
wget https://github.com/wangyu-/udp2raw-tunnel/releases/download/20200818.0/udp2raw_binaries.tar.gz
tar -xzvf udp2raw_binaries.tar.gz
cd ../kcptun
wget https://github.com/xtaci/kcptun/releases/download/v20210103/kcptun-linux-amd64-20210103.tar.gz
tar -xzvf kcptun-linux-amd64-20210103.tar.gz

新建kcptun配置文件:

nano server-config.json

写入如下配置:

{
"listen": ":7777",
"target": "127.0.0.1:8888",
"key": "设置你的kcptun密码",
"crypt": "salsa20",
"mode": "fast3",
"mtu": 1300,
"sndwnd": 1024,
"rcvwnd": 1024,
"datashard": 2,
"parityshard": 2,
"dscp": 46,
"nocomp": true
}

新建supervisor配置文件用于守护kcptun进程:

nano /etc/supervisor/conf.d/kcptun.conf

写入如下配置:

[program:kcptun]
priority=1
directory=/opt/kcptun
command=/opt/kcptun/server_linux_amd64 -c /opt/kcptun/server-config.json
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/log/supervisor/kcptun.log

启动kcptun:

supervisorctl update

新建supervisor配置文件用于守护udp2raw进程:

nano /etc/supervisor/conf.d/udp2raw.conf

写入如下配置:

[program:udp2raw]
priority=1
directory=/opt/udp2raw
command=/opt/udp2raw/udp2raw_amd64 -s -l 0.0.0.0:6666 -r 127.0.0.1:7777 --raw-mode icmp --cipher-mode none -a -k "设置你的udp2raw密码"
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=/var/log/supervisor/udp2raw.log

启动udp2raw:

supervisorctl update

确保前面3个服务(shadowsocks/kcptun/udp2raw)都是RUNNING状态:

supervisorctl status

服务端就搭建好了。接下来是客户端的配置。

安装winpcap,参考这里,跨平台版本的udp2raw依赖:

https://github.com/wangyu-/udp2raw-multiplatform/wiki/%E5%AE%89%E8%A3%85pcap%E5%92%8Clibnet

下载udp2raw的跨平台预编译文件:

https://github.com/wangyu-/udp2raw-multiplatform/releases/download/20210111.0/udp2raw_mp_binaries.tar.gz

在powershell里面执行下面的命令启动:

.\udp2raw_mp_nolibnet.exe -c -r vpsip:6666 -l 0.0.0.0:5001 --raw-mode icmp --cipher-mode none -k "你的udp2raw密码"

看到有changed state from to client_handshake2 to client_ready字样说明连接成功:

如果没有这一行出现的话,下面这些步骤暂时就不用看了,先排查你之前做的这些服务端配置看看是哪里有问题。

没有问题的话现在下载kcptun的客户端管理工具:

https://github.com/dfdragon/kcptun_gclient/releases/download/v1.1.3/kcptun_gclientv.1.1.3.zip

同时你还需要下载win下的kcptun:

https://github.com/xtaci/kcptun/releases/download/v20210103/kcptun-windows-amd64-20210103.tar.gz

打开kcptun客户端管理工具,在最上方找到KCPTUN客户端exe文件,选中client_windows_amd64.exe

然后按下图添加客户端并填写配置,除了通讯密钥改为你之前设置的kcptun密码外,其他的保持和图片内的配置一致:

之后点击启动即可运行kcptun客户端。

最后下载netch:

https://github.com/NetchX/Netch/releases/download/1.8.1/Netch.7z

在netch里面添加shadowsocks服务器,除了密码改为你的shadowsocks密码外,其他配置按如图填写:

然后在netch里面点击模式-创建进程模式,扫描你的nexon启动器目录和游戏目录。

例如你的nexon启动器目录:E:\Nexon

游戏目录:E:\maplestory

两个都需要添加进去。

这里有一个问题是,netch不能完全代理nexon启动器,会导致你的账号无法正常登录。曲线救国的办法有2个:

1.在netch里面添加你的默认浏览器目录,让netch直接代理你的浏览器,然后选择用第三方登录,就是登录界面右边的google/apple登录。此时nexon启动器会调用你的默认浏览器打开第三方登录界面,登录即可。

2.再额外开一个代理工具,比如v2rayN,等到nexon启动器的登录界面加载出来后,随便启用一个代理,用第三方登录即可。(我一般用这个方法)

赞(13)
未经允许不得转载:荒岛 » 自建冒险岛国际服(GMS)游戏加速器更新版
分享到: 更多 (0)

评论 36

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
  1. #1

    lala好样的! :mrgreen:

    BobMaster3年前 (2021-03-11) Firefox 86.0 Firefox 86.0 Windows 10 x64 Edition Windows 10 x64 Edition回复
  2. #2

    要不要加个游戏好友一起讨伐 Boss 什么的?

    EMT3年前 (2021-03-17) Google Chrome 89.0.4389.90 Google Chrome 89.0.4389.90 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 可以的,我游戏ID在博客首页的图片里有,加那个就行。

      LALA3年前 (2021-03-17) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
  3. #3

    udp2raw的跨平台预编译文件,这个解压出来貌似没有 udp2raw_mp_nolibnet.exe,我尝试把命令修改为压缩包里有的 udp2raw_mp 和 udp2raw_mp_wepoll 运行命令,但是 powershell 窗口都自动关闭了。是什么原因呢?

    EMT3年前 (2021-03-17) Google Chrome 89.0.4389.90 Google Chrome 89.0.4389.90 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 直接用udp2raw_mp.exe就可以了,是同一个东西,新版默认去掉了后面的这个_nolibnet。
      运行自动关闭,你把运行的日志发上来看看,如果是no matched device found…这种错误,看这个wiki解决:https://github.com/wangyu-/udp2raw-multiplatform/wiki/windows%E7%94%A8%E6%88%B7%E6%B3%A8%E6%84%8F%E4%BA%8B%E9%A1%B9

      LALA3年前 (2021-03-17) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
      • 对于 Netch 不能加速 NX 客户端有个更好的解决方案:绑定一个美区的 steam 账号,用 steam 来登陆冒冒。这样既免除了输入账号密码的繁琐,又可以使用 Netch 加速。

        EMT3年前 (2021-03-17) Google Chrome 89.0.4389.90 Google Chrome 89.0.4389.90 Windows 10 x64 Edition Windows 10 x64 Edition回复
  4. #4

    对NAT较为严格的游戏 并不适用 比如gta5 :cry:

    五指3年前 (2021-04-03) Google Chrome 89.0.4389.114 Google Chrome 89.0.4389.114 Windows 10 x64 Edition Windows 10 x64 Edition回复
  5. #5

    我用kcptun->udp2raw 加速tcp,用tinymappe->speederv2->udp2raw 加速udp. 进出只用一个ss就ok :oops: :oops:

    Qx633年前 (2021-04-08) Google Chrome 89.0.4389.114 Google Chrome 89.0.4389.114 Windows 10 x64 Edition Windows 10 x64 Edition回复
  6. #6

    哦,对了这些配置直接扔到路由里了,用netch直接连路由就ok,很方便,不用开机弄4个窗口加速tcp和udp。

    Qx633年前 (2021-04-08) Google Chrome 89.0.4389.114 Google Chrome 89.0.4389.114 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 直接扔路由里面是肯定要方便不少的。

      LALA3年前 (2021-04-08) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
  7. #7

    拉拉,bbr需要装吗

    阿尔托莉雅3年前 (2021-05-05) Google Chrome 90.0.4430.93 Google Chrome 90.0.4430.93 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 不需要,开的话也不影响什么。

      LALA3年前 (2021-05-06) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
      • :oops: 谢谢拉拉
        想增加国内中转机,失败了。求路子 :cry:

        阿尔托莉雅3年前 (2021-05-07) Google Chrome 90.0.4430.93 Google Chrome 90.0.4430.93 Windows 10 x64 Edition Windows 10 x64 Edition回复
        • 中转很多方法和工具啊,你用的哪种方法,iptables么。

          LALA3年前 (2021-05-07) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
          • 对的,用的iptables,将国内机端口→国外vps的端口上。然后在powershell里面将国内vpsip换成了国内机的ip,显示一直在握手 :eek: 。不知道哪里有问题

            阿尔托莉雅3年前 (2021-05-07) Google Chrome 90.0.4430.93 Google Chrome 90.0.4430.93 Windows 10 x64 Edition Windows 10 x64 Edition
          • 把iptables换成rinetd试试看。

            LALA3年前 (2021-05-07) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition
          • 我试试谢谢。有个疑问,转发后在powershell使用中转服务器的ip吗? :roll:

            阿尔托莉雅3年前 (2021-05-07) Google Chrome 90.0.4430.93 Google Chrome 90.0.4430.93 Windows 10 x64 Edition Windows 10 x64 Edition
          • 不好意思哈,我刚才仔细看了一下,发现一个问题。。。
            如果你是按照我这篇文章里面用icmp伪装的话,单纯的用iptables或者rinetd是不能转发的。如果要转发icmp可能需要一点魔法。。。

            LALA3年前 (2021-05-07) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition
  8. #8

    大大是什么区的阿,我当时就是看了KUNTUN的文章自建梯子入GMS坑的,现在偶尔还会用这个方式登陆。有时间的话一起玩阿~
    今天看到这个更新了,打算回去弄弄哈哈 :mrgreen:

    TrustyPatches3年前 (2021-05-20) Google Chrome 90.0.4430.212 Google Chrome 90.0.4430.212 GNU/Linux x64 GNU/Linux x64回复
    • 我在NAReboot,准备6月9号更新肝一个夜行,在一个区的话可以加我好友一起肝。

      LALA3年前 (2021-05-24) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
      • 我也是NAR区,玩得比较佛系哈哈有空才玩,是一个区呢

        TrustyPatches3年前 (2021-05-31) Google Chrome 91.0.4472.77 Google Chrome 91.0.4472.77 GNU/Linux x64 GNU/Linux x64回复
        • 我也不是特别肝,一天就玩几小时吧,你方便的话留个游戏ID呗,我加你好友。或者加我博客首页上面那个ID。

          LALA3年前 (2021-06-03) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
          • 不好意思昨天才考完试这段时间都没看,今天登游戏发现大更新了 :cry:
            下次上线的时候我加你吧,玩得很休闲半年了才215级。
            早上试了下,一切都顺利(和文章里的运行结果一致),就最后一步netch那里设置完后延迟是0~1ms,然后打开启动器就一直在转圈也不出来Play启动的界面 :grin:
            这种方法跟之前https://lala.im/6523.html里的方法延迟会改善一些吗,如果延迟一样的话那我还是不折腾就用原来的方案了。。

            TrustyPatches3年前 (2021-06-11) Google Chrome 91.0.4472.77 Google Chrome 91.0.4472.77 Windows 10 x64 Edition Windows 10 x64 Edition
          • 新的主要是解决阻断问题,延迟都是差不多的,如果你那边没有阻断的情况就用原来的方案也可以。

            LALA3年前 (2021-06-11) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition
  9. #9

    大佬您好 我想按您的教程加速新枫之谷 然后按步骤执行“到启动shadowsocks:”的时候提示
    “error: , : file: /usr/lib/python2.7/xmlrpclib.py line: 800

    我尝试下面的教程启动ktptun也是一样的提示 请问是不是还有哪些文件没有安装。。

    mao3年前 (2021-07-24) Google Chrome 91.0.4472.164 Google Chrome 91.0.4472.164 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 看样子是supervisor的问题,可能和这个相关:https://github.com/Supervisor/supervisor/issues/48
      你要是会用systemd的话可以换成systemd来守护ss和kcptun的进程。或者试试下面的办法能解决不:
      systemctl restart supervisor
      supervisorctl status
      实在不行重启一遍服务器应该就可以了。

      LALA3年前 (2021-07-30) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
  10. #10

    好像被吞了一部分 是
    “error: , : file: /usr/lib/python2.7/xmlrpclib.py line: 800

    mao3年前 (2021-07-24) Google Chrome 91.0.4472.164 Google Chrome 91.0.4472.164 Windows 10 x64 Edition Windows 10 x64 Edition回复
  11. #11

    很受用 马一下 虽然短期内用不到 之后试着自己试验一下 :mrgreen:

    假的2年前 (2021-12-26) Safari 15.1 Safari 15.1 Mac OS X  10.15.6 Mac OS X 10.15.6回复
  12. #12

    :mrgreen: 感谢博主的教程,请问博主有遇到过Netch进程代理模式退出商城掉线的情况吗?似乎使用WinTUN的代理\绕过IP的模式没有这个问题,但这个方法还是不如进程代理舒服

    SP2年前 (2022-01-23) Google Chrome 97.0.4692.71 Google Chrome 97.0.4692.71 Windows 10 x64 Edition Windows 10 x64 Edition回复
    • 最近经常遇到。。。我还在纳闷是咋回事,以前是没这个问题的,我一直以为是nx的服务器问题。。
      我之前用netch的旧版本没遇到过,听你这么一说感觉像是netch的问题了,你下一个netch的旧版本试试看?

      LALA2年前 (2022-01-26) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
      • 好像确实是这样,换了1.8.2版本的Netch就好了 :oops:

        SP2年前 (2022-01-27) Google Chrome 97.0.4692.99 Google Chrome 97.0.4692.99 Windows 10 x64 Edition Windows 10 x64 Edition回复
      • 又试了一下,1.9.0应该是最后一个还能完美用的版本,从1.9.1开始更新了redirector,估计哪里改了导致出了问题

        SP2年前 (2022-01-27) Google Chrome 97.0.4692.99 Google Chrome 97.0.4692.99 Windows 10 x64 Edition Windows 10 x64 Edition回复
        • 感谢测试,有心了,这就降级到1.9.0去。

          LALA2年前 (2022-01-29) Google Chrome 86.0.4240.198 Google Chrome 86.0.4240.198 Windows 10 x64 Edition Windows 10 x64 Edition回复
  13. #13

    udp2raw没法正常启动,看日志在执行iptables时报invalid argument,怀疑是内核配置问题,系统版本是Ubuntu 18.04,有一个解决方案说是2.6.20之后的内核的发行版本把所有的feature都编译成了模块,需要在core net filter configuration中配置state match后还需要在ip:netfilter configuration选上conntract,然而我根本没找到这个位置..

    那方贤7个月前 (09-23) Google Chrome 116.0.0.0 Google Chrome 116.0.0.0 Windows 10 x64 Edition Windows 10 x64 Edition回复
  14. #14

    给你发工单了~麻烦回复一下~

    SilentSmile4个月前 (01-03) Google Chrome 119.0.0.0 Google Chrome 119.0.0.0 Windows 10 x64 Edition Windows 10 x64 Edition回复

分享创造快乐

广告合作资源投稿