1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
   |  ==UserScript==  @name        skyeysnow auto reply  @namespace   Violentmonkey Scripts  @match       httpsskyeysnow.comforum.phpmod=viewthread&tid=32319  @grant       none  @version     1.0  @author      Roach Lin  @description 天雪论坛自动回复水楼赚金币  ==UserScript==
  (function(){ 	'use strict';
  	setTimeout(()={ 	 		var poem=   		[ 	  		山有木兮木有枝,心悦君兮君不知。, 	  		人生若只如初见,何事秋风悲画扇。, 	  		十年生死两茫茫,不思量,自难忘。, 	  		曾经沧海难为水,除却巫山不是云。, 	  		玲珑骰子安红豆,入骨相思知不知。, 	 		只愿君心似我心,定不负相思意。, 			平生不会相思,才会相思,便害相思。, 	  		愿得一心人,白头不相离。, 	  		山无陵,江水为竭。冬雷震震,夏雨雪。天地合,乃敢与君绝。, 	  		入我相思门,知我相思苦。   		] 	 		document.getElementById('fastpostmessage').value=poem[Math.floor(Math.random()10)]; 		document.getElementById('fastpostrefresh').checked=false; 		document.getElementById('fastpostsubmit').click();
          location.reload(); 	 	},1800000);
  })();
 
  |