Comprehensive Magistream Guide

Discuss MagiStream and site-related topics.
User avatar
Doggyears
MagiStream Donor
Member of The Herbalist's Guild Member of Artificer's Association
CreaturesTrade
Posts: 2352
Joined: August 9th, 2009, 9:09:23 pm
Gender: Female
Location: Silva Forest

Re: Comprehensive Magistream Guide

Post by Doggyears »

Oh, you're right! I'll put that in.
♫♪♫"It will never be too late for you to cross the finish line; get back up again—try it one more time"♪♫♪
Image

Image
User avatar
TheNewBlack
MagiStream Donor
Member of The Dark Brotherhood Member of Artificer's Association
CreaturesTrade
Posts: 1173
Joined: April 22nd, 2017, 1:18:54 am
Gender: Kraken
Contact:

Re: Comprehensive Magistream Guide

Post by TheNewBlack »

Hi, just wanted to let you know I just wrote a very detailed tutorial on how to set up your computer for optimal goldmining. Feel free to use this in your guide if you like.

This is a bit complicated, but believe me, it's so worth it. You'll be making like 100k a day.

1. First, download Opera 12. This is the best browser for goldmining because it's fast. Other browsers will not be able keep up with all the tabs you open. And the biggest gold mines do not even work without Opera. This is the old version of Opera because the next thing you need to download does not work on newer versions.
Download here: http://www.opera.com/download/index.dml ... 11&local=y

2. Second, download Snap-Links for Opera. This will allow you to click lots of creatures at once.
Download here: https://addons.opera.com/en/extensions/ ... nap-links/

3. Check to make sure you have Java on your computer: https://www.java.com/en/download/installed.jsp

If you get a congratulations message, you already have it. If not, download it here:
http://www.java.com/en/download/manual.jsp

4. Now you need to make file types visible on your computer.

This may be different depending on the type of computer you have, so if you are having difficulty, let me know. You should be able to google how to do this depending on your computer type.

On my computer, I open File explorer, click the View tab, and check File name extensions.

On another tutorial I found these instructions: Open File explorer and choose Tools >> Folder Options. Scroll down till you find “Hide extensions for known file types” and uncheck it.

5. Create a new folder on your PC, name it "Goldmining". You can put this folder anywhere you like, just remember where it is.

6. Now create two text files in the Goldmining folder using Notepad. To do this, open the folder, right click on the background, click New, and press Text Document. Name them snap-links and CloseIT.

7. Copy the code below and paste it into the file you named snap-links. Then save and exit.

Code: Select all

