bw-text-rapidpanel

http://www.bloodyworld.com

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name           bw-text-rapidpanel
// @description    http://www.bloodyworld.com
// @include http://www.bloodyworld.com/*
// @exclude http://www.bloodyworld.com/xfn/*
// @exclude http://www.bloodyworld.com/xfn2/*
// @version 0.0.1.20150604004702
// @namespace https://greasyfork.org/users/12000
// ==/UserScript==
// (c) Anton Fedorov aka DataCompBoy, 2006-2007
// Clan <The Keepers of Balance>.

  window.opera.defineMagicFunction(
	'RP_ajaxCompleteUse',
	function (real, thisObject) {
	  var content = '<div style="margin: 0px; padding: 0px; position: absolute; z-index: 100; right: 10px; top: 0;">';
	  content += '<table style="border: 1px solid blue" border="0" cellpadding="0">';
	  for ( var i = 1; i < RP_slots.length; i++) {
		var el = RP_slots[i];
		var num_slot = i;
		if (!((i-1) % 4)) content += '<tr>';
		if (el) {
		  if (el.item_type=='complete') {
			var image_src=RP_layout_url_all+'/subject/rapid/shlem' + el.image + '.gif';
		  } else {
			var image = el.image.replace(/01\.gif/, "00.gif");
			var image_src = RP_layout_url_all+'/subject' + image;
		  }
		  var onclick = "RP_useSlot(" + el.slot + ")";
		  var comment_alt = num_slot;
		  var comment_title = 'Slot ' + num_slot + ': ' + el.name + '';
		  content += '<td style="width: 20; height: 20;" id="slot_'
					 + num_slot + '"><img onclick="' + onclick
					 + ';" src="' + image_src + '" alt="' + comment_alt + '" title="' + comment_title + '" border="0"></td>';
		} else {
		  content += '<td style="width: 20; height: 20;" id="slot_'
					 + num_slot + '"><img src="'+RP_layout_url_all+'/subject/defaults/ge-spell.gif"></td>';
		}
	  }
	  content += '</tr></table></div>';
	  $('RP_use').innerHTML = content;
	}
  );

  window.opera.addEventListener('AfterEvent.load',function(e){
	if( e.event.target instanceof Document ) {
	  openMenu();
	}
  },false);