Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> [Script]AuctionTimer

 
post Aug 14 2018, 08:59
Post #1
anruiersi



hijek
****
Group: Members
Posts: 329
Joined: 7-November 11
Level 375 (Godslayer)


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


Attached File  AuctionTimer.txt ( 3.97k ) Number of downloads: 52


with a ongoing Auction have Auction Countdown Timer, it will show a countdown clock on the page, and alarm you when the last minute.
Attached Image

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
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 14 2018, 13:58
Post #2
Scremaz



A certain pervert. OT expert. Just dancing around in the game.
***********
Group: Gold Star Club
Posts: 24,304
Joined: 18-January 07
Level 500 (Ponyslayer)


do you have an example of use? saying, a pic would be good enough
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
post Aug 14 2018, 14:34
Post #3
anruiersi



hijek
****
Group: Members
Posts: 329
Joined: 7-November 11
Level 375 (Godslayer)


a little mistake:
parseInt((AET-new Date())/3600000)%60
->
parseInt((AET-new Date())/3600000)
User is offlineProfile CardPM
Go to the top of the page
+Quote Post


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 


Lo-Fi Version Time is now: 4th April 2025 - 00:53