javascript:({
	init: function() {
		this.box = document.createElement("div");
		this.box.id = "snap-links-box";
		this.bs = this.box.style;
		this.bs.backgroundColor = "rgba(0,128,255,.1)";
		this.bs.border = "1px solid rgb(255,255,0)";
		this.bs.WebkitBoxSizing = 
		this.bs.OBoxSizing = 
		this.bs.MozBoxSizing = 
		this.bs.boxSizing = 'border-box';
		this.bs.position = "absolute";
		this.bs.zIndex = "2147483647";
		this.cursor = document.body.style.cursor;
		document.body.style.setProperty("cursor", "crosshair", "important");
		addEventListener("mousedown", this, true);
	},
	uninit: function() {
		var self = this;
		removeEventListener("mousemove", this, true);
		removeEventListener("mouseup", this, true);
		setTimeout(function(){
			removeEventListener("click", self, true);
		}, 10);

		this.box.parentNode.removeChild(this.box);
		this.box = null;
		if (this.cursor) {
			document.body.style.cursor = this.cursor;
		} else {
			document.body.style.removeProperty("cursor");
		}
	},
	handleEvent : function(event){
		if (event.button) return false;
		event.preventDefault();
		event.stopPropagation();
		switch(event.type){
			case "mousedown":
				this.downX = event.pageX;
				this.downY = event.pageY;
				this.bs.left = this.downX + "px";
				this.bs.top  = this.downY + "px";
				document.body.appendChild(this.box);
				removeEventListener("mousedown", this, true);
				addEventListener("mousemove", this, true);
				addEventListener("mouseup", this, true);
				addEventListener("click", this, true);
				break;
			case "mousemove":
				var moveX = event.pageX;
				var moveY = event.pageY;
				if (this.downX > moveX) this.bs.left = moveX + "px";
				if (this.downY > moveY) this.bs.top  = moveY + "px";
				this.bs.width  = Math.abs(moveX - this.downX) + "px";
				this.bs.height = Math.abs(moveY - this.downY) + "px";
				break;
			case "mouseup":
				this.boxRect = this.box.getBoundingClientRect();
				this.uninit();
				if (this.boxRect.width > 0 && this.boxRect.height > 0)
					this.command(event);
				break;
		}
	},
	command: function(aEvent) {
		var links = [];
		var checks = [];
		var linkhash = {};
		var x = document.evaluate(
			'//a[not(.//img)] | //a//img | //input[@type="checkbox"]',
			document.body,
			null,
			XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
			null
		);
		for (var i = 0, len = x.snapshotLength; i < len; i++) {
			var elem = x.snapshotItem(i);
			if (elem.offsetWidth <= 1 || elem.offsetHeight === 0)
				continue;
			if (!this.isOverlap(elem))
				continue;
			if (getComputedStyle(elem, null).visibility === "hidden")
				continue;

			if (elem instanceof HTMLImageElement) {
				elem = document.evaluate(
					'ancestor-or-self::a', elem, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null)
					.singleNodeValue;
			}
			if (elem instanceof HTMLAnchorElement) {
				if (!linkhash[elem.href] && 
				    /^(?:http|data|file)/.test(elem.href) && 
				    elem.hasAttribute("href") && 
				    elem.getAttribute("href")[0] != "#") {
					linkhash[elem.href] = true;
					links.push(elem);
				}
			}
			else if (!elem.disabled){
				checks.push(elem);
			}
		};
		if (links.length === 0 && checks.length === 0)
			return;
		if ((links.length === 0 || aEvent.shiftkey) && checks.length > 0) {
			this.toggleChecks(checks);
		} else if (links.length > 0 && aEvent.ctrlKey) {
			alert(links.join("\n"));
		} else if (links.length > 0 && checks.length === 0) {
			this.openLinks(links);
		} else if (confirm("OK: ??????\n?????: ???????? ON/OFF")) {
			this.openLinks(links);
		} else {
			this.toggleChecks(checks);
		}
	},
	openLinks: function(links) {
		if (window.chrome) {
			for (var i = 0, len = links.length; i < len; i++) {
				var evt = document.createEvent("MouseEvents");
				evt.initMouseEvent(
					"click", true, true, window, 
					0, 0, 0, 0, 0, 
					true, false, i===0, false, 
					0, null);
				var a = document.createElement("a");
				a.href = links[i].href;
				a.dispatchEvent(evt);
			};
		} else if (window.opera) {
			var i = 0;
			function o(url) {
				var elem = links[i++];
				if (!elem) return;
				window.open(elem.href);
				setTimeout(o, i * 10);
			}
			setTimeout(o, i * 10);
		} else {
			for (var i = 0, len = links.length; i < len; i++) {
				window.open(links[i].href);
			};
		}
	},
	toggleChecks: function(checks) {
		for (var i = 0, len = checks.length; i < len; i++) {
			checks[i].checked = !checks[i].checked;
		};
	},
	isOverlap: function(aElem) {
		var rects = aElem.getClientRects();
		for (var i = 0, rect; rect = rects[i]; i++) {
			if (this.boxRect.left < rect.right &&
			    this.boxRect.right > rect.left &&
			    this.boxRect.top < rect.bottom &&
			    this.boxRect.bottom > rect.top)
			return true;
		};
		return false;
	},

}).init();
8. Now copy and paste the code below into your CloseIT file. Save and close.

Code: Select all

// ==UserScript==
// @name           CloseIt
// @namespace      Magistream
// @include        http://magistream.com/creature/*
// ==/UserScript==

window.close();
9. Now go to your Goldmining file and rename your text files. Right click on it, select rename. Change the .txt part of the file names to .js and ignore the warning messages. This changes these files from ordinary text files into scripts, and don't worry, it won't harm your computer.

10. Start up Opera 12. Click the Opera button in the corner of the screen, select Settings, then Preferences. Here you will make several changes to the settings which I will list below.

A. Change the Pop-up settings to Open all Pop-ups.

B. Then click the Advanced tab and go to Cookies. Check Delete new cookies when exiting Opera.

C. Then go to History, check Empty on exit, this should help keep it from lagging.

