TC官方合作论坛

 找回密码
 立即注册
查看: 3679|回复: 19

[问题] 脚本输出有错误,回合制游戏。新水浒q传。

[复制链接]
发表于 2014-12-4 03:02:38 | 显示全部楼层 |阅读模式

马上加入TC

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
点了开始运行后,

显示
>错误:E:\新建文件夹 (2)\dhsh\我的脚本\我的脚本\我的脚本.t 行号:7 错误信息:(x,y)是错误的实参数列表,可能是参数名重定义,或者错误的默认值

我有查到有人家说x,y没有定义,要放在空间内,
可是我太笨,还是不懂怎么弄,求大神指点。

空间 我的脚本
//默认空间
线程句柄
功能 自动打怪()
    x,y,x1,y1
    循环(真)
        如果(图像.找图(0,0,1024,768,"rc:自动.bmp",#050505,0,9,0,x,y)==-1)
            鼠标.移动(-53,-195)//向左
            鼠标.左键单击(1)
            辅助.等待(1000)
            鼠标.移动(116,-533)//向右
            鼠标.左键单击(1)
            辅助.等待(1000)
        否则
            如果(图像.找图(0,0,1024,768,"rc:自动.bmp",#050505,0,9,0,x1,y1)==-1)
                鼠标.移动(x,y)//点击自动
                鼠标.左键单击(1)   
            如果结束
        循环结束
    功能结束
    //开始按钮_点击操作
功能 开始_点击()
    线程句柄=线程.开启("我的脚本.自动打怪","")
功能结束
//退出按钮_点击操作
功能 退出_点击()
    线程.关闭(线程句柄)
    辅助.退出()
功能结束

功能 热键0_热键()//启动
    //这里添加你要执行的代码
    我的脚本.开始_点击()
功能结束

功能 热键1_热键()//退出
    //这里添加你要执行的代码
    我的脚本.退出_点击()
   
功能结束
空间结束
//空间结束语句
回复

使用道具 举报

发表于 2014-12-4 10:35:08 | 显示全部楼层

  1. #include"login.t"
  2. namespace sh

  3. var self

  4. function mminit(z)//插件初始化
  5.     main.ms[z]=com("mm.red")
  6.     if(type.vartype(main.ms[z])!="插件")
  7.         help.messagebox("插件对象创建失败")
  8.         return 0
  9.     endif
  10.     if(main.ms[z].ver()!="5.1423")
  11.         edit.settext("edit4"&(z+1),"插件版本不符:"&main.ms[z].ver())
  12.         return 0
  13.     endif
  14.     ret=main.ms[z].Reg("大漠API_KEY","sh")
  15.     if(ret==0)
  16.         edit.settext("edit4"&(z+1),"后台功能初始化失败:"&ret)
  17.         return 0
  18.     endif
  19.     edit.settext("edit4"&(z+1),"后台功能初始化成功")   
  20.     bindtime=system.gettickcount()
  21.     main.ms[z].SetShowErrorMsg(0)
  22.     main.ms[z].ForceUnBindWindow(main.hWnds[z])
  23.     ret = main.ms[z].BindWindowEx(main.hWnds[z],"gdi2","dx.mouse.api","dx.keypad.api","",103)
  24.     if(ret==0)
  25.         edit.settext("edit4"&(z+1),"窗口绑定失败:"&main.ms[z].GetLastError())
  26.         return 0
  27.     endif
  28.     edit.settext("edit4"&(z+1),"窗口绑定成功,耗时"&(system.gettickcount()-bindtime)&"毫秒")
  29.     main.ms[z].SetShowErrorMsg(0)
  30.     if(main.ms[z].SetDict(0,"font.dict")==0)
  31.         edit.settext("edit4"&(z+1),"字库设置失败:"&main.ms[z].GetLastError())
  32.         return 0
  33.     endif   
  34.     //main.ms[z].DownCpu(50)
  35.     return 1
  36. endfunction

  37. function enumhwnd()//枚举窗口句柄
  38.     hwnds=system.enum("新水浒Q传",0)                                                                        //按标题枚举
  39.     str.split(hwnds,"|",hwnds)                                                                                        //分割枚举到的窗口
  40.     var len,Caption                                                                                                                //申明变量用来保存窗口数量,窗口标题
  41.     arraysp.size(hwnds,len)                                                                                                //获取窗口数量
  42.     for(i=0;i<len;i++)
  43.         if(str.findstr(window.getwindowtype(hwnds[i]),"fsgamehero")<0)        //如果窗口类名不符合
  44.             continue                                                                                                        //直接略过
  45.         endif
  46.         Caption=window.getwindowcaption(hwnds[i])                                                //读取窗口标题
  47.         if(str.findstr(Caption," ")<0)                                                                        //如果窗口标题不符合
  48.             continue                                                                                                        //直接略过
  49.         endif
  50.         str.split(Caption," ",Caption)                                                                        //将标题分割
  51.         var CaptionLen                                                                                                        //标题分割出来的数组长度
  52.         arraysp.size(Caption,CaptionLen)                                                                //赋值
  53.         if(CaptionLen!=6)                                                                                                        //长度不等于6[游戏名,标识,版本号,大区,服务器,角色名]
  54.             continue                                                                                                        //略过
  55.         endif
  56.         arraysp.add(main.hWnds,hwnds[i],1)                                                                //添加窗口句柄
  57.         arraysp.add(main.pName,Caption[5],1)                                                        //添加角色名称
  58.     endfor
  59.     var GameWindowCount                                                                                                        //游戏窗口数量
  60.     arraysp.size(main.hWnds,GameWindowCount)                                                        //获取游戏窗口数量
  61.     for(i=0;i<GameWindowCount;i++)
  62.         edit.settext("edit1"&(i+1),main.hWnds[i])                                                //显示窗口句柄
  63.         edit.settext("edit2"&(i+1),main.pName[i])                                                //显示角色名称
  64.         edit.settext("edit3"&(i+1),"未设置")                                                        //显示角色名称
  65.         edit.settext("edit4"&(i+1),"窗口初始化")                                                //显示角色名称
  66.     endfor
  67.     return GameWindowCount                                                                                                //函数执行完毕,返回多开数量
  68. endfunction

  69. function NetTime()//获取网络上的时间
  70.     var data,arrlen,year,month,day,hrs,min,sec,DateTime
  71.     data=net.urlgetnetrequest("http://www.beijing-time.org/time.asp",6)//访问网址获得ANSI编码的数据
  72.     //t0=new Date().getTime(); nyear=2014; nmonth=10; nday=11; nwday=6; nhrs=10; nmin=11; nsec=58;
  73.     if(data=="")
  74.         help.messagebox("网络连接失败")
  75.         return "0000-00-00 00:00:00"
  76.     endif
  77.     data=str.strcut(data,str.findstr(data,"nyear="),true)//nyear=2014;\r\nnmonth=10;\r\nnday=11;\r\nnwday=6;\r\nnhrs=10;\r\nnmin=11;\r\nnsec=58;
  78.     data=str.replace(data,";","")//去掉分号
  79.     data=str.replace(data,"=","\r\n")//"="变成换行
  80.     str.split(data,"\r\n",data)//按换行符分割成数组
  81.     arraysp.size(data,arrlen)//得到数组大小
  82.     if(arrlen!=14)
  83.         return sh.NetTime()
  84.     endif
  85.     year        =data[1]
  86.     month        =data[3]
  87.     day                =data[5]
  88.     hrs                =data[9]
  89.     min                =data[11]
  90.     sec                =data[13]
  91.     data=null
  92.     DateTime=year&"-"&month&"-"&day&" "&hrs&":"&min&":"&sec
  93.     traceprint("当前网络时间: "&DateTime)
  94.     return DateTime
  95. endfunction

  96. //登录
  97. var LastTime=0
  98. function Login()
  99.     if(control.domodal("login")!=1)
  100.         help.exit()
  101.     endif
  102.     exptime=login.zcb.API_GetExpTime()
  103.     if(str.left(exptime,6)!="992001")
  104.         tip=help.readini("RegErrorCode",str.left(exptime,6),system.getprocesspath()&"res\\Config.ini")
  105.         help.messagebox(tip)
  106.         help.exit()
  107.     endif
  108.     exptime=str.aesencrypt(str.right(exptime,19),"bnEars")
  109.     LastTime=datetime.diff("n","2015-01-01 00:00:00",str.aesdecrypt(exptime,"bnEars"))
  110.     statictext.settext("BackGround","到期时间:"&str.aesdecrypt(exptime,"bnEars"))
  111.     timer.register("timerreg",60*1000)
  112. endfunction

  113. //定时检测到期时间
  114. function timerreg_ontime()
  115.     now=datetime.diff("n","2015-01-01 00:00:00",sh.NetTime())
  116.     countdown=LastTime-now//倒计时秒
  117.     statictext.settext("countdown","剩余可用分钟:"&countdown)
  118.     if(countdown<0)
  119.         help.messagebox("使用到期,请续费")
  120.         sh.Close_click()
  121.     endif
  122. endfunction

  123. function init()//初始化
  124.     //设置路径
  125.     system.setcurrentpath(system.getprocesspath()&"\\res")
  126.     //
  127.     sh.Login()
  128.     //self.handle
  129.     self = window.getmyhwnd()
  130.     //裁剪窗口
  131.     sh.cutwindow(self,476,200)
  132.     //按钮背景
  133.     button.setbkimage("Close","WinBox_Close.bmp")
  134.     button.setbkimage("Min","WinBox_Min.bmp")
  135.     //button.setbkimage("Set","WinBox_Set.bmp")
  136.     button.setbkimage("Set","Btn_Login.bmp",4)
  137.     //枚举窗口
  138.     sh.enumhwnd()
  139. endfunction

  140. function cutwindow(hWnd,width,height)//裁剪窗口
  141.     var WinX,WinY,ClientX,ClientY
  142.     window.getwindowpos(hWnd,WinX,WinY)
  143.     window.getclientrect(hWnd,ClientX,ClientY,0,0)
  144.     hr=dllcall("gdi32.dll","int","CreateRectRgn","int",ClientX-WinX,"int",ClientY-WinY,"int",ClientX-WinX+width,"int",ClientY-WinY+height)
  145.     dl=dllcall("user32.dll","int","SetWindowRgn","int",hWnd,"int",hr,"bool",true)
  146. endfunction

  147. function Close_click()//退出
  148.     thread.beginthread("sh.Exit","")
  149. endfunction

  150. function Min_click()//最小化
  151.     window.setwindowmin(self)
  152. endfunction

  153. function Set_click()//设置
  154.     if(button.gettext("Start")=="开始")
  155.         sh.cutwindow(self,476,350)
  156.         button.settext("Start","保存")
  157.     else
  158.         sh.cutwindow(self,476,200)
  159.         button.settext("Start","开始")
  160.     endif
  161. endfunction

  162. function Start_click()//开始
  163.     if(button.gettext("Start")=="开始")
  164.         if(main.sydtapi=="")
  165.             return 0
  166.         endif
  167.         mainthread=thread.beginthreadex("main.Main","","main.Destory","")
  168.     else
  169.         //保存
  170.     endif
  171. endfunction

  172. function sh_pretranslatemessage(hwnd,message,wParam,lParam,time,x,y)//消息路由
  173.     if(message == 512)//鼠标移动
  174.         if(window.getmousemovewndhand()!=control.gethandle("BackGround"))
  175.             return false
  176.         endif
  177.         dllcall("user32.dll","Long","ReleaseCapture")
  178.         window.sendmessage(self,#A1,2,1)
  179.     endif
  180.     return false
  181. endfunction

  182. function Exit()//退出
  183.     for(i=0;i<6;i++)
  184.         if(main.checkThreads[i]!=null)
  185.             thread.closethread(main.checkThreads[i])
  186.         endif
  187.         if(main.taskThreads[i]!=null)
  188.             thread.closethread(main.taskThreads[i])
  189.         endif
  190.         if(main.ms[i]!=null)
  191.             main.ms[i].UnBindWindow()
  192.         endif
  193.         if(edit.gettext("edit4"&(i+1))=="")
  194.             continue
  195.         endif
  196.         edit.settext("edit4"&(i+1),"停止,准备退出")
  197.     endfor
  198.     main.hWnds=null
  199.     main.pName=null
  200.     main.ms=null
  201.     main.taskThreads=null
  202.     main.checkThreads=null
  203.     help.exit()
  204. endfunction

  205. function sydtfunc_selectchanged()//答题功能选择
  206.     select(combo.getcursel("sydtfunc"))
  207.         case 0://题分查询
  208.         statictext.settext("sydttext","格式 帐号/密码 如:xx0001/123456")
  209.         case 1://帐号注册
  210.         statictext.settext("sydttext","格式 帐号/密码 如:xx0001/123456")
  211.         case 2://充值题分
  212.         statictext.settext("sydttext","格式 帐号/充值卡 如:xx0001/591E873A99F85AE")
  213.         case 3://自主扣分
  214.         statictext.settext("sydttext","格式 帐号/密码/分数 如:xx0001/123456/10")
  215.         case 4://答题登录
  216.         statictext.settext("sydttext","格式 帐号/密码 如:xx0001/123456")
  217.     endselect
  218. endfunction

  219. function sydtbtn_click()//答题功能执行
  220.     var p,sendstr
  221.     if(str.findstr(edit.gettext("sydtedit"),"/")<=0)
  222.         edit.settext("sydtresult","格式错误!")
  223.         return 0
  224.     endif
  225.     str.split(edit.gettext("sydtedit"),"/",p)
  226.     select(combo.getcursel("sydtfunc"))
  227.         case 0://题分查询
  228.         sendstr=str.format("getpoints/username/%s/password/%s",p[0],p[1])
  229.         case 1://帐号注册
  230.         sendstr=str.format("register/username/%s/password/%s/author/q273814",p[0],p[1])
  231.         case 2://充值题分
  232.         sendstr=str.format("charge/username/%s/cards/%s",p[0],p[1])
  233.         case 3://自主扣分
  234.         sendstr=str.format("ownpoints/username/%s/password/%s/points/%s/author/q273814",p[0],p[1],p[2])
  235.         case 4://答题登录
  236.         sendstr=str.format("login/username/%s/password/%s/mode/1",p[0],p[1])
  237.     endselect
  238.     sy=com("sy.dt")
  239.     ret=sy.Send(sendstr,"")
  240.     if(ret==1)
  241.         ret="成功"
  242.         main.sydtapi=sy.send("getmyapi/username/"&p[0]&"/password/"&p[1])
  243.     endif
  244.     sy=null
  245.     edit.settext("sydtresult",ret)
  246. endfunction


  247. function destroy()
  248.     login.zcb.API_LoginOut()
  249. endfunction

  250. endnamespace

  251. namespace main

  252. var            hWnds=array[0] //窗口句柄数组
  253. var            pName=array[0] //角色名称数组
  254. var                   ms=array[6] //插件数组
  255. var          mainthread=0                  //线程句柄
  256. var  taskThreads=array[6] //主线程数组
  257. var checkThreads=array[6] //检测线程数组
  258. var sydtapi="顺逸答题API_KEY"

  259. function Main()//入口函数
  260.     var WinCount
  261.     arraysp.size(hWnds,WinCount)
  262.     for(z=0;z<WinCount;z++)
  263.         if(taskThreads[z]==null)
  264.             taskThreads[z]=thread.beginthread("main.start",z)
  265.         endif        
  266.     endfor
  267. endfunction

  268. function Destory()//摧毁
  269. endfunction

  270. function start(z)//启动
  271.     edit.settext("edit4"&(z+1),"第"&(z+1)&"条多开线程启动")
  272.     if(sh.mminit(z)==0)
  273.         return 0
  274.     endif
  275.     checkThreads[z]=thread.beginthread("main.check",z)
  276.     //==========================
  277.     edit.settext("edit3"&(z+1),list.getchecktext("funclist"))
  278.     select(list.getchecktext("funclist"))
  279.         case "自动遇怪":
  280.         main.autofight(z)
  281.         default :
  282.         help.sleep(1000)
  283.     endselect
  284. endfunction

  285. function autofight(z)//自动战斗
  286.     help.sleep(1000)
  287.     for(i=0;i<31536000;i++)//循环60秒*60分*24小时*365天次
  288.         //自动走路
  289.         if(check.getstate("autorun")&&(i%10==0))//如果i是10的倍数
  290.             ms[z].MoveTo(740+help.randto(-4,4),8+help.randto(-4,4))
  291.             help.sleep(help.randto(20,50))
  292.             ms[z].LeftClick()
  293.             help.sleep(help.randto(20,50))
  294.             ret=ms[z].FindStr(353,288,447,311,"开始|取消","eeeeee-303030",1.0,0,0)
  295.             if(ret==1)//取消自动走路
  296.                 i--
  297.                 continue//直接重新循环 再来一次
  298.             endif
  299.         endif
  300.         //判断自动战斗按钮
  301.         ret=ms[z].FindStr(683,43,800,92,"自动","eeeeee-303030",1.0,0,0)
  302.         if(ret>-1)
  303.             ms[z].MoveTo(750+help.randto(0,30),70+help.randto(0,5))
  304.             help.sleep(help.randto(20,100))
  305.             ms[z].LeftClick()
  306.             help.sleep(help.randto(20,100))
  307.         endif
  308.         //间隔1秒
  309.         help.sleep(1000)
  310.     endfor
  311. endfunction

  312. function check(z)//检测线程函数
  313.     edit.settext("edit4"&(z+1),"第"&(z+1)&"条检测线程启动")
  314.     help.sleep(1000)
  315.     while(true)
  316.         help.sleep(1000)
  317.         edit.settext("edit4"&(z+1),"检测验证码")
  318.         help.sleep(1000)
  319.         var ret,intX,intY
  320.         if(ms[z].FindStr(0,0,800,600,"请选择","00fcf8-030303",1.0,intX,intY)<0)
  321.             ret=ms[z].GetLastError()
  322.             if(ret==0)
  323.                 edit.settext("edit4"&(z+1),"检测完毕,未发现验证码")
  324.             else
  325.                 edit.settext("edit4"&(z+1),"验证码检测异常:"&ret)
  326.             endif
  327.         else
  328.             thread.suspendthread(taskThreads[z])
  329.             edit.settext("edit4"&(z+1),"出现验证码,开始截取")
  330.             if(ms[z].Capture(150,240,700,400, "yzm"&z&".bmp")==0)
  331.                 edit.settext("edit4"&(z+1),"验证码截取失败")
  332.             else
  333.                 ret=main.getyzm(z)
  334.                 if(ret>0)
  335.                     ms[z].MoveTo(75+ret*140+help.randto(-10,10),350+help.randto(-10,10))
  336.                     help.sleep(help.randto(20,100))
  337.                     ms[z].LeftDoubleClick()
  338.                     help.sleep(help.randto(20,100))
  339.                 endif
  340.             endif
  341.             thread.resumethread(taskThreads[z])
  342.         endif
  343.     endwhile
  344. endfunction

  345. function getyzm(z)//识别验证码
  346.     sy=com("sy.dt")
  347.     //申明变量 发送字符串 资源字符串 资源ID 文件名
  348.     var sendstr,ResStr,ResId,filename
  349.     sendstr=str.format("sendvcode/myapi/%s/type/%s/timeout/%s/note/sh/author/q273814",sydtapi,"10005","60")
  350.     filename=system.getcurrentpath()&"yzm"&z&".bmp"
  351.     //发送验证码
  352.     //ResStr=dllcall(系统.获取当前路径()&"sy.dll","int","Send","Char *",sendstr,"Char *",filename)
  353.     ResStr=sy.Send(sendstr,filename)
  354.     if(str.left(ResStr,1)=="E")
  355.         edit.settext("edit4"&(z+1),"senderror")
  356.     else
  357.         ResId=ResStr
  358.         for(i=0;i<60;i++)
  359.             help.sleep(500)
  360.             //ResStr=dllcall(system.getcurrentpath()&"sy.dll","int","Send","Char *","getanswer/id/"&ResId,"Char *","")
  361.             ResStr=sy.Send("getanswer/id/"&ResId,"")
  362.             if(str.left(ResStr,7)!="WAITING")
  363.                 break
  364.             endif
  365.             edit.settext("edit4"&(z+1),str.replace(ResStr,"WAITING","稍等"))
  366.         endfor
  367.         if(str.left(ResStr,7)!="WAITING")
  368.             edit.settext("edit4"&(z+1),"答案:"&ResStr)
  369.             sy=null
  370.             return ResStr
  371.         endif
  372.         edit.settext("edit4"&(z+1),"验证码识别失败:"&ResStr)
  373.     endif
  374.     sy=null
  375.     return 0
  376. endfunction

  377. endnamespace

复制代码

回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:38:30 | 显示全部楼层

  1. namespace login

  2. var zcb

  3. //初始化
  4. function init()
  5.     sh.cutwindow(control.getchildhwnd("login"),300,150)
  6.     button.setbkimage("Btn_Login","Btn_Login.bmp",4,"login")
  7.     help.regdll("reg.dll",true)
  8.     help.regdll("mm.dll",true)
  9.     help.regdll("sy.dll",true)
  10.     zcb=com("regcom.register")
  11.     ret=zcb.AppInitialize("985BB093-BD6B-43B4-87F1-8F4532C84A09","Z1001632")
  12.     if(ret!=1)
  13.         help.messagebox("初始化失败")
  14.         help.exit()
  15.     endif
  16. endfunction

  17. //选择登录
  18. function check0_click()
  19.     statictext.setcolor("check0",#00ff00,1,"login")
  20.     statictext.setcolor("check1",#ff0000,1,"login")
  21.     edit.settext("pwdleft"," 密    码 :","login")
  22.     button.settext("Btn_Login","登录","login")
  23. endfunction

  24. //选择充值
  25. function check1_click()
  26.     statictext.setcolor("check1",#00ff00,1,"login")
  27.     statictext.setcolor("check0",#ff0000,1,"login")
  28.     edit.settext("pwdleft"," 充值卡 :","login")
  29.     button.settext("Btn_Login","充值","login")
  30. endfunction

  31. function userback_click()
  32.     help.cmd("http://user.84zcb.com",0)
  33. endfunction

  34. //退出
  35. function Close_click()
  36.     help.exit()
  37. endfunction

  38. //消息路由功能
  39. function login_pretranslatemessage(hwnd,message,wParam,lParam,time,x,y)
  40.     if(message == 512)//鼠标移动
  41.         if(window.getmousemovewndhand()!=control.gethandle("loginfrm","login"))
  42.             return false
  43.         endif
  44.         window.screentoclient(window.getmousemovewndhand(),x,y,x,y)
  45.         if(y>20)
  46.             return false
  47.         endif
  48.         dllcall("user32.dll","Long","ReleaseCapture")
  49.         window.sendmessage(control.getchildhwnd("login"),#A1,2,1)
  50.     endif
  51.     return false
  52. endfunction

  53. //登录按钮
  54. function Btn_Login_click()
  55.     var username=edit.gettext("username","login")
  56.     var password=edit.gettext("password","login")
  57.     if(button.gettext("Btn_Login","login")=="登录")
  58.         ret=zcb.API_Login(username,password)
  59.         tip=help.readini("RegErrorCode",ret,system.getprocesspath()&"res\\Config.ini")
  60.         group.settext("tip",tip,"login")
  61.         if(ret=="992001")
  62.             UID=username
  63.             control.closewindow("login",1)
  64.         else
  65.         endif
  66.     else
  67.         ret=zcb.API_Recharge(username,password)
  68.         tip=help.readini("RegErrorCode",ret,system.getprocesspath()&"res\\Config.ini")
  69.         group.settext("tip",tip,"login")
  70.     endif
  71. endfunction

  72. endnamespace

复制代码

回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:39:39 | 显示全部楼层

  1. 窗口 sh "新水浒Q传 墨墨辅助 V2.108" 0,0,529,401 背景颜色:0| 窗口初始化:sh.init|窗口销毁:sh.destroy|消息路由:sh.sh_pretranslatemessage|
  2. 标签 countdown "剩余可用分钟:" 6,170,206,185 字体:(MS Sans Serif,8388608,FFFFFFFF,-11,64)| |
  3. 时钟 timerreg 480,0,500,20 | 时钟:sh.timerreg_ontime|
  4. 编辑框 edit46 "" 316,139,476,159 只读:1| |
  5. 编辑框 edit45 "" 316,120,476,140 只读:1| |
  6. 编辑框 edit44 "" 316,101,476,121 只读:1| |
  7. 编辑框 edit43 "" 316,82,476,102 只读:1| |
  8. 编辑框 edit42 "" 316,63,476,83 只读:1| |
  9. 编辑框 edit41 "" 316,44,476,64 只读:1| |
  10. 编辑框 edit36 "" 237,139,317,159 只读:1| |
  11. 编辑框 edit35 "" 237,120,317,140 只读:1| |
  12. 编辑框 edit34 "" 237,101,317,121 只读:1| |
  13. 编辑框 edit33 "" 237,82,317,102 只读:1| |
  14. 编辑框 edit32 "" 237,63,317,83 只读:1| |
  15. 编辑框 edit31 "" 237,44,317,64 只读:1| |
  16. 编辑框 edit26 "" 118,139,238,159 只读:1| |
  17. 编辑框 edit25 "" 118,120,238,140 只读:1| |
  18. 编辑框 edit24 "" 118,101,238,121 只读:1| |
  19. 编辑框 edit23 "" 118,82,238,102 只读:1| |
  20. 编辑框 edit22 "" 118,63,238,83 只读:1| |
  21. 编辑框 edit21 "" 118,44,238,64 只读:1| |
  22. 编辑框 edit16 "" 39,139,119,159 数字:1|只读:1|对齐:1| |
  23. 编辑框 edit15 "" 39,120,119,140 数字:1|只读:1|对齐:1| |
  24. 编辑框 edit14 "" 39,101,119,121 数字:1|只读:1|对齐:1| |
  25. 编辑框 edit13 "" 39,82,119,102 数字:1|只读:1|对齐:1| |
  26. 编辑框 edit12 "" 39,63,119,83 数字:1|只读:1|对齐:1| |
  27. 编辑框 edit11 "" 39,44,119,64 数字:1|只读:1|对齐:1| |
  28. 编辑框 edit06 "6" 0,139,40,159 有效:0|对齐:1|背景颜色:15790320| |
  29. 编辑框 edit05 "5" 0,120,40,140 有效:0|对齐:1|背景颜色:15790320| |
  30. 编辑框 edit04 "4" 0,101,40,121 有效:0|对齐:1|背景颜色:15790320| |
  31. 编辑框 edit03 "3" 0,82,40,102 有效:0|对齐:1|背景颜色:15790320| |
  32. 编辑框 edit02 "2" 0,63,40,83 有效:0|对齐:1|背景颜色:15790320| |
  33. 编辑框 edit01 "1" 0,44,40,64 有效:0|对齐:1|背景颜色:15790320| |
  34. 编辑框 edit40 "执行日志" 316,25,476,45 有效:0|对齐:1|背景颜色:15790320| |
  35. 编辑框 edit30 "挂机功能" 237,25,317,45 有效:0|对齐:1|背景颜色:15790320| |
  36. 编辑框 edit20 "游戏角色" 118,25,238,45 有效:0|对齐:1|背景颜色:15790320| |
  37. 编辑框 edit10 "窗口句柄" 39,25,119,45 有效:0|对齐:1|背景颜色:15790320| |
  38. 编辑框 edit00 "ID" 0,25,40,45 有效:0|对齐:1|背景颜色:15790320| |
  39. 按钮 Start "开始" 403,163,468,191 | 鼠标单击:sh.Start_click|
  40. 按钮 Set "△" 340,1,385,25 | 鼠标单击:sh.Set_click|
  41. 按钮 Min "一" 385,1,430,25 字体:(-13,0,0,0,400,0,0,0,134,0,0,0,0,)| 鼠标单击:sh.Min_click|
  42. 按钮 Close "×" 430,1,475,25 字体:(-16,0,0,0,400,0,0,0,134,0,0,0,0,)| 鼠标单击:sh.Close_click|
  43. 标签 BackGround "到期时间:0000-00-00 00:00:00" 1,1,475,199 字体:(MS Sans Serif,0,FFFFFFFF,-11,64)| |
  44. 选项卡 tabSet 1,200,475,349 | |
  45. 选项卡页面 基本设置 背景颜色:16185078| |
  46. 选项卡页面结束
  47. 选项卡页面 功能设置 背景颜色:16185078| |
  48. 复选框 autorun "自动遇怪时使用自动走路" 138,101,287,121 是否选中:1| |
  49. 标签 Static0 "鼠标点击左侧列表框进行功能选择                                     在线挂机:此功能仅出现验证码的时候自动答题一个操作自动遇怪:答题后点击自动走路,出现怪物点击自动战斗 分解武器:暂不开放此功能" 138,9,430,103 | |
  50. 列表框 funclist "功能选择" "在线挂机|自动遇怪|分解武器|" 0,1,111,126 | |
  51. 选项卡页面结束
  52. 选项卡页面 技能设置 背景颜色:16185078| |
  53. 选项卡页面结束
  54. 选项卡页面 采集设置 背景颜色:16185078| |
  55. 选项卡页面结束
  56. 选项卡页面 答题设置 背景颜色:16185078| |
  57. 标签 Static1 "目前版本题分无需用户自己提供" 146,8,417,23 字体:(MS Sans Serif,255,FFFFFFFF,-12,64)| |
  58. 编辑框 sydtresult "返回结果" 24,85,344,105 只读:1|字体:(-12,0,0,0,400,0,0,0,134,0,0,0,0,MS Shell Dlg 2)|文本颜色:16711680|背景颜色:15790320| |
  59. 下拉框 sydtfunc "题分查询|帐号注册|充值题分|扣除题分|答题登录|" 24,11,101,32 下拉模式:1|初始选项:0| 选择改变:sh.sydtfunc_selectchanged|
  60. 按钮 sydtbtn "确定" 364,80,424,108 字体:(-12,0,0,0,400,0,0,0,134,0,0,0,0,MS Shell Dlg 2)| 鼠标单击:sh.sydtbtn_click|
  61. 编辑框 sydtedit "" 24,56,424,76 字体:(-12,0,0,0,400,0,0,0,134,0,0,0,0,MS Shell Dlg 2)| |
  62. 标签 sydttext "题分查询 格式:帐号/密码 如:xx0001/123456" 24,36,418,51 | |
  63. 选项卡页面结束
  64. 选项卡页面 其他设置 背景颜色:16185078| |
  65. 选项卡页面结束
  66. 选项卡结束
  67. 窗口结束
  68. 窗口 login "登录/充值" 0,0,300,152 | 窗口初始化:login.init|消息路由:login.login_pretranslatemessage|
  69. 标签 userback " 注册/改密" 70,19,130,34 字体:(MS Sans Serif,0,16711935,8,64)| 鼠标单击:login.userback_click|
  70. 分组框 tip "用户名不能为空" 31,87,270,107 字体:(-11,0,0,0,400,0,0,0,0,1,2,1,34,MS Sans Serif)|对齐:2|边框颜色:12639424|标题背景颜色:12639424|客户区颜色:12639424|标题颜色:255|分组框模式:1| |
  71. 标签 Close "X" 278,2,298,18 字体:(MS Sans Serif,255,8421376,-16,64)| 鼠标单击:login.Close_click|
  72. 按钮 Btn_Login "登录" 31,110,270,135 | 鼠标单击:login.Btn_Login_click|
  73. 编辑框 pwdleft " 密    码 :" 31,65,91,85 有效:0| |
  74. 编辑框 password "" 90,65,270,85 | |
  75. 标签 check1 " 充 值 " 37,19,72,34 字体:(MS Sans Serif,0,255,8,64)| 鼠标单击:login.check1_click|
  76. 标签 check0 " 登 录 " 2,19,37,34 字体:(MS Sans Serif,0,65280,-11,64)| 鼠标单击:login.check0_click|
  77. 编辑框 uidleft " 用户名 :" 31,40,91,60 有效:0| |
  78. 编辑框 username "" 90,40,270,60 | |
  79. 分组框 loginfrm "登录/充值" 0,0,300,150 字体:(-11,0,0,0,400,0,0,0,0,1,2,1,34,MS Sans Serif)|对齐:1|边框颜色:0|标题背景颜色:8421376|客户区颜色:12639424|标题颜色:16776960|分组框模式:1| |
  80. 窗口结束

复制代码
回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:40:54 | 显示全部楼层

  1. 8809FC00A2057EAABF52AA554AFD100$请$0.0.54$11
  2. 0811053F001144C909C7E0278488130$选$0.0.40$11
  3. 110223FF8908458AAA54BFA958A8110$择$0.0.50$11
  4. 7FE92524E4949292524BFF000000000000000000000049C9513225449A108427F910220C7E0$自动$0.0.91$11
  5. 3FE49092324A48490921243FE0000000008C9693124A08C00041FFC1002007F8$自动$0.0.94$12
  6. 02084109BFC420841083FF420840080001103D7C10FD00037CA8E510A237C300$开始$0.0.90$12
  7. 404FF9292527FE810801F920C7E400000082888820004FE5502A7D40A85513F8$取消$0.0.99$12

复制代码

回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:41:34 | 显示全部楼层

  1. [UserInfo]
  2. Remember=0
  3. Auto=0
  4. UserName=
  5. PassWord=
  6. [RegErrorCode]
  7. 102021=用户名已经存在
  8. 102022=邮箱已经存在
  9. 104062=QQ格式不正确
  10. 114041=邮箱和账号不匹配
  11. 204031=用户名或密码错误
  12. 204032=账号处于冻结状态
  13. 204033=账号未审核通过
  14. 204034=软件不允许试用
  15. 204035=已经达到本日试用次数上限
  16. 204036=登录失败
  17. 204037=会话已失效,请重新登录
  18. 204038=账号在该软件下的使用权被作者冻结了
  19. 204044=账号状态异常
  20. 214041=旧密码不正确
  21. 214061=新密码不正确
  22. 214062=密码输入不一致
  23. 224041=邮箱错误
  24. 234001=解绑失败
  25. 304041=充值卡不存在
  26. 304101=充值卡已经使用过
  27. 304102=充值卡目前无法使用
  28. 982021=软件使用时间已到
  29. 982022=客户端校验失败
  30. 992001=操作成功
  31. 994001=网络异常
  32. 994031=只允许终端用户使用
  33. 994032=您的账号已经在其他机器上登录
  34. 994033=您的账号已经下线
  35. 994034=客户端异常
  36. 994035=禁止使用该接口
  37. 994036=未设置过密码
  38. 994037=安全码不正确
  39. 994041=用户名不存在
  40. 994042=软件编号不存在
  41. 994043=未绑定软件
  42. 994044=软件作者被注销
  43. 994045=作者账号被冻结
  44. 994061=用户名格式不对
  45. 994062=密码格式不正确
  46. 994063=软件处于停用状态
  47. 995001=服务器异常
  48. 995002=暂时无法发送邮件
  49. 995003=随机数校验失败
  50. 995004=参数错误
复制代码
回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:42:35 | 显示全部楼层


  1. [ProjInfo]
  2. EnterFile=sh.t
  3. Language=1
  4. Version=4.430
  5. ExeIco=
  6. [DesignInfo]
  7. LockedCtrl=
  8. [Found/Replace]
  9. FoundNum=2
  10. Found[0]=rc:
  11. ReplaceNum=0
  12. Found[1]=timer.
  13. [VersionInfo]
  14. ProductVersion=2.116.0.0
  15. ProductName=TC
  16. FileDescription=TC
  17. FileVersion=2.116.0.0
  18. InternalName=TC
  19. CompanyName=墨墨辅助
  20. LegalCopyright=(C)<墨墨辅助>保留所有版权

复制代码

回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-12-4 10:45:37 | 显示全部楼层

看不懂啊,大哥,这是些什么。。。
回复 支持 反对

使用道具 举报

发表于 2014-12-4 10:52:26 | 显示全部楼层

呃 自动走路打野怪呃 完整的内容啊 每一个文件内容都粘贴出来了 虽然只是半成品
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-12-4 10:54:41 | 显示全部楼层
q273814 发表于 2014-12-4 10:52
呃 自动走路打野怪呃 完整的内容啊 每一个文件内容都粘贴出来了 虽然只是半成品 ...

难道要全部复制吗?能加q说吗? 790016308
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关闭

推荐上一条 /2 下一条

关闭

小黑屋|TC官方合作论坛 (苏ICP备18045623号)

GMT+8, 2024-5-10 15:53 , Processed in 0.043330 second(s), 23 queries .

Powered by 海安简单软件服务部

© 2008-2019 版权所有 保留所有权利

快速回复 返回顶部 返回列表