DC_safe_zone

Try to take over the world!

目前為 2016-11-14 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         DC_safe_zone
// @author       Ladoria
// @version		 0.1
// @namespace    DC_custom
// @description  Try to take over the world!
// @match        http://www.dreadcast.net/Main
// @grant        none
// ==/UserScript==

$(document).ready( function() {
	$('body').append('<style> #dc_safe_zone {    background: url("http://img4.hostingpics.net/pics/703237distancerats.png") no-repeat;    top: 150px;    left: 150px;    width: 400px;    height: 400px;    float: left;    z-index: 1000;		display: none; }</style>'); // CSS de la zone.
	$('#carte').append('<div id="dc_safe_zone"></div>'); // HTML de la zone.
});

function display_safezone() {
	if (true == /SOUTERRAIN/gi.test($('#lieu_actuel .titre1').html())) // Pas de souseterrain ? Quitter.
		return;
	if ("GRATTE-CIEL D'HABITATION" !== $('#lieu_actuel .titre1').html()) // Pas de souseterrain ? Quitter.
		return;
	
	if(0 == $('#combat_barre_out').length) {// Pas de combat ? Cacher la zone, quitter.
		$('#dc_safe_zone').hide();
		return;
	}
	
	$('#dc_safe_zone').show(); // Sinon, afficher la zone.
}

$(document).ajaxComplete( function(a,b,c) { // A chaque refresh même invisible
	if(/Check/.test(c.url)) { // Durant certains refresh
		display_safezone();
	}
});

console.log('DC - Save Zone started');