D. Then click Security, and click the menu by Auto-update. Choose Do not check for updates. Otherwise, it will automatically update Opera and goldmining will stop working.

E. Then click Content, and make sure Enable JavaScript and Enable plug-ins are checked.

F. Then click JavaScript Options, and at the bottom click Choose, then find and select your Goldmining folder.

G. Click OK. Close the browser and start it again.

11. You're ready to go goldmining! The best places to goldmine are these three websites:

Magi-ifn.net

PetHatchery.co.uk

imagefreegoldmine.wikidot.com


The first 2 are egg hatcheries and therefore will yield more gold per click, so start with those first, finish mining them, and then go to the image free gold mine. But before we start, let's make sure you're set up with an Alicanto Heart.

12. If you don't already have one, you will need an Alicanto Heart on Magistream to make sure you're getting the maximum amount of gold per click. An Alicanto Heart will enable you to receive 5 gold for clicking on an egg instead of only 1 gold. This means you'll be making 5X as much gold goldmining.

If you don't have one already, you're going to need access to the Artificer's Shop. To do that you'll need to complete a quest. This walkthrough will take you step-by-step through how to do it:
http://magistream.wikia.com/wiki/Quest:_Artificer

13. After you have finished the quest, go to Shops on Magistream, then click Artificer's Shop. Buy the Alicanto Heart.

14. Ok, now you're ready to go goldmining. Open up Opera 12, go to magistream.com and log in.

Then go to Magi-ifn.net and click on the background of the page, then use the scrollbar on the right to scroll down a little, then click and drag to the left of the dots. An outlined box should appear, drag this over all the dots to select them, then let go. It can be a little tricky so keep clicking around and trying until it works. This should open all the links selected in new tabs, and automatically close them as they load.

15. Ok, now you can open another browser and play Magistream on that while you're earning gold. You should see your gold going up each time you refresh. If you don't, double check that you are logged in on Opera and that everything is working.

16. After all the tabs have closed, then go to pethatchery.co.uk and repeat the process. Mine all the pages and then advance to imagefreegoldmine.wikidot.com. Select a mine and select the entire page of dots (unless your computer freezes up, then select whatever your computer can handle).

17. This will give you about 3k-3500 gold per page. You can just keep it running in the background all day as you go about your business. It takes roughly 40 minutes on my computer to goldmine one page, so set a timer for 40 minutes, and then when it buzzes, go back to Opera and go goldmine the next page. Repeat the process.

18. If you find Opera beginning to slow down, get laggy, or refuse to open, you'll need to download this program:
http://www.piriform.com/ccleaner

This will keep it running fast. Just run it once a day after you're done goldmining, or whenever you are having problems.


OK, that's it! Happy goldmining!

Code: Select all

This is a bit complicated, but believe me, it's so worth it. You'll be making like 100k a day. 

1. First, [b]download Opera 12[/b]. This is the best browser for goldmining because it's fast. Other browsers will not be able keep up with all the tabs you open. And the biggest gold mines do not even work without Opera. This is the old version of Opera because the next thing you need to download does not work on newer versions.
Download here: http://www.opera.com/download/index.dml/?os=windows&ver=12.11&local=y

2. Second, [b]download Snap-Links for Opera[/b]. This will allow you to click lots of creatures at once. 
Download here: https://addons.opera.com/en/extensions/details/snap-links/

3. [b]Check to make sure you have Java[/b] on your computer: https://www.java.com/en/download/installed.jsp

If you get a congratulations message, you already have it. If not, download it here:
 http://www.java.com/en/download/manual.jsp

4. [b]Now you need to make file types visible on your computer[/b].

This may be different depending on the type of computer you have, so if you are having difficulty, let me know. You should be able to google how to do this depending on your computer type. 

On my computer, I open [b]File explorer[/b], click the [b]View[/b] tab, and check [b]File name extensions.[/b]

On another tutorial I found these instructions: Open [b]File explorer[/b] and choose [b]Tools >> Folder Options[/b]. Scroll down till you find “[b]Hide extensions for known file types[/b]” and uncheck it.

5. [b]Create a new folder on your PC, name it "Goldmining".[/b] You can put this folder anywhere you like, just remember where it is.

6. [b]Now create two text files in the Goldmining folder[/b] using Notepad. To do this, [b]open the folder[/b], [b]right click[/b] on the background, click [b]New[/b], and press [b]Text Document[/b]. Name them [b]snap-links[/b] and [b]CloseIT[/b].

