@acertemper
2017-04-20T11:38:05.000000Z
字数 4000
阅读 1002
莫大侠安卓版是一款由触动精灵开发的陌陌账号注册工具,主要针对目前流行的手机号码与QQ跳转注册陌陌账号,适用于逍遥安卓模拟器平台。莫大侠安卓版是一款全自动陌陌账号注册工具,系统自动下载头像、填写昵称、修改性别、自动获取手机号码、验证码等,能够帮您提升工作效率。
- 软件名称:莫大侠安卓版
- 软件功能:全自动注册陌陌账号
- 当前版本:1.0.0
- 最后更新日期:2017-04-20
- 软件作者:364092@qq.com
- 开发平台:触动精灵
- 适用设备:逍遥安卓模拟器
- 触动精灵安卓版v2.2.1及以上版本
- 逍遥模拟器3.0.0及以上版本
- 模拟器屏幕分辨率:width=400 * height=700 160DPI
- 内存:512M以上
- CPU:1核以上
- 陌陌安卓版7.6
- QQ安卓版,用来登录QQ账号
- QQ超人打码账号一个
备注:除了触动精灵安卓版需要在官网下载,其他软件都可以在逍遥市场下载。
触动精灵下载地址:http://www.touchsprite.com/touchsprite
逍遥模拟器下载地址:http://www.xyaz.cn/
- QQ超人打码账号一个
- 星辰接码账号1个
- QQ号码若干个




1.登录星辰接码平台注册账号:http://xingchenma.com:9000/
2.给账号充值,目前收取一个手机验证码为0.5元。
3.60码官网地址:http://www.60ma.net/,如有需要,请自行前往注册
1.依次在手机上安装QQ,陌陌,触动精灵安卓版
2.下载莫大侠安卓版安装二位码到模拟器相册中。二维码地址:http://gongzhuxiao.cn/modaxia.png,不会下载图片到相册,请到逍遥模拟器论坛去咨询。
![]()
3. 启动触动精灵,进入主页面
4. 在主页面点击顶部+号,选择扫一扫,打开相机
![]()
5. 点击相册.
![]()
6. 选择刚才下载的莫大侠二维码,系统自动进入安装界面
![]()
7. 安装完成如下图
- 将准备好的QQ账号,保存到模拟器共享图片根目录
- 单击浮窗启动启动莫大侠安卓版
- 设置好QQ超人打码账号
- 点击最底部“确定按钮”开始注册陌陌账号。
- 单击浮窗启动启动莫大侠安卓版
- 注册通道选择:手机注册
- 接码平台根据自己情况选择
- 接码区域支持中国大陆与美国手机号码
- 卡商ID不知道如何填写请填空,完成后点击“确定按钮”,开始注册陌陌账号。
莫大侠场安卓版是一款陌陌账号注册工具,名字没有什么特别意思,在开始制作的时候,实在想不出什么好名字,因为是关于陌陌营销的工具软件,遂以莫大侠为名,仅此而己。
这个应用是我采用TouchSprite编写的第三个应用,其实使用TouchSprite时间并不长,之前一直用的是按键精灵,虽然很简单,但是总感觉有些别扭,按键的工程师们确实太过尽力,封装了太多的实用功能,对于小白用户上手确实非常快。
而TouchSprite基于LUA的灵活性,才能让我找到Programer的感觉,所以当我发现TouchSprite后,果断就放弃了按键精灵,并不是说按键精灵不好,只是觉得TouchSprite更加适合我一些。
local width,height = getScreenSize();if width~=400 and height~=400 then dialog("主淫,请将模拟器分辨坏设置为400 * 700 160DPI", 0) lua_exit() nLog("") end
if isFileExist(Helper.File.QQCodeAccount) == false or readFileString(Helper.File.QQCodeAccount)=="" then nlog("") end
local QQAccountList = readFile(Helper.File.QQList)
QQRegister()
table.remove(QQAccountList,1)writeFile(Helper.File.QQList,QQAccountList,"w")
function findColor(color,area,d,x1,y1,x2,y2,delay)local _Count = 0local _FindCount = delay or 50local _x = -1local _y = -1while (true) domSleep(100)_x,_y = findMultiColorInRegionFuzzy(color, area,d, x1, y1, x2, y2)if _x ~= -1 and _y ~= -1 thenbreakendif _Count > _FindCount thenbreakelse_Count = _Count + 1nLog("find-> ".._Count)endendreturn _x,_yend
function Action(oj,timer)local status = truefor key,value in pairs(oj) doif key > 1 thenHelper.ShowLog(oj[1].title,oj[key].step)status = oj[key].action()if status == false then return false endmSleep(timer)endendreturn statusend
function Start(app)local _appid = ''local _ret = truefor var = 1,500 do_appid = frontAppBid();if _appid == app thenbreakendmSleep(100);endif _appid ~= app then_ret = falseendreturn _retend
GetQQVerificationCode = function()local filepath = Helper.File.VerificationCodePathmSleep(1000)snapshot(filepath, 134, 81, 264, 134);mSleep(1000)local CodeAccountString = readFileString(Helper.File.QQCodeAccount)local arr = strSplit(CodeAccountString,"----")local ret = recv_bytes(arr[1],arr[2],57162,filepath)local verificationcode = ""if ret ~= "" thenif json.decode(ret).info == 1 thenverificationcode = json.decode(ret).resultendendreturn verificationcodeend
--获取随机网名GetRndNetName = function()local url = Helper.Config.Domain.."netname.txt"local status,res = Helper.GetHttp(url)local NetName = 'Sunny Li'if status thenlocal arrName = strSplit(res,"\n")NetName = arrName[math.random(1,#arrName)]endreturn NetNameend
--下载随机头像function DownloadRndImg()local status,img = Helper.GetHttp("http://gongzhuxiao.cn/img.ashx?ver=1")if status thenlocal SavePath = "/sdcard/DCIM/"..os.time()..".jpg"Helper.DownFile(img,SavePath)saveImageToAlbum(SavePath)endend
runApp(bid) 稳定性很差,建议少用