点零零竞拍网源码是变相的骗子

代码片段(2)
1.&[图片] [AAuto]竞拍网自动竞拍器界面&&&&
[AAuto]竞拍网自动竞拍器AAuto快手源码 &~&13KB&&&&
import win.
import web.
import inet.http
import win.ui.
var winform = win.form(parent=...; right=755;bottom=553;scroll=1;text="AAuto Form";border="resizable" )
winform.add(
st_aau={ dr=1;notify=1;bottom=532;color=;text="由AAuto快手开发";left=648;nWrap=1;top=518;z=16;db=1;transparent=1;right=746;cls="static" };
static7={ dl=1;bottom=523;right=440;left=386;top=508;font=LOGFONT( name='宋体' );transparent=1;db=1;text="开拍价:";z=14;cls="static" };
static3={ dl=1;bottom=525;right=61;left=7;top=510;font=LOGFONT( name='宋体' );transparent=1;db=1;text="开拍网速:";z=7;cls="static" };
static6={ dl=1;bottom=523;right=325;left=271;top=508;font=LOGFONT( name='宋体' );transparent=1;db=1;text="会员名:";z=12;cls="static" };
static5={ dl=1;bottom=524;right=193;left=139;top=509;font=LOGFONT( name='宋体' );transparent=1;db=1;text="最后开拍:";z=10;cls="static" };
static={ dr=1;dl=1;bottom=356;text="static";left=1;dt=1;top=1;font=LOGFONT( name='宋体' );z=1;db=1;right=752;transparent=1;cls="static" };
richedit2={ dr=1;vscroll=1;bottom=497;right=753;left=447;multiline=1;top=361;font=LOGFONT( name='宋体' );text="";z=5;db=1;hscroll=1;edge=1;cls="richedit" };
static2={ dl=1;bottom=524;right=127;left=98;top=509;font=LOGFONT( name='宋体' );transparent=1;db=1;text="毫秒";z=6;cls="static" };
static4={ dl=1;bottom=523;right=268;left=239;top=508;font=LOGFONT( name='宋体' );transparent=1;db=1;text="毫秒";z=9;cls="static" };
ed_delay={ dl=1;bottom=525;text="100";left=63;top=506;font=LOGFONT( name='宋体' );z=8;db=1;right=94;edge=1;cls="edit" };
bt_stop={ dr=1;bottom=527;right=616;left=569;top=504;font=LOGFONT( name='宋体' );z=3;db=1;text="暂停";cls="button" };
ed_baitime={ dl=1;bottom=524;text="500";left=194;top=505;font=LOGFONT( name='宋体' );z=11;db=1;right=235;edge=1;cls="edit" };
richedit={ dr=1;dl=1;bottom=496;vscroll=1;right=445;left=1;multiline=1;top=362;font=LOGFONT( name='宋体' );text="";z=4;db=1;hscroll=1;edge=1;cls="richedit" };
ed_loginame={ dl=1;bottom=523;text="";left=315;top=504;font=LOGFONT( name='宋体' );z=13;db=1;right=380;edge=1;cls="edit" };
ed_paiprice={ dl=1;bottom=523;text="0.01";left=430;top=504;font=LOGFONT( name='宋体' );z=15;db=1;right=475;edge=1;cls="edit" };
bt_start={ dr=1;bottom=527;right=547;left=500;top=504;font=LOGFONT( name='宋体' );z=2;db=1;text="开始";cls="button" }
formatTime=function(sec){
ss = sec / 1000;
hh = math.floor(ss / 3600);
mm = math.floor(ss % 3600 / 60);
ss = ss%60;
status.setText(hh + ":" + mm + ":" + ss,3)
showlog=function(){
winform.richedit.text=thread.get("allpailog")
winform.richedit.setsel(-1,-1)
if(mypailog and mypailog!="" and mypailoglast!=mypailog){
str=winform.richedit2.
if(#str&10000){
winform.richedit2.text=mypailog ++ '\n';
winform.richedit2.setsel(-1,-1)
winform.richedit2.selText=mypailog ++ '\n';
mypailoglast=
if (timedelay &= 300) {
statusdelay = "非常快," + timedelay + "毫秒";
} else if (timedelay &= 400) {
statusdelay = "比较快," + timedelay + "毫秒";
} else if (timedelay &= 600) {
statusdelay = "一般," + timedelay + "毫秒";
} else if (timedelay &= 700) {
statusdelay = "比较慢," + timedelay + "毫秒";
} else if (timedelay &= 800) {
statusdelay = "非常慢," + timedelay + "毫秒";
statusdelay = "超级慢"
status.setText("当前网速:" + statusdelay,4)
paitypestate=getPaiType(paitype)
if(paitypestate){
paiNum=thread.get("paiNum")
if(paiNum){
paitypestate +=",最近" ++ paiNum ++"人拍";
status.setText(paitypestate,1);
status.setText(state2,2);
getPaiType=function(paitype){
if(paitype=="1"){
paitypestate="可竞拍";
}else if(paitype=="2"){
paitypestate="竞拍结束,已成交";
}else if(paitype=="3"){
paitypestate="您的出价已处于领先位置";
}else if(paitype=="4"){
paitypestate="余额不足";
}else if(paitype=="5"){
paitypestate="请先会员登陆";
}else if(paitype=="6"){
paitypestate="获胜次数已经超过本月上限";
}else if(paitype=="7"){
paitypestate="未通过手机验证,无法参与竞拍活动";
paitypestate=
//所有竞拍记录线程
getPriceLog=function(){
import inet.
import web.
import string.
//过滤重复项
string.ex.distinct =
function(str,sep='\n',tdist) {
var tnew = {}
var tarr = ..string.split( str,sep);
for (i,line in tarr) {
if(not tdist[line] ) {
tdist[line]=1;
..table.push( tnew,line );
tdist[line]++;
return ..string.join(tnew,sep);
var tablog={}//所有竞拍记录
var http=inet.http()
http.setTimeouts(00);
while(win.delay(1000)){
if(thread.get("allprice")){
html=http.post("/auction/auction_service_log.php?aid=" + thread.get("aid"),"aid=" + thread.get("aid"))
html=string.fromto(html) : "";
html=string.match(html,"(\[.*?\])")
if(#tablog&5000){//只保留最新5000条记录
for(i=1;500;1){
table.remove(tablog);
var tu={};
var tab=web.json.decode(html);//最新10个记录
for(i,t in tab){
if(t["type"]=1){
table.push(tablog,t["bprice"] ++ "," ++ t["addtime"] ++ "," ++ t["username"])
table.push(tu,t["username"]);
table.sort(tablog)
html=string.join(tablog,'\n');
html=string.ex.distinct(html)
tablog=string.split(html,'\n');
thread.set("allpailog",html)
html=string.join(tu,'\n');
html=string.ex.distinct(html)
tu=string.split(html,'\n');
thread.set("paiNum",#tu);//最新拍的人数
thread.set("allprice",false)
if(thread.get("pause")="stop" or thread.get("paitype")="2"){}
http.close()
//每次竞拍后倒计时毫秒数
fucGetTimePrice=function(){//线程
import inet.
var http=inet.http()
http.setTimeouts(00);
while(true){
if(thread.get("pause")="stop"){}
bidStartTime=time.tick();
html=http.post("/auction/auction_services.php", "aid[]=" + thread.get("aid") + "&key=" + thread.get("keyid"))
timedelay=time.tick()-bidStartT
html=string.fromto(html) : "";
//io.print(html)
paitype=string.match(html,"type""\:(.*?),")
if(paitype=="1"){
pauseTime=string.match(html,"time""\:""(\d+)""") : 0;
price=string.match(html,"""price""\:""(.*?)""") : 0;
username=string.match(html,"""username""\:""(.*?)""");
pauseTime=tonumber(pauseTime)
//price=tonumber(price)
if(pauseTime&0){
thread.set("time",pauseTime);
//倒计时毫秒数
thread.set("bidStartTime",bidStartTime);
thread.set("allprice",true)
if(price){
thread.set("price",price)
if(username){
thread.set("username",username)
thread.set("timedelay",timedelay)
thread.set("paitype",paitype)
if(paitype=="2"){}//已成交,结束
http.close()
start=function(){//初始化
thread.set("pause","")
mypailog="";//我的竞拍
timedelay=0;//网络延时
state2="";
mypailoglast="";
loginame=winform.ed_loginame.//会员名
mypaisuccess=0;
thread.set("time",null);
//倒计时毫秒数
thread.set("bidStartTime",null);//开始秒数
aid=string.match(wb.location,"_(\d+)");//竞拍产品ID
keyid=string.match(wb.head.outerHTML,"zq\.service\.js\?key=(.*?)""");//所需key
thread.set("aid",aid)
thread.set("keyid",keyid)
if(!aid or !keyid){
status.setText("请先打开单个竞拍页",1);
winform.bt_start.oncommand = function(id,event){//开始
if(not start()){ }
thread.create(fucGetTimePrice);//线程
thread.create(getPriceLog);//所有竞拍记录
while(win.delay(1000)){
if(thread.get("time") and thread.get("bidStartTime")){//倒计时
while(win.delay(10)){
baiDelay=tonumber(winform.ed_delay.text) : 100;//开拍网速(毫秒)
baiDtime=tonumber(winform.ed_baitime.text) : 1500;//最迟开拍时间(毫秒)
baiPrice=tonumber(winform.ed_paiprice.text) : 0.01;//开拍价
timedelay=thread.get("timedelay")
paitype=thread.get("paitype");
username=thread.get("username")
price=thread.get("price");
if(price and username){
state2=price ++ "," ++
if(paitype=="2"){showlog(); }//已成交,结束
dt=thread.get("time")-(time.tick()-thread.get("bidStartTime"));//计算倒计时剩于毫秒数
formatTime(dt);
//格式化计时器
if(dt&=0){}
if(timedelay&=baiDelay and dt&=baiDtime){//到了最后1.5秒拍
mypaisuccess++;
mypailog=tostring(price);
if(tonumber(price)&=baiPrice){//到了开拍价
time1=time.tick();
html=http.post("/auction/auction_service_bid.php", "aid=" + aid):"";
dt=time.tick()-time1;
mypaitype=string.match(html,"type""\:(.*?),") : string.match(html,"type""\:(\d+)")
if(mypaitype=="1"){//出价成功
pauseTime=string.match(html,"""time""\:""(\d+)""") : 0;
new_price=string.match(html,"""new_price""\:""(.*?)""") : 0;
username=string.match(html,"""username""\:""(.*?)""");
pauseTime=tonumber(pauseTime)
thread.set("time",pauseTime);
thread.set("bidStartTime",time.tick());
paitypestate = ',开始拍\n' ++ new_price ++ "," ++ username ++ "," ++ pauseT
paitypestate=getPaiType(mypaitype) : "超时"
mypailog += "," ++ paitypestate ++ "," ++ mypaisuccess ++ "次" ++ "," ++ dt ++"毫秒";
mypailog += ",未到开拍价," ++ mypaisuccess ++ "次";
showlog();
showlog();
if(thread.get("pause")="stop"){status.setText("暂停",1);}
showlog();
if(thread.get("pause")="stop"){status.setText("暂停",1);}
if(paitype=="2"){ }//已成交,结束
winform.bt_stop.oncommand = function(id,event){
thread.set("pause","stop")
winform.st_aau.oncommand = function(id,event){
process.execute("/");
wb = web.form( winform.static);//
,,0x/*_DLCTL_SILENT*/ | 0x10/*_DLCTL_DLIMAGES*/
wb.NewWindow2=function( ppDisp, Cancel) {
return wb.openproxy
http=inet.http()
http.setTimeouts(00);
winform.richedit.limit=999;
status=win.ui.statusbar(winform)
status.addItem("",200)
status.addItem("",200)
status.addItem("",100)
status.addItem("",2000)
winform.text="点零零竞拍网自动竞拍器"
winform.show(true)
wb.go("/navigate/11297")
win.loopMessage();
return winform,
开源中国-程序员在线工具:
相关的代码(214)
5回/23555阅
22回/14805阅
27回/11116阅
18回/9710阅
17回/9266阅
57回/8129阅
25回/8258阅
13回/7903阅
13回/7641阅
27回/6724阅
goog 太棒了 昨天就想贴出来了,由作者本人贴更好!
2楼:love_1 发表于
very nice ,能抢到不 哈哈
一直想学aauto,现在每天上班偷出1小时来搞这个。
3楼:love_1 发表于
貌似有错误
4楼:love_1 发表于
303行不支持次操作call
定义类型:method
名字:setTimeouts
5楼:carlaau 发表于
引用来自“qeenoo”的评论303行不支持次操作call
定义类型:method
名字:setTimeouts你应该是用早期的版本,请从官方下载最新版
6楼:love_1 发表于
我每天都是直接SVN官方版本啊
7楼:love_1 发表于
SVN不是最新的?晕死,一看还是0.66的
8楼:qqmmcc 发表于
引用来自“qeenoo”的评论SVN不是最新的?晕死,一看还是0.66的不会吧,你是什么SVN呀,SVN的版本早变了。
9楼:carlaau 发表于
引用来自“qeenoo”的评论SVN不是最新的?晕死,一看还是0.66的SVN:/svn/aauto帐号密码都是aauto
10楼:love_1 发表于
感谢 已经升级
11楼:love_1 发表于
接下来 会有很多小工具诞生。。。。哈哈
12楼:lanybass 发表于
还用自己写???
这个网站自己就提供自动出价功能,可以去分析下
13楼:d.er 发表于
引用来自“lanybass”的评论还用自己写???
这个网站自己就提供自动出价功能,可以去分析下
这网站有这功能, 不能说别的网站、别的人就不用写.别人写的知识在别人那里, 自已写的知识才会属于自已, 分享出来更值得尊重. 支持原创,支持自已写!
14楼:xj 发表于
引用来自“lanybass”的评论还用自己写???
这个网站自己就提供自动出价功能,可以去分析下
404 Not Found那破网站就是你的吧????你没试下能用不能用啊
15楼:darryl0246 发表于
我是一个外行,请问这个源代码怎么才能变成程序呢?
开源从代码分享开始
carlaau的其他代码至尊宝竞拍网是骗子现在的竞拍网好多啊 我拍 ok 拍必得 拍乐得 都还不错 在里面也拍过 TM的最垃圾的就是至_百度知道
至尊宝竞拍网是骗子现在的竞拍网好多啊 我拍 ok 拍必得 拍乐得 都还不错 在里面也拍过 TM的最垃圾的就是至
现在的竞拍网好多啊
我拍 ok 拍必得 拍乐得
都还不错 在里面也拍过
TM的最垃圾的就是至尊宝了 400电话没人接
保价买的话费都3天了还没有冲上 每场竞拍都是没有到0就结束了 搞什么吗
打电话没人接 网站也没有通过验证 什么东西啊 骗子
我估计里面有托 或者机器人出价
提问者采纳
是的,那个就是个骗人的网站,大家不要上当。
其他类似问题
竞拍网的相关知识
按默认排序
其他2条回答
嗯 是骗子的
别的都几毛钱就买的东西
我一直点一直拍不到 后来保价买的
拍必中也不错的 可以去看看 百度 拍必中 第一个就是啦
您可能关注的推广
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁您现在的位置:
& &&富士S2900 点零零竞拍网仅1元起拍
18X光变富士S2900 点零零竞拍网仅1元起拍天极网数码影音频道 06:00
  【天极网频道11月24日消息】是一款拥有1400万像素成像能力,18倍光学变焦防抖,以及高清摄像功能的长焦相机。富士S2900HD是目前市场上,高性价比长焦的代表机型。今天笔者在点零零竞拍网看到,S2900的含发票售价仅为1元起拍,喜欢的朋友不妨来下面详细了解一下。商家网址
  图为:S2900HD
  富士S2900HD采用富士龙18倍光学变焦镜头,等效焦段28mm-504mm,采用1/2.3英寸 1400万有效像素CCD,配备3.0英寸LCD显示屏,具有全手动拍摄功能(P/A/S/M模式)。
  最高达ISO6400的感光度,全高清静态照片和720p高清录像,新增加了移动全景拍摄、收藏等级、照相簿助手等功能,供电还是使用4节AA供电。
  温馨提示:点零零竞拍网以最新的电子经营理念,最完善公平的网上拍卖平台,挑战传统的B2B、B2C、C2C 电子商务模式,为中国消费者提供一种全新的娱乐式电子商务平台。商品拍中了可以超低价格把商品抱回家,拍不中就直接补差价够买。除非你放弃补差购买,否则理论上你没有任何损失,而且还有个低价竞拍到的机会。但并非每个人都能低价拍到,参与就请保持正确心态。现在注册即送1300拍点,推荐好友更能获赠高达20%提成。区任玩任拍,免费练手。超低价购买数码产品就上点零零竞拍网!
  【参考价格】(竞拍促销价) 0元起拍
  【公司名称】点零零竞拍网
  【商家网址】
相机类型:长焦相机
有效像素(万):1400万
感光器件:CCD
液晶屏尺寸:3.0英寸
相当于35mm镜头尺寸:28-504mm
防抖支持:支持
(作者:Y责任编辑:秦静)
欢迎在新浪微博上关注我们
* 网友发言均非本站立场,本站不在评论栏推荐任何网店、经销商,谨防上当受骗!
游戏整机手机家电竞拍网到底是不是骗子?_百度知道
竞拍网到底是不是骗子?
现在都说竞拍网好玩,到底是什么东西,是不是骗子?看到础矗摆端肢得扮全堡户好多关于乐拍客的东西,到底是怎么样的一个网站呢?
提问者采纳
用户可础矗摆端肢得扮全堡户以按照一定价格购买竞拍权利,每次竞拍为产品价钱增加0.01元,同时竞拍时间增加10s。如果产品竞拍倒计时为0时,没有其他人再次竞拍,最后一个竞拍者就可以以当前的价格(通常非常低廉)买走该产品。 80%的竞拍网站都是有机器人参与出价的,形象的说就是骗子网站!记得采纳啊
其他类似问题
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁

我要回帖

更多关于 网上竞拍 的文章

 

随机推荐