7. [b]Copy the code below and paste it into the file you named snap-links[/b]. Then save and exit.
[code]javascript:({
	init: function() {
		this.box = document.createElement("div");
		this.box.id = "snap-links-box";
		this.bs = this.box.style;
		this.bs.backgroundColor = "rgba(0,128,255,.1)";
		this.bs.border = "1px solid rgb(255,255,0)";
		this.bs.WebkitBoxSizing = 
		this.bs.OBoxSizing = 
		this.bs.MozBoxSizing = 
		this.bs.boxSizing = 'border-box';
		this.bs.position = "absolute";
		this.bs.zIndex = "2147483647";
		this.cursor = document.body.style.cursor;
		document.body.style.setProperty("cursor", "crosshair", "important");
		addEventListener("mousedown", this, true);
	},
	uninit: function() {
		var self = this;
		removeEventListener("mousemove", this, true);
		removeEventListener("mouseup", this, true);
		setTimeout(function(){
			removeEventListener("click", self, true);
		}, 10);

		this.box.parentNode.removeChild(this.box);
		this.box = null;
		if (this.cursor) {
			document.body.style.cursor = this.cursor;
		} else {
			document.body.style.removeProperty("cursor");
		}
	},
	handleEvent : function(event){
		if (event.button) return false;
		event.preventDefault();
		event.stopPropagation();
		switch(event.type){
			case "mousedown":
				this.downX = event.pageX;
				this.downY = event.pageY;
				this.bs.left = this.downX + "px";
				this.bs.top  = this.downY + "px";
				document.body.appendChild(this.box);
				removeEventListener("mousedown", this, true);
				addEventListener("mousemove", this, true);
				addEventListener("mouseup", this, true);
				addEventListener("click", this, true);
				break;
			case "mousemove":
				var moveX = event.pageX;
				var moveY = event.pageY;
				if (this.downX > moveX) this.bs.left = moveX + "px";
				if (this.downY > moveY) this.bs.top  = moveY + "px";
				this.bs.width  = Math.abs(moveX - this.downX) + "px";
				this.bs.height = Math.abs(moveY - this.downY) + "px";
				break;
			case "mouseup":
				this.boxRect = this.box.getBoundingClientRect();
				this.uninit();
				if (this.boxRect.width > 0 && this.boxRect.height > 0)
					this.command(event);
				break;
		}
	},
	command: function(aEvent) {
		var links = [];
		var checks = [];
		var linkhash = {};
		var x = document.evaluate(
			'//a[not(.//img)] | //a//img | //input[@type="checkbox"]',
			document.body,
			null,
			XPathResult.ORDERED_NODE_SNAPSHOT_TYPE,
			null
		);
		for (var i = 0, len = x.snapshotLength; i < len; i++) {
			var elem = x.snapshotItem(i);
			if (elem.offsetWidth <= 1 || elem.offsetHeight === 0)
				continue;
			if (!this.isOverlap(elem))
				continue;
			if (getComputedStyle(elem, null).visibility === "hidden")
				continue;

			if (elem instanceof HTMLImageElement) {
				elem = document.evaluate(
					'ancestor-or-self::a', elem, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null)
					.singleNodeValue;
			}
			if (elem instanceof HTMLAnchorElement) {
				if (!linkhash[elem.href] && 
				    /^(?:http|data|file)/.test(elem.href) && 
				    elem.hasAttribute("href") && 
				    elem.getAttribute("href")[0] != "#") {
					linkhash[elem.href] = true;
					links.push(elem);
				}
			}
			else if (!elem.disabled){
				checks.push(elem);
			}
		};
		if (links.length === 0 && checks.length === 0)
			return;
		if ((links.length === 0 || aEvent.shiftkey) && checks.length > 0) {
			this.toggleChecks(checks);
		} else if (links.length > 0 && aEvent.ctrlKey) {
			alert(links.join("\n"));
		} else if (links.length > 0 && checks.length === 0) {
			this.openLinks(links);
		} else if (confirm("OK: ??????\n?????: ???????? ON/OFF")) {
			this.openLinks(links);
		} else {
			this.toggleChecks(checks);
		}
	},
	openLinks: function(links) {
		if (window.chrome) {
			for (var i = 0, len = links.length; i < len; i++) {
				var evt = document.createEvent("MouseEvents");
				evt.initMouseEvent(
					"click", true, true, window, 
					0, 0, 0, 0, 0, 
					true, false, i===0, false, 
					0, null);
				var a = document.createElement("a");
				a.href = links[i].href;
				a.dispatchEvent(evt);
			};
		} else if (window.opera) {
			var i = 0;
			function o(url) {
				var elem = links[i++];
				if (!elem) return;
				window.open(elem.href);
				setTimeout(o, i * 10);
			}
			setTimeout(o, i * 10);
		} else {
			for (var i = 0, len = links.length; i < len; i++) {
				window.open(links[i].href);
			};
		}
	},
	toggleChecks: function(checks) {
		for (var i = 0, len = checks.length; i < len; i++) {
			checks[i].checked = !checks[i].checked;
		};
	},
	isOverlap: function(aElem) {
		var rects = aElem.getClientRects();
		for (var i = 0, rect; rect = rects[i]; i++) {
			if (this.boxRect.left < rect.right &&
			    this.boxRect.right > rect.left &&
			    this.boxRect.top < rect.bottom &&
			    this.boxRect.bottom > rect.top)
			return true;
		};
		return false;
	},

}).init();
8. Now copy and paste the code below into your CloseIT file. Save and close.

