View Single Post
Old 05-19-2009, 02:31 AM   #1
Zwivix
AichtVeeGee4Life

 
Zwivix's Avatar
 
Moebius Syndrome Champion!Tournaments Won: 7

In-Game Name: Zwivix|iThePirate|GardenWeasel
Current Level: 103.01| 67.10|50.24
Server: Teva
Posts: 2,412
Zwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to beholdZwivix is a splendid one to behold
Dragon Cave Eg Viewer

To all that are using Dragon Cave, and use Firefox.

If you have the addon greasemonkey you can view your eggs/hatchlings/dragons as they progress. It shows up on very page you open and on every ad.

I dont know if you guys are intrested or already knew about it.

Here is where I got it from the beginning. The dragcave link on there no longer works, but I managed to have it work for me.

In case it doesnt work for who wants to try this is my current settings for my script:

// ==UserScript==
// @name DC
// @namespace http://dragcave.net
// @include http://*
// ==/UserScript==

var ele = document.createElement("div");

var DisplayType = "horizontal"; // horizontal, vertical, or random (one at a time display)
var myDragonList = "3SOQ,KsUG,BlFK,ocw0,"; //Replace these with your own! These are just examples.

var clickable = true; //link to dragon page: true or false

var disappear = false; //link disappearing: true or false

//Begin display bar customization.
ele.style.position = "fixed";
ele.style.right = "5px";
ele.style.bottom = "5px";
ele.style.border = "solid 1px black";
ele.style.zIndex = "1000";
ele.style.textAlign = "center";
//End display editing!

var myDragonListArray = new Array();
var myDragonListArray = myDragonList.split(",");

switch(DisplayType) {

case "random":
var i = Math.round(Math.random()*(myDragonListArray.length-1));
ele.innerHTML = getDragonURL(myDragonListArray[i],clickable);
break;

case "horizontal":
for (var i=0; i<myDragonListArray.length ; i=i+1) {
ele.innerHTML += getDragonURL(myDragonListArray[i],clickable);
}
break;

case "vertical":
for (var i=0; i<myDragonListArray.length ; i=i+1) {
ele.innerHTML += getDragonURL(myDragonListArray[i],clickable) + '<br />';
}
break;

}

if (!(clickable) && disappear) {
ele.setAttribute("onmouseover", "this.style.display = 'none';");
}

document.body.appendChild(ele);

function getDragonURL(dragonCode,click){
var dragonPicCode = "";
if (click) {
dragonPicCode += '<a href="http://dragcave.net/view/'+ dragonCode +'" target="_blank">';
}
dragonPicCode += '<img src="http://dragcave.net/image/'+ dragonCode+'/1.gif" style="border-width: 0; max-height: 28px;"/>';
if (click) {
dragonPicCode += '</a>';
}
return dragonPicCode;
}


This is what you need to have so your dragons show on all your pages.

I dont know how to make it give you clicks every page,so if anyone can find some info on that, or we can just use it for keeping track of your eggs.
__________________

● If I kill you, that means I'll be the one closest to you when you're on your deathbed●
● If anyone else kills you, I'll kill that person●


Disclaimer:150% guy I prefer the siggys with the hot babes for my own visual gratification!"

TEVA:
||Zwivix (Lv.103)[Ranger]||Holy_VanGuards||♥Nilathiel♥
||iThePirate(Lv.66)[Warrior]||VanGuards
||GardenWeasel(Lv.50)[WizMage]||VanGuards
Zwivix is offline   Reply With Quote