QUOTE
Foreword:
This code is Very rough.
So I didn't keep the copyright.
If you want to improve it and sign on it, just go ahead, as long as it is reviewed by an expert, make sure you don't mess it up.
As you can see in the comments, I tried to make the auction host automatically reply to seal the auction, but it was not very successful.
It would be nice if you can fix it.
that's all
AuctionTimer.txt ( 3.97k )
Number of downloads: 52with a ongoing Auction have Auction Countdown Timer, it will show a countdown clock on the page, and alarm you when the last minute.

CODE
// ==UserScript==
// @name AuctionTimer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://forums.e-hentai.org/index.php?showtopic=*
// @match *://forums.e-hentai.org/index.php?act=ST&f=*&t=*
// @grant GM_deleteValue
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==
//f=77;
var ETAD=60*1000;//EndTimerDelayer
var ITM=3*60000//IgnoredTimeInMinute
var ITH=1*3600000//IgnoredTimeInHours
var ITD=1*86400000//IgnoredTimeInDays
//var EndLine='Post the End Line'
var TimerImage=document.querySelector('img[src*="reasoningtheory.net/countdown.png"]');
//var YourName=document.querySelector('#userlinks>p>b>a').innerHTML;
if(TimerImage)
{
var Y = TimerImage.src.match(/year=\d+/)[0].match(/\d+/)[0];
var M = TimerImage.src.match(/month=\d+/)[0].match(/\d+/)[0];
var d = TimerImage.src.match(/day=\d+/)[0].match(/\d+/)[0];
var h = TimerImage.src.match(/hour=\d+/)[0].match(/\d+/)[0];
var m = TimerImage.src.match(/minute=\d+/)[0].match(/\d+/)[0];
var AET = new Date(Y,M-1,d,h,+m+1);//AuctionEndTime
// var HostName=document.querySelector('span[class="bigusername"]>a').innerHTML;
if(!GM_getValue(ipb_input_t)&&new Date()<AET)
{
var Timer=document.querySelector('table[class="ipbtable"]>tbody>tr>td>div');
var IntEnd=setInterval(function(){
Timer.innerHTML=parseInt((AET-new Date())/3600000)+':'+parseInt((AET-new Date())/60000)%60+':'+parseInt((AET-new Date())/1000)%60
if(AET-new Date()<ETAD&&new Date()-AET<ITM)
{
GM_setValue(ipb_input_t,true);
if(confirm('This Auction will End in about['+parseInt((AET-new Date())/1000)+']s'))
{
clearInterval(IntEnd);
}
}
},400);
}
// if(HostName==YourName&&!GM_getValue(ipb_input_t))
// {
// var IntHost=setInterval(function(){
// if(new Date()-AET>0&&new Date()-AET<ITM)
// {
// GM_setValue(ipb_input_t,true);
// alert('This Auction Ended on['+parseInt((new Date()-AET)/1000)+']s ago');
// post('/index.php?showtopic='+ipb_input_t+'&st=0', openUrl(window.location.href), 'act=Post&CODE=03&f='+ipb_input_f+'&t='+ipb_input_t+'&st=0&auth_key='+ipb_md5_check+'&fast_reply_used=1&Post=Post the End Line&enableemo=yes&enablesig=yes&submit=Add Reply');
// clearInterval(IntHost);
// }
// },500);
// }
};
// function openUrl (url, newTab) {
// var a = document.createElement('a')
// a.href = url
// a.target = newTab ? '_blank' : '_self'
// a.click()
// }
// function post (href, func, parm, type) { // post
// var xhr = new window.XMLHttpRequest()
// xhr.open(parm ? 'POST' : 'GET', href)
// xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8')
// xhr.responseType = type || 'document'
// xhr.onerror = function () {
// xhr = null
// post(href, func, parm, type)
// }
// xhr.onload = function (e) {
// if (e.target.status >= 200 && e.target.status < 400 && typeof func === 'function') {
// var data = e.target.response
// if (xhr.responseType === 'document' && document.querySelector('#messagebox', data)) {
// if (document.querySelector('#messagebox')) {
// document.querySelector('#csp').replaceChild(document.querySelector('#messagebox', data), document.querySelector('#messagebox'))
// } else {
// document.querySelector('#csp').appendChild(document.querySelector('#messagebox', data))
// }
// }
// func(data, e)
// }
// xhr = null
// }
// xhr.send(parm)
// }
This post has been edited by anruiersi: Aug 14 2018, 14:34