Code: Select all

// ==UserScript==
// @name           CloseIt
// @namespace      Magistream
// @include        http://magistream.com/creature/*
// ==/UserScript==

window.close();
9. Now go to your Goldmining file and rename your text files. Right click on it, select rename. Change the .txt part of the file names to .js and ignore the warning messages. This changes these files from ordinary text files into scripts, and don't worry, it won't harm your computer.

10. Start up Opera 12. Click the Opera button in the corner of the screen, select Settings, then Preferences. Here you will make several changes to the settings which I will list below.

A. Change the Pop-up settings to Open all Pop-ups.

B. Then click the Advanced tab and go to Cookies. Check Delete new cookies when exiting Opera.

C. Then go to History, check Empty on exit, this should help keep it from lagging.

D. Then click Security, and click the menu by Auto-update. Choose Do not check for updates. Otherwise, it will automatically update Opera and goldmining will stop working.

E. Then click Content, and make sure Enable JavaScript and Enable plug-ins are checked.

F. Then click JavaScript Options, and at the bottom click Choose, then find and select your Goldmining folder.

G. Click OK. Close the browser and start it again.

11. You're ready to go goldmining! The best places to goldmine are these three websites:

Magi-ifn.net

PetHatchery.co.uk

imagefreegoldmine.wikidot.com


The first 2 are egg hatcheries and therefore will yield more gold per click, so start with those first, finish mining them, and then go to the image free gold mine. But before we start, let's make sure you're set up with an Alicanto Heart.

12. If you don't already have one, you will need an Alicanto Heart on Magistream to make sure you're getting the maximum amount of gold per click. An Alicanto Heart will enable you to receive 5 gold for clicking on an egg instead of only 1 gold. This means you'll be making 5X as much gold goldmining.

If you don't have one already, you're going to need access to the Artificer's Shop. To do that you'll need to complete a quest. This walkthrough will take you step-by-step through how to do it:
http://magistream.wikia.com/wiki/Quest:_Artificer

13. After you have finished the quest, go to Shops on Magistream, then click Artificer's Shop. Buy the Alicanto Heart.

14. Ok, now you're ready to go goldmining. Open up Opera 12, go to magistream.com and log in.

Then go to Magi-ifn.net and click on the background of the page, then use the scrollbar on the right to scroll down a little, then click and drag to the left of the dots. An outlined box should appear, drag this over all the dots to select them, then let go. It can be a little tricky so keep clicking around and trying until it works. This should open all the links selected in new tabs, and automatically close them as they load.

15. Ok, now you can open another browser and play Magistream on that while you're earning gold. You should see your gold going up each time you refresh. If you don't, double check that you are logged in on Opera and that everything is working.

16. After all the tabs have closed, then go to pethatchery.co.uk and repeat the process. Mine all the pages and then advance to imagefreegoldmine.wikidot.com. Select a mine and select the entire page of dots (unless your computer freezes up, then select whatever your computer can handle).

