function split(szFullString, szSeparator) local nFindStartIndex = 1 local nSplitIndex = 1 local nSplitArray = {} while true do local nFindLastIndex = string.find (szFullString, szSeparator, nFindStartIndex) if not nFindLastIndex then nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len (szFullString)) break end nSplitArray[nSplitIndex] = string.sub (szFullString, nFindStartIndex, nFindLastIndex - 1) nFindStartIndex = nFindLastIndex + string.len (szSeparator) nSplitIndex = nSplitIndex + 1 end return nSplitArray end function xgxc(szpy, qmxg) for x = 1, #(qmxg) do xgpy = szpy + qmxg[x]["offset"] xglx = qmxg[x]["type"] xgsz = qmxg[x]["value"] xgdj = qmxg[x]["freeze"] if xgdj == nil or xgdj == "" then gg.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}}) else gg.addListItems({[1] = {address = xgpy, flags = xglx, freeze = xgdj, value = xgsz}}) end xgsl = xgsl + 1 xgjg = true end end function xqmnb(qmnb) gg.clearResults() gg.setRanges(qmnb[1]["memory"]) gg.searchNumber(qmnb[3]["value"], qmnb[3]["type"]) if gg.getResultCount() == 0 then gg.toast(qmnb[2]["name"] .. "开启失败") else gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) if gg.getResultCount() == 0 then gg.toast(qmnb[2]["name"] .. "开启失败") else sl = gg.getResults(999999) sz = gg.getResultCount() xgsl = 0 if sz > 999999 then sz = 999999 end for i = 1, sz do pdsz = true for v = 4, #(qmnb) do if pdsz == true then pysz = {} pysz[1] = {} pysz[1].address = sl[i].address + qmnb[v]["offset"] pysz[1].flags = qmnb[v]["type"] szpy = gg.getValues(pysz) pdpd = qmnb[v]["lv"] .. ";" .. szpy[1].value szpd = split(pdpd, ";") tzszpd = szpd[1] pyszpd = szpd[2] if tzszpd == pyszpd then pdjg = true pdsz = true else pdjg = false pdsz = false end end end if pdjg == true then szpy = sl[i].address xgxc(szpy, qmxg) end end if xgjg == true then gg.toast(qmnb[2]["name"] .. "开启成功,共修改" .. xgsl .. "条数据") else gg.toast(qmnb[2]["name"] .. "开启失败") end end end end function edit(orig,ret)_om=orig[1].memory or orig[1][1]_ov=orig[3].value or orig[3][1]_on=orig[2].name or orig[2][1]gg.clearResults()gg.setRanges(_om)gg.searchNumber(_ov,orig[3].type or orig[3][2])sz=gg.getResultCount()if sz<1 then gg.toast(_on.."开启失败")else sl=gg.getResults(720)for i=1,sz do ist=true for v=4,#orig do if ist==true and sl[i].value==_ov then cd={{}}cd[1].address=sl[i].address+(orig[v].offset or orig[v][2])cd[1].flags=orig[v].type or orig[v][3]szpy=gg.getValues(cd)cdlv=orig[v].lv or orig[v][1]cdv=szpy[1].value if cdlv==cdv then pdjg=true ist=true else pdjg=false ist=false end end end if pdjg==true then szpy=sl[i].address for x=1,#(ret)do xgpy=szpy+(ret[x].offset or ret[x][2])xglx=ret[x].type or ret[x][3]xgsz=ret[x].value or ret[x][1]xgdj=ret[x].freeze or ret[x][4]xgsj={{address=xgpy,flags=xglx,value=xgsz}}if xgdj==true then xgsj[1].freeze=xgdj gg.addListItems(xgsj)else gg.setValues(xgsj)end end xgjg=true end end if xgjg==true then gg.toast(_on.."开启成功")else gg.toast(_on.."开启失败")end end end function SearchWrite(Search, Write, Type) gg.clearResults() gg.setVisible(false) gg.searchNumber(Search[1][1], Type) local count = gg.getResultCount() local result = gg.getResults(count) gg.clearResults() local data = {} local base = Search[1][2] if (count > 0) then for i, v in ipairs(result) do v.isUseful = true end for k=2, #Search do local tmp = {} local offset = Search[k][2] - base local num = Search[k][1] for i, v in ipairs(result) do tmp[#tmp+1] = {} tmp[#tmp].address = v.address + offset tmp[#tmp].flags = v.flags end tmp = gg.getValues(tmp) for i, v in ipairs(tmp) do if ( tostring(v.value) ~= tostring(num) ) then result[i].isUseful = false end end end for i, v in ipairs(result) do if (v.isUseful) then data[#data+1] = v.address end end if (#data > 0) then gg.toast("搜索到"..#data.."条数据") local t = {} local base = Search[1][2] for i=1, #data do for k, w in ipairs(Write) do offset = w[2] - base t[#t+1] = {} t[#t].address = data[i] + offset t[#t].flags = Type t[#t].value = w[1] if (w[3] == true) then local item = {} item[#item+1] = t[#t] item[#item].freeze = true gg.addListItems(item) end end end gg.setValues(t) gg.toast("已修改"..#t.."条数据") gg.addListItems(t) else gg.toast("not found", false) return false end else gg.toast("Not Found") return false end end function split(szFullString, szSeparator) local nFindStartIndex = 1 local nSplitIndex = 1 local nSplitArray = {} while true do local nFindLastIndex = string.find(szFullString, szSeparator, nFindStartIndex) if not nFindLastIndex then nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, string.len(szFullString)) break end nSplitArray[nSplitIndex] = string.sub(szFullString, nFindStartIndex, nFindLastIndex - 1) nFindStartIndex = nFindLastIndex + string.len(szSeparator) nSplitIndex = nSplitIndex + 1 end return nSplitArray end function xgxc(szpy, qmxg) for x = 1, #(qmxg) do xgpy = szpy + qmxg[x]["offset"] xglx = qmxg[x]["type"] xgsz = qmxg[x]["value"] xgdj = qmxg[x]["freeze"] if xgdj == nil or xgdj == "" then gg.setValues({[1] = {address = xgpy, flags = xglx, value = xgsz}}) else gg.addListItems({[1] = {address = xgpy, flags = xglx, freeze = xgdj, value = xgsz}}) end xgsl = xgsl + 1 xgjg = true end end function xqmnb(qmnb) gg.clearResults() gg.setRanges(qmnb[1]["memory"]) gg.searchNumber(qmnb[3]["value"], qmnb[3]["type"]) if gg.getResultCount() == 0 then gg.toast(qmnb[2]["name"] .. "开启失败") else gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) gg.refineNumber(qmnb[3]["value"], qmnb[3]["type"]) if gg.getResultCount() == 0 then gg.toast(qmnb[2]["name"] .. "开启失败") else sl = gg.getResults(999999) sz = gg.getResultCount() xgsl = 0 if sz > 999999 then sz = 999999 end for i = 1, sz do pdsz = true for v = 4, #(qmnb) do if pdsz == true then pysz = {} pysz[1] = {} pysz[1].address = sl[i].address + qmnb[v]["offset"] pysz[1].flags = qmnb[v]["type"] szpy = gg.getValues(pysz) pdpd = qmnb[v]["lv"] .. ";" .. szpy[1].value szpd = split(pdpd, ";") tzszpd = szpd[1] pyszpd = szpd[2] if tzszpd == pyszpd then pdjg = true pdsz = true else pdjg = false pdsz = false end end end if pdjg == true then szpy = sl[i].address xgxc(szpy, qmxg) end end if xgjg == true then gg.toast(qmnb[2]["name"] .. "开启成功,共修改" .. xgsl .. "条数据") else gg.toast(qmnb[2]["name"] .. "开启失败") end end end end AA="模板作者:巡" function SearchWrite(Search, Write, Type) gg.clearResults() gg.setVisible(false) gg.searchNumber(Search[1][1], Type) local count = gg.getResultCount() local result = gg.getResults(count) gg.clearResults() local data = {} local base = Search[1][2] if (count > 0) then for i, v in ipairs(result) do v.isUseful = true end for k=2, #Search do local tmp = {} local offset = Search[k][2] - base local num = Search[k][1] for i, v in ipairs(result) do tmp[#tmp+1] = {} tmp[#tmp].address = v.address + offset tmp[#tmp].flags = v.flags end tmp = gg.getValues(tmp) for i, v in ipairs(tmp) do if ( tostring(v.value) ~= tostring(num) ) then result[i].isUseful = false end end end for i, v in ipairs(result) do if (v.isUseful) then data[#data+1] = v.address end end if (#data > 0) then gg.toast("✨开启成功✨"..#data.."") local t = {} local base = Search[1][2] for i=1, #data do for k, w in ipairs(Write) do offset = w[2] - base t[#t+1] = {} t[#t].address = data[i] + offset t[#t].flags = Type t[#t].value = w[1] if (w[3] == true) then local item = {} item[#item+1] = t[#t] item[#item].freeze = true gg.addListItems(item) end end end gg.setValues(t) else gg.toast("", false) return false end else gg.toast("") return false end end ----------------支持仿xs写法和指针写法------------------- ---------偏移写法 不懂勿动-------- --[[ 支持冻结,支持范围搜索 支持多种仿xs写法 范围搜索与普通写法一样 指针冻结在修改的那一行添加,true即可 仿xs模板: 不冻结 qmnb = { {["memory"] = 内存范围}, {["name"] = "功能名词"}, {["value"] = 主特征码, ["type"] = 数据类型}, {["lv"] = 1副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, {["lv"] = 2副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, {["lv"] = 3副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, } qmxg = { {["value"] = 修改数值, ["offset"] = 偏移量, ["type"] = 数据类型}, } xqmnb(qmnb) qmnb = { {["memory"] = 内存范围}, {["name"] = "功能名词"}, {["value"] = 主特征码, ["type"] = 数据类型}, {["lv"] = 1副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, {["lv"] = 2副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, {["lv"] = 3副特征码, ["offset"] = 偏移量, ["type"] = 数据类型}, } qmxg = { {["value"] = 修改数值, ["offset"] = 偏移量, ["type"] = 数据类型, ["freeze"] = true}, } xqmnb(qmnb) -- Jh内存: ['REGION_JAVA_HEAP'] = 2 Ch内存: ['REGION_C_HEAP'] = 1 Ca内存: ['REGION_C_ALLOC'] = 4 Cd内存: ['REGION_C_DATA'] = 8 Cb内存: ['REGION_C_BSS'] = 16 Ps内存:['REGION_PPSSPP'] = 262144 A内存: ['REGION_ANONYMOUS'] = 32 J内存: ['REGION_JAVA'] = 65536 S内存: ['REGION_STACK'] = 64 As内存: ['REGION_ASHMEM'] = 524288 V内存: ['REGION_VIDEO'] = 1048576 O内存 ['REGION_OTHER'] = -2080896 B内存: ['REGION_BAD'] = 131072 Xa内存: ['REGION_CODE_APP'] = 16384 Xs内存: ['REGION_CODE_SYS'] = 32768 A类搜: ['TYPE_AUTO'] = 127 B类搜: ['TYPE_BYTE'] = 1 E类搜: ['TYPE_DOUBLE'] = 64 D类搜: ['TYPE_DWORD'] = 4 F类搜: ['TYPE_FLOAT'] = 16 Q类搜: ['TYPE_QWORD'] = 32 W类搜: ['TYPE_WORD'] = 2 X类搜: ['TYPE_XOR'] = 8 ]] gg.alert("更新至10.0停更") gg.toast("二改死妈") STARS=gg.alert([[ ⭕倒卖死你妈 4.0更新内容 1.增加背包 2.增加头盔 3.增加衣服 4.增加枪械 5.增加素材 你们自己看吧 📩奉纯牛逼 🌐已删除无用功能 已添加其它 ❌️️多多反馈,做最好脚本 更新时间:2022年.10月.30日.11点 ]],'进入脚本','','复制Q号') if STARS == 3 then gg.copyText("2655530983") gg.toast("复制成功‼️") end function Main() menu = gg.choice({ '背包美化', '头盔美化', '衣服美化', '枪械美化', '素材功能', '特效美化', '其它美化', '退出脚本'}, nil,'奉纯轻体素材\n都给我低调点\n二改司马') if menu == 1 then A() end if menu == 2 then B() end if menu == 3 then D() end if menu == 4 then C() end if menu == 5 then E() end if menu == 6 then F() end if menu == 7 then G() end if menu == 8 then Exit() end XGCK=-1 end function A() menu1 = gg.multiChoice({ '幻视工兵背包', '蝴蝶结背包', '电音小丑背包', '感动恶魔背包', '小狗背包', '南瓜头背包', '狮王背包', '粉色猫咪背包', '火箭少女', '恐龙背包', '恶作剧背包', '企鹅背包', '恐龙背包', '返回上一页'}, nil,'奉纯美化素材脚本\n交流群792803392') if menu1 == nil then else if menu1[1] == true then a1() end if menu1[2] == true then a2() end if menu1[3] == true then a3() end if menu1[4] == true then a4() end if menu1[5] == true then a5() end if menu1[6] == true then a6() end if menu1[7] == true then a7() end if menu1[8] == true then a8() end if menu1[9] == true then a9() end if menu1[10] == true then a10() end if menu1[11] == true then a11() end if menu1[12] == true then a12() end if menu1[13] == true then a13() end if menu1[14] == true then HOME() end end GLWW=-1 end function B() menu1 = gg.multiChoice({ '万圣节头盔', '狮王头盔', '血潮机甲头盔', '粉色马尾', '白色马尾', '地狱骑士头盔', '御灵师头盔', '冥河决裁者头盔', '珍珠月兔头盔', '美丽恋人头盔', '粉色小兔', '返回上一页'}, nil,'头盔只能开一个开多没效果\n交流群792803392') if menu1 == nil then else if menu1[1] == true then b1() end if menu1[2] == true then b2() end if menu1[3] == true then b3() end if menu1[4] == true then b4() end if menu1[5] == true then b5() end if menu1[6] == true then b6() end if menu1[7] == true then b7() end if menu1[8] == true then b8() end if menu1[9] == true then b9() end if menu1[10] == true then b10() end if menu1[11] == true then b11() end if menu1[12] == true then HOME() end end GLWW=-1 end function C() menu1 = gg.multiChoice({ '全枪械皮肤①', '全枪械皮肤②', '金耀见王M4', '涂鸦M4', 'AK冰霜核心', 'AK影袭', '死噶紫色主宰', '黄金m4', '火箭少女m4', '狙击枪+冲锋枪', '月光m4', '金SKS', '全近战改小刀', 'AWM铁序主宰', '98k金耀见王', 'SCAR-L诡秘之夜', '赤诚AK', '骜喜爱意UZI', 'AK星空物语', 'AK邪能力量', '返回上一页'}, nil,'奉纯美化素材\n交流群792803392') if menu1 == nil then else if menu1[1] == true then c1() end if menu1[2] == true then c2() end if menu1[3] == true then c3() end if menu1[4] == true then c4() end if menu1[5] == true then c5() end if menu1[6] == true then c6() end if menu1[7] == true then c7() end if menu1[8] == true then c8() end if menu1[9] == true then c9() end if menu1[10] == true then c10() end if menu1[11] == true then c11() end if menu1[12] == true then c12() end if menu1[13] == true then c13() end if menu1[14] == true then c14() end if menu1[15] == true then c15() end if menu1[16] == true then c16() end if menu1[17] == true then c17() end if menu1[18] == true then c18() end if menu1[19] == true then AK7() end if menu1[20] == true then AK6() end if menu1[21] == true then HOME() end end GLWW=-1 end function D() menu1 = gg.multiChoice({ '身法套装', '木乃伊', '小丑鱼', '浣熊姐妹', '身法裙套', '刺客风衣', '绿色马尾', '蓝色马尾', '粉色马尾', '自抓衣服', '北极熊头套', '周年独角兽', '返回上一页'}, nil,'奉纯美化素材\n交流群792803392') if menu1 == nil then else if menu1[1] == true then d1() end if menu1[2] == true then d2() end if menu1[3] == true then d3() end if menu1[4] == true then d4() end if menu1[5] == true then d5() end if menu1[6] == true then d6() end if menu1[7] == true then d7() end if menu1[8] == true then d8() end if menu1[9] == true then d9() end if menu1[10] == true then d10() end if menu1[11] == true then d11() end if menu1[12] == true then d12() end if menu1[13] == true then HOME() end end GLWW=-1 end function E() menu1 = gg.multiChoice({ '增加伤害', '16:9视角', '自瞄', '不减范围', '午后+防抖+聚点', '4枪必杀', '除雾', '子弹穿墙', '爆狗头', '粉色天空', '单发狙连发', '透视一套', '不拉回跳远', '人物地线', '反向跳伞', '返回上一页'}, nil,'奉纯美化素材\n二改司马') if menu1 == nil then else if menu1[1] == true then e1() end if menu1[2] == true then e2() end if menu1[3] == true then e3() end if menu1[4] == true then e4() end if menu1[5] == true then e5() end if menu1[6] == true then e6() end if menu1[7] == true then e7() end if menu1[8] == true then e8() end if menu1[9] == true then e9() end if menu1[10] == true then e10() end if menu1[11] == true then e11() end if menu1[12] == true then e12() end if menu1[13] == true then e13() end if menu1[14] == true then e14() end if menu1[15] == true then e15() end if menu1[16] == true then HOME() end end GLWW=-1 end function F() menu1 = gg.multiChoice({ '寒冰特效枪+命中特效', '红色血雾', '超级血雾', '黑色血雾', '深黄色血雾', '浅黄色血雾', '轻量血雾', '待添加8', '待添加9', '返回上一页'}, nil,'奉纯美化素材版本\n二改司马') if menu1 == nil then else if menu1[1] == true then f1() end if menu1[2] == true then f2() end if menu1[3] == true then f3() end if menu1[4] == true then f4() end if menu1[5] == true then f5() end if menu1[6] == true then f6() end if menu1[7] == true then f7() end if menu1[8] == true then f8() end if menu1[9] == true then f9() end if menu1[10] == true then HOME() end end GLWW=-1 end function G() menu1 = gg.multiChoice({ '拳击动作', '太空漫步动作', '吹枪动作', '新僵尸动作', '载具美化', 's1降落伞', '万圣节主题', '城堡主题', 'S1王牌降落伞', '雪国樱花降落伞', '装甲忠犬降落伞', '彩繪藝術降落伞', '金耀见王降落伞', '幻境少女降落伞', '返回上一页'}, nil,'奉纯美化素材版本\n二改司马') if menu1 == nil then else if menu1[1] == true then g1() end if menu1[2] == true then g2() end if menu1[3] == true then g3() end if menu1[4] == true then g4() end if menu1[5] == true then g5() end if menu1[6] == true then g6() end if menu1[7] == true then g7() end if menu1[8] == true then g8() end if menu1[9] == true then g9() end if menu1[10] == true then g10() end if menu1[11] == true then g11() end if menu1[12] == true then g12() end if menu1[13] == true then g13() end if menu1[14] == true then g14() end if menu1[15] == true then HOME() end end GLWW=-1 end function a1() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001283, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002283, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003283, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a2() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003245, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003245, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003245, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a3() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001051, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002051, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003051, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a4() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001022, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002022, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003022, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a5() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001102, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002102, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003102, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a6() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001142, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002142, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003142, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a7() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001157, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002157, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003157, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a8() qmnb = { {memory = 32}, {name = "一级包"}, {value = 501001, type = 4}, { lv = 501000, offset = -44, type = 4 }, { lv = 501001, offset = 12, type = 4 } } qmxg = { { value = 1501001271, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "二级包"}, {value = 501002, type = 4}, { lv = 501000, offset = -44, type = 4 }, { lv = 501002, offset = 12, type = 4 } } qmxg = { { value = 1501002271, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "三级包"}, {value = 501003, type = 4}, { lv = 501000, offset = -44, type = 4 }, { lv = 501003, offset = 12, type = 4 } } qmxg = { { value = 1501003271, offset = 0, type = 4 } } xqmnb(qmnb) end function a9() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b1() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502001018, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002018, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502003018, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b2() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 150200109, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002109, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 150200109, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b3() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502001063, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002063, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502003063, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b4() qmnb = { {memory = 32}, {name = "一级头"}, {value = 502001, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502001, offset = 12, type = 4 } } qmxg = { { value = 1402861, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "二级头"}, {value = 502002, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502002, offset = 12, type = 4 } } qmxg = { { value = 1402861, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "三级头"}, {value = 502003, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502003, offset = 12, type = 4 } } qmxg = { { value = 1402861, offset = 0, type = 4 } } xqmnb(qmnb) end function b5() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1402613, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1402613, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1402613, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b6() qmnb = { {memory = 32}, {name = "一级头"}, {value = 502001, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502001, offset = 12, type = 4 } } qmxg = { { value = 1502001014, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "二级头"}, {value = 502002, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502002, offset = 12, type = 4 } } qmxg = { { value = 1502002014, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "三级头"}, {value = 502003, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502003, offset = 12, type = 4 } } qmxg = { { value = 1502003014, offset = 0, type = 4 } } xqmnb(qmnb) end function b7() qmnb = { {memory = 32}, {name = "一级头"}, {value = 502001, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502001, offset = 12, type = 4 } } qmxg = { { value = 1502001069, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "二级头"}, {value = 502002, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502002, offset = 12, type = 4 } } qmxg = { { value = 1502002069, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "三级头"}, {value = 502003, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502003, offset = 12, type = 4 } } qmxg = { { value = 1502003069, offset = 0, type = 4 } } xqmnb(qmnb) end function b8() qmnb = { {memory = 32}, {name = "一级头"}, {value = 502001, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502001, offset = 12, type = 4 } } qmxg = { { value = 1502001093, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "二级头"}, {value = 502002, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502002, offset = 12, type = 4 } } qmxg = { { value = 1502002093, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "三级头"}, {value = 502003, type = 4}, { lv = 502000, offset = -44, type = 4 }, { lv = 502003, offset = 12, type = 4 } } qmxg = { { value = 1502003093, offset = 0, type = 4 } } xqmnb(qmnb) end function b9() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502001065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502003065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function c1() gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.clearResults() gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") qmnb = { {["memory"] = 32}, {["name"] = "机瞄"}, {["value"] = 20300600, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 203006, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010020633, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") gg.clearResults() gg.searchNumber("10100200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101002063",gg.TYPE_DWORD) gg.toast("M16A4") qmnb = { {["memory"] = 32}, {["name"] = "机瞄"}, {["value"] = 20300600, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 203006, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010020633, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.clearResults() gg.searchNumber("10100100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101001135", gg.TYPE_DWORD) gg.clearResults() gg.searchNumber("29100100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1010011351", gg.TYPE_DWORD) gg.clearResults() gg.toast("AKM") gg.clearResults() gg.searchNumber("10100300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101003098",gg.TYPE_DWORD) gg.toast("SCAR-L小丑") gg.clearResults() gg.searchNumber("10100400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101004099",gg.TYPE_DWORD) gg.toast("M416-涂鸦") qmnb = { {["memory"] = 32}, {["name"] = "m416机瞄"}, {["value"] = 20300800, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 2, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 1010040992, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040993, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "扩容"}, {["value"] = 29100400, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 291004, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040991, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.clearResults() gg.searchNumber("10100500",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101005019",gg.TYPE_DWORD) gg.toast("GROZA") gg.clearResults() gg.searchNumber("10100600",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101006020",gg.TYPE_DWORD) gg.toast("AUG") gg.clearResults() gg.searchNumber("10100700",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101007017",gg.TYPE_DWORD) gg.toast("QBZ") gg.clearResults() gg.searchNumber("10100800",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101008030",gg.TYPE_DWORD) gg.toast("M762") gg.clearResults() gg.searchNumber("10100900",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101009001",gg.TYPE_DWORD) gg.toast("MK47") gg.clearResults() gg.searchNumber("10200100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101001006",gg.TYPE_DWORD) gg.toast("UZI改ak") gg.clearResults() gg.searchNumber("10200200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1102002031",gg.TYPE_DWORD) gg.toast("UMP45") gg.clearResults() gg.searchNumber("10200300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1102003024",gg.TYPE_DWORD) gg.toast("Vector") gg.clearResults() gg.searchNumber("10200400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1102004012",gg.TYPE_DWORD) gg.toast("汤姆逊") gg.clearResults() gg.searchNumber("10200500",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1102005010",gg.TYPE_DWORD) gg.toast("野牛") gg.clearResults() gg.searchNumber("10300100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103001100",gg.TYPE_DWORD) gg.toast("98k") gg.clearResults() gg.searchNumber("10300200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103002029",gg.TYPE_DWORD) gg.toast("M24") gg.clearResults() gg.searchNumber("10300300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103003029",gg.TYPE_DWORD) gg.toast("AWM") gg.clearResults() gg.searchNumber("10300400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103004018",gg.TYPE_DWORD) gg.toast("SKS") gg.clearResults() gg.searchNumber("10300500",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103005018",gg.TYPE_DWORD) gg.toast("VSS") gg.clearResults() gg.searchNumber("10300600",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103006014",gg.TYPE_DWORD) gg.toast("mini14") gg.clearResults() gg.searchNumber("10400100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1104001015",gg.TYPE_DWORD) gg.toast("S686") gg.clearResults() gg.searchNumber("10400200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1104002003",gg.TYPE_DWORD) gg.toast("S1897") gg.clearResults() gg.searchNumber("10400300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1104003003",gg.TYPE_DWORD) gg.toast("S12k") gg.clearResults() gg.searchNumber("10500100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1105001012",gg.TYPE_DWORD) gg.toast("M249") gg.clearResults() gg.searchNumber("10500200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1105002024",gg.TYPE_DWORD) gg.toast("OP-28") gg.clearResults() gg.searchNumber("10300900",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103009011",gg.TYPE_DWORD) gg.toast("SLR") gg.clearResults() gg.searchNumber("10300700",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103007010",gg.TYPE_DWORD) gg.toast("MK14") gg.clearResults() gg.searchNumber("10301000",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1103010007",gg.TYPE_DWORD) gg.toast("QBU") gg.clearResults() gg.searchNumber("10800200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("撬棍") gg.clearResults() gg.searchNumber("10800300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("镰刀") gg.clearResults() gg.searchNumber("10800400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1108004092",gg.TYPE_DWORD) gg.toast("平底锅") end function c2() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("20300800 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("20300800 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(10) gg.editAll("1010040812", gg.TYPE_DWORD) gg.toast("机瞄") qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040813, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(99) gg.editAll('1101004099',gg.TYPE_DWORD) gg.toast('M416') gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(99) gg.editAll('1101004099',gg.TYPE_DWORD) gg.toast('M416') gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.searchNumber('10100400',gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(99) gg.editAll('1101004099',gg.TYPE_DWORD) gg.toast('M416') gg.clearResults() gg.clearResults() gg.searchNumber("10100200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101002009", gg.TYPE_DWORD) gg.toast("M16") gg.clearResults() qmnb = { {["memory"] = 32}, {["name"] = "机瞄"}, {["value"] = 20300600, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 203006, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010020563, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.clearResults() gg.searchNumber("10100100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101001079", gg.TYPE_DWORD) gg.toast("AKM") gg.clearResults() gg.clearResults() gg.searchNumber("10100300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101003098", gg.TYPE_DWORD) gg.toast("SCAR-L") gg.clearResults() gg.clearResults() gg.searchNumber("10100500",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(99) gg.editAll("1101005025",gg.TYPE_DWORD) gg.toast("GROZA") gg.clearResults() gg.searchNumber("10100600", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1101006001", gg.TYPE_DWORD) gg.toast("AUG") gg.clearResults() gg.searchNumber("10100700", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1101007017", gg.TYPE_DWORD) gg.toast("QBZ") gg.clearResults() gg.searchNumber("10100800", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1101008050", gg.TYPE_DWORD) gg.toast("M762") gg.clearResults() gg.searchNumber("10100900", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1101009001<", gg.TYPE_DWORD) gg.toast("MK47") gg.clearResults() gg.searchNumber("10200100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1101001079", gg.TYPE_DWORD) gg.toast("UZI") HaoGe({{false,10200200,0,4,nil,nil}},{{1102002030,0,4,false}},4,32,"UMP9") gg.clearResults() gg.searchNumber("10200300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102003020",gg.TYPE_DWORD) gg.toast("Vector") gg.clearResults() gg.searchNumber("10200400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102004022", gg.TYPE_DWORD) gg.toast("汤姆逊") gg.clearResults() gg.searchNumber("10200500", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102005010", gg.TYPE_DWORD) gg.toast("野牛冲锋枪") gg.clearResults() gg.searchNumber("10300100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(200) gg.editAll("1103001100", gg.TYPE_DWORD) gg.toast("98k") gg.clearResults() gg.searchNumber("10300200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(99) gg.editAll("1103002029",gg.TYPE_DWORD) gg.toast("M24") gg.clearResults() gg.searchNumber("10300300", gg.TYPE_DWORD) gg.getResults(99) gg.editAll("1103003029",gg.TYPE_DWORD) gg.toast("AWM") gg.clearResults() gg.searchNumber("10300400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1103004017", gg.TYPE_DWORD) gg.toast("SKS") gg.clearResults() gg.searchNumber("10300500", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1103005014", gg.TYPE_DWORD) gg.toast("VSS") gg.clearResults() gg.searchNumber("10300600", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1103006029", gg.TYPE_DWORD) gg.toast("mini14") gg.clearResults() gg.searchNumber("10400100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1104001002", gg.TYPE_DWORD) gg.toast("S686") gg.clearResults() gg.searchNumber("10400200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1104002003", gg.TYPE_DWORD) gg.toast("S1897") gg.clearResults() gg.searchNumber("10400300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1104003003", gg.TYPE_DWORD) gg.toast("S12k") gg.clearResults() gg.searchNumber("10500100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1105001020", gg.TYPE_DWORD) gg.toast("M249") gg.clearResults() gg.searchNumber("10500200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1105002028", gg.TYPE_DWORD) gg.toast("OP-28") gg.clearResults() gg.searchNumber("10800100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("砍刀") gg.clearResults() gg.searchNumber("10800200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("撬棍") gg.clearResults() gg.searchNumber("10800300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("镰刀") gg.clearResults() gg.searchNumber("10800400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1108004092", gg.TYPE_DWORD) gg.toast("平底锅") end function c3() gg.clearResults() gg.searchNumber("10100400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(1000) gg.editAll("1101004120",gg.TYPE_DWORD) gg.toast("M416") qmnb = { {["memory"] = 32}, {["name"] = "m416机瞄"}, {["value"] = 20300800, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 2, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 1010041202, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010041203, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "扩容"}, {["value"] = 29100400, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 291004, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010041201, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function c4() gg.clearResults() gg.searchNumber("10100400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101004099",gg.TYPE_DWORD) gg.toast("M416-涂鸦") qmnb = { {["memory"] = 32}, {["name"] = "m416机瞄"}, {["value"] = 20300800, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 2, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 1010040992, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040993, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "扩容"}, {["value"] = 29100400, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 291004, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040991, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function c13() gg.clearResults() gg.searchNumber("10800100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("10800500", gg.TYPE_DWORD) gg.toast("砍刀") gg.clearResults() gg.searchNumber("10800200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("10800500", gg.TYPE_DWORD) gg.toast("撬棍") gg.clearResults() gg.searchNumber("10800300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("10800500", gg.TYPE_DWORD) gg.toast("镰刀") gg.clearResults() gg.searchNumber("10800400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("10800500", gg.TYPE_DWORD) gg.toast("平底锅") end function c5() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10100100", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("10100100", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("1101001089",gg.TYPE_DWORD) gg.toast("AK冰霜核心") end function c6() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10100100", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("10100100", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("1101001079",gg.TYPE_DWORD) gg.toast("AK影袭") end function c7() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10100300", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("1101003098",gg.TYPE_DWORD) gg.toast("死噶紫色主宰") end function c8() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("20300800 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("20300800 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("1010040342", gg.TYPE_DWORD) gg.toast("M416黄金机瞄已开启") gg.searchNumber("10100400 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("10100400 ", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101004034", gg.TYPE_DWORD) gg.toast("M416黄金已开启") qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040343, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function c9() gg.clearResults() gg.searchNumber("10100400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(1000) gg.editAll("101004001",gg.TYPE_DWORD) gg.toast("M416") qmnb = { {["memory"] = 32}, {["name"] = "m416机瞄"}, {["value"] = 20300800, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 2, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 100400103, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 100400102, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "扩容"}, {["value"] = 29100400, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 291004, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 100400101, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function d1() qmnb = { {["memory"] = 32}, {["name"] = "s1裤子"}, {["value"] = 404031, ["type"] = 4}, {["lv"] = 404000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 404031, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 404049, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "头发"}, {value = 40601002, type = 4}, { lv = 100, offset = -4, type = 4 }, { lv = 4, offset = 4, type = 4 } } qmxg = { { value = 1402861, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "小白衣"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 403005, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "口罩"}, {["value"] = 405015, ["type"] = 4}, {["lv"] = 405000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 405015, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1403119, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 405015, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1403119, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 403005, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 404031, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 404049, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("703001", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("703001;703001::16", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(1000) gg.editAll("1400629",gg.TYPE_DWORD) gg.toast("降落伞") end function d2() qmnb = { {memory = 32}, {name = "木乃伊"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1400687, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1400687, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function d3() qmnb = { {memory = 32}, {name = "深海小丑鱼"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1405238, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1405238, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function d4() qmnb = { {memory = 32}, {name = "浣熊姐妹"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1405904, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1405904, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function d5() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("404031", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("404003",gg.TYPE_DWORD) gg.toast("裤子") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("403007", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("403005",gg.TYPE_DWORD) gg.toast("衣服") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("405015", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("405015;405015::16", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("1403130",gg.TYPE_DWORD) gg.toast("口罩") end function d6() qmnb = { {memory = 32}, {name = "刺客风衣"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1405355, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1405355, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function d7() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("40601002", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("40601002;40601002::16", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(100) gg.editAll("1402563",gg.TYPE_DWORD) gg.toast("绿色马尾") end function d8() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("40601002", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("40601002;40601002::16", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(100) gg.editAll("1402607",gg.TYPE_DWORD) gg.toast("蓝色马尾") end function d9() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("40601002", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("40601002;40601002", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(100) gg.editAll("1402861",gg.TYPE_DWORD) gg.toast("粉色马尾") end function c10() gg.clearResults() gg.searchNumber("10300100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1103001013",gg.TYPE_DWORD) gg.toast("98K改黄金") gg.clearResults() gg.searchNumber("10300300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1103003002",gg.TYPE_DWORD) gg.toast("AWM改霓虹") gg.clearResults() gg.searchNumber("10300400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1103004018",gg.TYPE_DWORD) gg.toast("SKS改幻影") gg.clearResults() gg.searchNumber("10300600",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1103006002",gg.TYPE_DWORD) gg.toast("MINI14改摇滚") gg.clearResults() gg.searchNumber("10200100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1102001023",gg.TYPE_DWORD) gg.toast("UZI改赤热者") gg.clearResults() gg.searchNumber("10200200",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1102002003",gg.TYPE_DWORD) gg.toast("UMP9改绿茵") gg.clearResults() gg.searchNumber("10200300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1102003001",gg.TYPE_DWORD) gg.toast("Vector改紫兔") end function c11() gg.clearResults() gg.searchNumber("10100400",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101004031",gg.TYPE_DWORD) gg.toast("M416") qmnb = { {["memory"] = 32}, {["name"] = "m416机瞄"}, {["value"] = 20300800, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 2, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 20500500, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "枪托"}, {["value"] = 20500500, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 205005, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 29100400, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "扩容"}, {["value"] = 29100400, ["type"] = 4}, {["lv"] = 1, ["offset"] = -4, ["type"] = 4}, {["lv"] = 291004, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1010040551, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function c12() gg.clearResults() gg.setRanges(32) gg.searchNumber("10300400", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("1103004053",gg.TYPE_DWORD) gg.toast("金SKS") end function c14() gg.clearResults() gg.searchNumber("10300300",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1103003029",gg.TYPE_DWORD) gg.toast("AWM铁序主宰") end function c15() gg.clearResults() gg.searchNumber("10300100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(200) gg.editAll("1103001093", gg.TYPE_DWORD) gg.toast("98k") gg.clearResults() gg.searchNumber("10300100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(200) gg.editAll("1103001093", gg.TYPE_DWORD) gg.toast("98k") end function d10() qmnb = { {memory = 32}, {name = "自抓"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1405557, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1405557, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function e1() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("25;30.5", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("371;365",gg.TYPE_FLOAT) gg.toast("增伤") end function e2() gg.clearResults() gg.setRanges(gg.REGION_C_DATA | gg.REGION_CODE_APP) gg.searchNumber("360.0;0.00100000005;-9.38575022e22", gg.TYPE_FLOAT) gg.refineNumber("360.0", gg.TYPE_FLOAT) gg.getResults(2) gg.editAll("317", gg.TYPE_FLOAT) gg.toast("视角") end function e3() gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("360.0;0.0001;1,478,828,288.0::", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("0.0001", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(10) gg.editAll("999", gg.TYPE_FLOAT) gg.toast("开火锁头") gg.clearResults() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("-88.82363891602F;15.0F;1", gg.TYPE_FLOAT) gg.searchNumber("1", gg.TYPE_FLOAT) gg.getResults(1000) gg.editAll("20000000000000", gg.TYPE_FLOAT) gg.toast("开火自瞄") end function e5() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1.5584387e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(30) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("无后开启中") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1D;0.05000000075F;0.10000000149F;0.55000001192F;9.5F;15.0F::", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) gg.toast("全枪无后开启成功") gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("-2.8111605e28;-3.7444097e28;-1.1144502e28;128.0::", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-1.1144502e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("-6.1549454e27;1.8638966e-20;-1.1144502e28;0::", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-1.1144502e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("防抖") gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("-1.2382424e28;-1.4239333e28;-1.1144502e28;-1.8331474e27;-7.1608877e24::", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-1.1144502e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(2) gg.editAll("90", gg.TYPE_FLOAT) gg.toast("聚点") end function e6() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("25;23;30.5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(2000) gg.editAll("160", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("25;30.5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) gg.processResume() gg.getResults(2000) gg.editAll("180", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("30.5;25", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(2000) gg.editAll("140", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("15;28;16;26;8;18", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(56) gg.editAll("-1339", gg.TYPE_FLOAT) gg.clearResults() gg.toast("第一步") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("90.775703430176;0;8;15;16;18;28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(10) gg.editAll("1000", gg.TYPE_FLOAT) gg.clearResults() gg.toast("第二步") gg.clearResults() gg.setRanges(gg.REGION_CODE_APP) gg.searchNumber("-3.77830899e28;-3.74440972e28;-3.71834013e28;-1.7334334e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) gg.refineNumber("-3.77830899e28", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1, 0) revert = gg.getResults(99999, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.alert("已开启") end function e4() qmnb = { {["memory"] = 32}, {["name"] = "鹤忘极致范围"}, {["value"] = 9.201618194580078, ["type"] = 16}, {["lv"] = 25.0, ["offset"] = 28, ["type"] = 16}, {["lv"] = 30.5, ["offset"] = 32, ["type"] = 16}, } qmxg = { {["value"] = 295, ["offset"] = 28, ["type"] = 16}, {["value"] = 438, ["offset"] = 32, ["type"] = 16}, } xqmnb(qmnb) end function f1() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10100400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1101004046", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("20300800", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1010040462", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("20500200", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1010040463", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("20500500", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.processResume() gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1010040463", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("29100400", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1010040461", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("10100100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0) gg.getResults(1000, nil, nil, nil, nil, nil, nil, nil, nil) gg.editAll("1101001063", gg.TYPE_DWORD) gg.clearResults() gg.toast("寒冰枪皮成功") gg.toast("正在植入击杀特效") gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("101004;65537", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("101004", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100000) gg.editAll("1101004046", gg.TYPE_DWORD) gg.clearResults() gg.toast("击杀特效") end function f2() gg.setRanges(8|16384) gg.searchNumber("-5.77775931e27F;-5.78017776e27F;-1.38573889e28F:100", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-5.77775931e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT) gg.setRanges(8|16384) gg.searchNumber("-5.77775931e27F;-5.78017776e27F;-1.38573889e28F:100", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-5.77775931e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT)gg.clearResults() gg.setRanges(16384) gg.searchNumber("-289,596,733;-308,983,296;-298,640,831;-298,370,492;-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-289,596,733;-308,983,296;-298,640,831;-298,370,492;-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) end function f3() gg.clearResults() gg.setRanges(16384) gg.searchNumber("-298,370,492", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(16384) gg.searchNumber("-298,370,492", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(16384) gg.searchNumber("-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) gg.toast("\n🚬超级血雾\n📥修改66数据") end function f4() gg.clearResults() gg.setRanges(16384) gg.searchNumber("-289,596,733;-308,979,199;-299,812,349;-298,497,529;-299,820,542:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-289,596,733;-308,979,199;-299,812,349;-298,497,529;-299,820,542:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) end function g1() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("2200101", gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0, -1) gg.getResults(10000) gg.editAll("12,212,101",gg.TYPE_DWORD) gg.toast("开启成功") end function g5() qmnb = { {memory = 32}, {name = "\n🚬吉普"}, {value = 1908001, type = 4}, { lv = 100, offset = -4, type = 4 }, { lv = 9, offset = 4, type = 4 } } qmxg = { { value = 1908005, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "\n🚬轿车"}, {value = 1903001, type = 4}, { lv = 84, offset = -12, type = 4 }, { lv = 1903001, offset = 12, type = 4 } } qmxg = { { value = 1915011, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "\n🚬蹦蹦"}, {value = 1907001, type = 4}, { lv = 84, offset = -12, type = 4 }, { lv = 1907001, offset = 12, type = 4 } } qmxg = { { value = 1907018, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, {name = "\n🚬游艇"}, {value = 1911001, type = 4}, { lv = 100, offset = -4, type = 4 }, { lv = 9, offset = 4, type = 4 } } qmxg = { { value = 1911008, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, { name = "\n🚬三轮摩托" }, {value = 1902001, type = 4}, { lv = 100, offset = -4, type = 4 }, { lv = 9, offset = 4, type = 4 } } qmxg = { { value = 1902013, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {memory = 32}, { name = "\n🚬二轮摩托" }, {value = 1901001, type = 4}, { lv = 100, offset = -4, type = 4 }, { lv = 9, offset = 4, type = 4 } } qmxg = { { value = 1901040, offset = 0, type = 4 } } xqmnb(qmnb) end function g3() qmnb={ {["memory"] = 32}, {["name"] = "吹枪动作"}, {["value"] = 2200101, ["type"] = 4}, {["lv"] = 100, ["offset"] = -4, ["type"] = 4}, {["lv"] = 22, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 12203801, ["offset"] = 0, ["type"] = 4} } xqmnb(qmnb) end function g2() qmnb={ {["memory"] = 32}, {["name"] = "太空漫步"}, {["value"] = 2200301, ["type"] = 4}, {["lv"] = 100, ["offset"] = -4, ["type"] = 4}, {["lv"] = 22, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 12200401, ["offset"] = 0, ["type"] = 4} } xqmnb(qmnb) end function g4() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("2200301", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("2200301", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("12,212,601", gg.TYPE_DWORD) gg.clearResults() gg.setRanges(gg.REGION_C_ALLOC) gg.searchNumber("2200301", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(999) gg.editAll("12,212,601", gg.TYPE_DWORD) gg.toast("僵尸动作美化成功") end function g6() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("703001", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("703001;703001::16", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("703014", gg.TYPE_DWORD) end function f5() gg.clearResults() gg.setRanges(16384) gg.searchNumber("-289,596,733;-308,983,296;-298,640,831;-298,370,492;-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-289,596,733;-308,983,296;-298,640,831;-298,370,492;-294,581,562;-298,706,367:193", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_DWORD) end function f6() gg.setRanges(8|16384) gg.searchNumber("-5.77534087e27F;-5.78017776e27F;-1.38573889e28F:13", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-5.77534087e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT) gg.setRanges(8|16384) gg.searchNumber("-5.77534087e27F;-5.78017776e27F;-1.38573889e28F:13", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-5.78017776e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT) end function c16() gg.clearResults() gg.searchNumber("10100300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101003098", gg.TYPE_DWORD) gg.toast("SCAR-L") gg.clearResults() gg.searchNumber("10100300", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("1101003098", gg.TYPE_DWORD) gg.toast("SCAR-L") end function c17() gg.clearResults() gg.searchNumber("10100100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(2000) gg.editAll("1101001006",gg.TYPE_DWORD) gg.toast("AKM改赤诚") end function c18() gg.clearResults() gg.searchNumber("10200100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102001058", gg.TYPE_DWORD) gg.toast("UZI") gg.clearResults() gg.searchNumber("10200100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102001058", gg.TYPE_DWORD) gg.toast("UZI") gg.clearResults() gg.searchNumber("10200100", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("1102001058", gg.TYPE_DWORD) gg.toast("UZI") end function g7() gg.clearResults() gg.setRanges(gg.REGION_C_ALLOC) gg.searchNumber("202408001", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("202408013", gg.TYPE_DWORD) gg.toast("开启成功") gg.clearResults() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("202408001", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("202408013", gg.TYPE_DWORD) gg.toast("城堡") end function g8() gg.clearResults() gg.setRanges(gg.REGION_C_ALLOC) gg.searchNumber("202408001", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("202408004", gg.TYPE_DWORD) gg.toast("开启成功") gg.clearResults() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("202408001", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(99) gg.editAll("202408004", gg.TYPE_DWORD) gg.toast("万圣节主题") end function e7() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("0.00014999999;0.00001::5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("0.00001", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(55) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("全图除雾已开启") end function e8() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("3.5032462e-44F;10.0F;45.0F", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("10", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(20) gg.editAll("9999", gg.TYPE_FLOAT) gg.clearResults() gg.toast("子弹穿墙v2️") end function e9() gg.clearResults() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("25;30.5", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("370;375", gg.TYPE_FLOAT) gg.clearResults() gg.toast("第一步") gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("0000B040rA;0000803FrA;0000403FrA:9", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(3) gg.editAll("1,087,897,600;1,075,838,976;1,075,838,976", gg.TYPE_DWORD) gg.clearResults() gg.toast("爆狗头") end function e10() gg.setRanges(1048576) gg.searchNumber("-2,133,852,158;0;537,139,712:9", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("0", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(300) gg.editAll("2", 4) end function f7() gg.setRanges(8|16384) gg.searchNumber("-5.77775931e27F;-5.78017776e27F;-1.36544452e28:100", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-1.38573889e28F", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT) gg.setRanges(8|16384) gg.searchNumber("-5.77775931e27F;-5.78017776e27F;-1.36544452e28:100", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.refineNumber("-1.38573889e28F", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(500) gg.editAll("0", gg.TYPE_FLOAT)gg.clearResults() end function d11() qmnb = { {["memory"] = 32}, {["name"] = "北极熊"}, {["value"] = 40601002, ["type"] = 4}, {["lv"] = 100, ["offset"] = -4, ["type"] = 4}, {["lv"] = 4, ["offset"] = 4, ["type"] = 4}, } qmxg = { {["value"] = 1402304, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) gg.toast("开启成功") end function a10() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a11() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001023, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002023, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003023, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function e11() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("76000;1.89999997616;1.70000004768", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1.89999997616;1.70000004768", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("98k连发开启成功") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("79000;1.79999995232;1.70000004768", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1.79999995232;1.70000004768", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("M24连发开启成功") gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("91,000.0F;2.29999995232F;1.79999995232F:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("2.29999995232F;1.79999995232F:512", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_FLOAT) gg.toast("AWM连发开启成功") end function e12() gg.clearResults() gg.setRanges(1048576) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchAddress("480") gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(50) gg.editAll("120", gg.TYPE_FLOAT) gg.toast('马赛克') gg.clearResults() gg.setRanges(1048576) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchAddress("900") gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(50) gg.editAll("120", gg.TYPE_FLOAT) gg.toast('透明化') gg.clearResults() gg.setRanges(1048576) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchAddress("480")---人物/马赛克 gg.getResults(100) gg.editAll("120", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(1048576) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchAddress("800")---车辆透视 gg.getResults(100) gg.editAll("120", gg.TYPE_FLOAT) gg.clearResults() gg.setRanges(1048576) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("2", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchAddress("880")---人物透视 gg.getResults(100) gg.editAll("120", gg.TYPE_FLOAT) gg.toast("透视成功") gg.clearResults() gg.setRanges(gg.REGION_VIDEO) gg.searchNumber("-8.3358201e-40", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("-8.3358201e-40", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0,-1) gg.getResults(100) gg.editAll("5444",gg.TYPE_FLOAT) gg.toast("马赛克{") gg.clearResults() gg.setRanges(gg.REGION_VIDEO) gg.searchNumber("-2.8539629e-39", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("-2.8539629e-39", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0,-1) gg.getResults(100) gg.editAll("5444",gg.TYPE_FLOAT) gg.toast("透视") gg.clearResults() gg.setRanges(gg.REGION_VIDEO) gg.searchNumber("-8.3358201e-40", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("-8.3358201e-40", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0,-1) gg.getResults(100) gg.editAll("5444",gg.TYPE_FLOAT) gg.toast("马赛克") gg.clearResults() gg.setRanges(gg.REGION_VIDEO) gg.searchNumber("-1.384595e-39", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0, -1) gg.searchNumber("-1.384595e-39", gg.TYPE_FLOAT,false,gg.SIGN_EQUAL,0,-1) gg.getResults(100) gg.editAll("5444",gg.TYPE_FLOAT) gg.toast("透视成功") end function a12() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001066, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002066, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003066, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function a13() qmnb = { {["memory"] = 32}, {["name"] = "一级包"}, {["value"] = 501001, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501001065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级包"}, {["value"] = 501002, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501002065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级包"}, {["value"] = 501003, ["type"] = 4}, {["lv"] = 501000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 501003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1501003065, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function AK7() gg.clearResults() gg.searchNumber("10100100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101001129",gg.TYPE_DWORD) gg.toast("AKM星空物语") end function AK6() gg.clearResults() gg.searchNumber("10100100",gg.TYPE_DWORD,false,gg.SIGN_EQUAL,0,-1) gg.getResults(500) gg.editAll("1101001046",gg.TYPE_DWORD) gg.toast("AKM邪能力量") end function b10() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502001160, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002160, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502003160, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function b11() qmnb = { {["memory"] = 32}, {["name"] = "一级头"}, {["value"] = 502001, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502001002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "二级头"}, {["value"] = 502002, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502002, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502002002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) qmnb = { {["memory"] = 32}, {["name"] = "三级头"}, {["value"] = 502003, ["type"] = 4}, {["lv"] = 502000, ["offset"] = -44, ["type"] = 4}, {["lv"] = 502003, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1502003002, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function e13() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("2.0;2,048.0;300.0;0.05000000075", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("0.05000000075", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("80", gg.TYPE_FLOAT) gg.toast("加强跳跃(空中拐弯)") gg.clearResults() gg.setRanges(16384) gg.searchNumber("-6.1526231e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.toast("防拉回开启成功") gg.clearResults() gg.clearResults() gg.setRanges(16384) gg.searchNumber("-6.15264497e27", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("0", gg.TYPE_FLOAT) gg.clearResults() gg.toast("防拉回开启成功") gg.clearResults() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("0;7.0064923e-45;1;100;1;2,500,000,000.0;0.10000000149;88", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("1", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(100) gg.editAll("2", gg.TYPE_FLOAT) gg.toast("跳远开启成功") end function e14() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("-1.68741369247;0.33067199588::15", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.searchNumber("-1.68741369247", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(5) gg.editAll("-9999999", gg.TYPE_FLOAT) gg.toast("人物地线开启成功") end function e15() gg.clearResults() gg.setRanges(gg.REGION_ANONYMOUS) gg.searchNumber("1024;3000", gg.TYPE_FLOAT, false, gg.SIGN_EQUAL, 0, -1) gg.getResults(1000) gg.editAll("9999999", gg.TYPE_FLOAT) gg.toast("反向跳伞开启成功") end function d12() qmnb = { {memory = 32}, {name = "周年独角兽"}, {value = 403007, type = 4}, { lv = 403000, offset = -44, type = 4 }, { lv = 403007, offset = 12, type = 4 } } qmxg = { { value = 1405482, offset = 0, type = 4 } } xqmnb(qmnb) qmnb = { {["memory"] = 4}, {["name"] = "仓库显示"}, {["value"] = 403007, ["type"] = 4}, {["lv"] = 68, ["offset"] = -8, ["type"] = 4}, {["lv"] = 19, ["offset"] = 8, ["type"] = 4}, } qmxg = { {["value"] = 1405482, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g9() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 703013, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g10() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1,401,170, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g11() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1,401,100, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g12() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1,401,193, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g13() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1401529, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function g14() qmnb = { {["memory"] = 32}, {["name"] = "降落伞"}, {["value"] = 703001, ["type"] = 4}, {["lv"] = 88, ["offset"] = -12, ["type"] = 4}, {["lv"] = 703001, ["offset"] = 12, ["type"] = 4}, } qmxg = { {["value"] = 1401094, ["offset"] = 0, ["type"] = 4}, } xqmnb(qmnb) end function Exit() print("奉纯") os.exit() end function HOME() lw=1 Main() end cs = '二改司马' while(true)do if gg.isVisible(true) then XGCK=1 gg.setVisible(false) end gg.clearResults() if XGCK==1 then Main() end end