17. This will give you about 3k-3500 gold per page. You can just keep it running in the background all day as you go about your business. It takes roughly 40 minutes on my computer to goldmine one page, so set a timer for 40 minutes, and then when it buzzes, go back to Opera and go goldmine the next page. Repeat the process.

18. If you find Opera beginning to slow down, get laggy, or refuse to open, you'll need to download this program:
http://www.piriform.com/ccleaner

This will keep it running fast. Just run it once a day after you're done goldmining, or whenever you are having problems.


OK, that's it! Happy goldmining!
[/code]
Haven't been on Magistream in several months. Any gifts of recent creatures would be greatly appreciated!
ImageImageImageImageImage
User avatar
SwnyTddObsd
MagiStream Donor
Member of The Dark Brotherhood Member of Artificer's Association
CreaturesTrade
Posts: 6382
Joined: February 6th, 2010, 9:50:05 pm

Re: Comprehensive Magistream Guide

Post by SwnyTddObsd »

I was browsing this thread and just wanted to quickly share my own set up for goldmining on Opera! It's not written very comprehensively, but I've been having success using the most recent version of Opera.

I'm not truly sure whether it's any faster or slower than Opera 12, but if anyone else was interested in trying this method, I'd like to share what I've figured out about Opera 48. ^.^
Spoiler
I ran some very rudimentary timed tests between Opera 12 and 48 with 10, 200, 400, and 1000 links and found that they generally ran through the tabs with similar completion times. Opera 12 was a bit faster at and below 200 links and pretty closely matched Opera 48 at 400 and 1000. I like the sleek look of Opera 48, and put this together for anyone who needs anything in it. These aforementioned tests were not at all scientifically conducted. :t-sweat:
- - -
Basically, it comes down to:
[Download Opera] >> [Download LinkClump + adjust settings] >>
[Download Tampermonkey] >>[Install CloseIt] >> [???] >> [Profit!!]

And this time, there really is a profit!


1. Install the most recent version of Opera. I just went to the Opera site and downloaded the most conveniently downloaded version of this browser.

2. Install LinkClump. Like TheNewBlack said, SnapLinks does not work on newer versions of Opera. Instead, I found LinkClump, which has been doing the job for me. (You should check the Permissions, as they differ a bit from the SnapLinks permissions.)

3. Open the LinkClump options. LinkClump is currently buggy in that the only method of clicking that doesn't work is using the right mouse button click and drag. If you change the settings to left mouse button, it will work like a charm, and in my case, help my hand through long goldmining sprees!

You can access the settings through one of two methods:
a) the pop-up that will open when you first install LinkClump
Spoiler
Image
b) open the Extensions menu (shortcut: Ctrl+Shift+E) and going to Options under "LinkClump"
Spoiler
Image
4. Change the default LinkClump settings. When you get to the settings, click on the Edit button in that Actions tab and look at the top of the options listed. I recommend trying a left click setting with an optional key, and recommend against using only the left click, as this may interfere with normal left clicking functions on Opera.
Spoiler
Image
You can see here that my preferred setting is left mouse button + Z. Remember to save before exiting!

5. Download TamperMonkey. Tampermonkey is a great extension that could have a lot of uses outside of just Magistream! It allows you to manage userscripts in-browser, including the all-important CloseIt userscript.

6. Install the CloseIt script. Click on the new little Tampermonkey icon in the upper right of your browser. Select "Add a new script..." in the menu that pops up. It should look a little something like this:
Spoiler
Image
In the tab that pops up, select all the text in the text box and delete it.
Spoiler
Image
Replace it with the following code:

Code: Select all

// ==UserScript==
// @name           CloseIt
// @namespace      Magistream
// @include        http://magistream.com/creature/*
// ==/UserScript==

window.close();
Again, remember to save:
Spoiler
Image
7. Mine away! Rake in that gold! Read a book if you're like me and like opening 1000 links at once and giving your computer a minute to process the gargantuan task you've suddenly thrust upon it! And profit big time. I'm sure you've already read Doggyears' and TheNewBlack's great posts if you're reading this, and you'll find great goldmining tips and resources that apply the same to Opera 48!


trading art for creatures
+
have exams 12/2!
gonna be a bit on and off, sorry ; v;

[no creatures rn]
Spoiler

Code: Select all

[url=http://magistream.com/creature/9920633][img]http://magistream.com/img/9920633.gif[/img][/url][url=http://magistream.com/creature/9920636][img]http://magistream.com/img/9920636.gif[/img][/url][url=http://magistream.com/creature/9920634][img]http://magistream.com/img/9920634.gif[/img][/url][url=http://magistream.com/creature/9920635][img]http://magistream.com/img/9920635.gif[/img][/url]
signature image by
Angry Moth Noises[/size][/center]
User avatar
Doggyears
MagiStream Donor
Member of The Herbalist's Guild Member of Artificer's Association
CreaturesTrade
Posts: 2352
Joined: August 9th, 2009, 9:09:23 pm
Gender: Female
Location: Silva Forest

Re: Comprehensive Magistream Guide

Post by Doggyears »

Thank you TheNewBlack, that's much more detailed than mine! And thank you SwnyTddObsd, I'll mention your guide, too. ^.^ In the past the updated version of Opera was slower, but if that's changed it's great!
♫♪♫"It will never be too late for you to cross the finish line; get back up again—try it one more time"♪♫♪
Image

Image
User avatar
Chess
Member of The Dark Brotherhood Member of Artificer's Association Member of Preservationists Association
CreaturesTrade
Posts: 9586
Joined: April 26th, 2011, 6:32:02 pm
Gender: Female

Re: Comprehensive Magistream Guide

Post by Chess »

This is a great guide! Thanks so much for making it :D

One question though--is the "In Search of Monsters" quest repeatable? Can you get more than 1 spider egg now?
Image
User avatar
Desade
MagiStream Donor
Member of The Herbalist's Guild Member of Artificer's Association Member of Preservationists Association An icon depicting the element Life
CreaturesTrade
Posts: 2627
Joined: October 23rd, 2009, 11:29:37 pm
Gender: Female
Location: Right here.
Contact:

Re: Comprehensive Magistream Guide

Post by Desade »

I really think this should be a pinned post!
Image
I love you 3000, Bosco.
~ ♥ ~
my wishlist!
25/25 gifts, thank you!
~ • ~
User avatar
Doggyears
MagiStream Donor
Member of The Herbalist's Guild Member of Artificer's Association
CreaturesTrade
Posts: 2352
Joined: August 9th, 2009, 9:09:23 pm
Gender: Female
Location: Silva Forest

Re: Comprehensive Magistream Guide

Post by Doggyears »

Chess wrote:This is a great guide! Thanks so much for making it :D

One question though--is the "In Search of Monsters" quest repeatable? Can you get more than 1 spider egg now?
Sorry it's taken me so long to notice this question ^^; I'm perhaps not the best person to answer, either. But, I don't think you can repeat it.
♫♪♫"It will never be too late for you to cross the finish line; get back up again—try it one more time"♪♫♪
Image

Image
User avatar
Tinibree
Member of The Dark Brotherhood Member of Artificer's Association
CreaturesTrade
Posts: 998
Joined: May 1st, 2010, 4:49:47 pm
Gender: Non-binary

Re: Comprehensive Magistream Guide

Post by Tinibree »

You can do it twice, once for each spider
Image They/them
2/25 presents
Image Image Image ImageImage

Image
User avatar
TheNewBlack
MagiStream Donor
Member of The Dark Brotherhood Member of Artificer's Association
CreaturesTrade
Posts: 1173
Joined: April 22nd, 2017, 1:18:54 am
Gender: Kraken
Contact:

Re: Comprehensive Magistream Guide

Post by TheNewBlack »

You can read about the quests on the Magistream wiki.
Haven't been on Magistream in several months. Any gifts of recent creatures would be greatly appreciated!
ImageImageImageImageImage
User avatar
Brynmala
MagiStream Donor
Member of Society of the Trident Member of Artificer's Association Member of Preservationists Association An icon depicting the element Water
CreaturesTrade
Posts: 1454
Joined: June 11th, 2009, 3:19:07 pm
Location: Away with the fairies

Re: Comprehensive Magistream Guide

Post by Brynmala »

Thanks for this - I'll look into updating Opera, and the rest looks great too. Could I suggest in the forum section to add something on how to post photographs? its something I always struggle with.
Thank you to everyone who gifted me :)
Image "Just one small aubergine..."

RIP Phoebe (avatar cat) - 1995 - 2nd June 2012

nice ninjas?
Spoiler
Mine:
Sitting:

For Sale, Gender swap PM me to discuss.
Post Reply

Return to “Community Discussion”