Images
-
Screenshot_20230327_224813.jpg
Screenshot_20230327_224813.jpg
By Muratus del Mur ·
NFTs created from the new api, in md, from bestiary creatures. You can find them also on opensea.io where you can view there rarity and such.
Currently there is no way for anyone to create such nfts, but this is just because nobody showed any interest in this feature.
I will cobtinue working on in-game interfwces for this, or i will just use them for personal transfers and rewards..depends only on your feedback
-
Screenshot_20230327_224828.jpg
-
Screenshot_20230327_224835.jpg
-
Screenshot_20230327_221129_AlphaWallet.jpg
Screenshot_20230327_221129_AlphaWallet.jpg
By Muratus del Mur ·
magicduel.com is not the official erc-20 (eth, polygon) address for md on the eth blockchain.
Magucduel.eth is also a valid ens domain name bound to the official address.
This is part of a series of experiments i do in the crypto direction
-
Fyrd Stuff.jpg
Everything posted by I am Bored
-
Adept shown
no they aren't grido maybe it being in a garage makes it environmentally friendly? (as the homepage now says the servers it is hosted on are environmentally friendly.... and that we like the planet..... so that begs the question... what planet!?!?)
-
Adept shown
hmmm.... but why would you make that connection? (warning all content in this post after this is offtopic, proceed at your own risk) but i don't want md to be in a garage! and do you like my new signature?
-
Adept shown
that still doesn't explain why it shows up as being in a garage and to be ontopicish (as ontopic as it is possible for me to be): where did you read that grido, that the ghost adept was yourself?
-
Adept shown
unless you were an adept to yourself, which i'm not (i am an adept to bob), that wouldn't work, and i would still appear on my adepts list as active. and this is offtopic but why when i trace the ip of md does it show up as being in the garage of a random house, in Ontario Canada? if you want i can do it again and post a screenie of it XD i realy hope md isn't just in a random garage in canada...
-
Adept shown
well i like my ghost adepts!
-
Adept shown
it's been like that for a long time death, it isn't a matter of it updating.
-
Adept shown
As the title says i have a ghost adept, meaning it says i have 1 adept active under my ep, but when i check my list of adepts it says their all inactive, thus i have 1 ghost adept.... i used to have 3.... not sure what happened to the other 2
-
Restrict Access To A Quest By Id
well the last time i checked was a long time ago, and at that point, id's 3&4 didn't exist
-
For Those That Want To Be Honest...
it should have been fixed, if mur has read my pm, there is a specific thing that had to happen after the first fix for it to still give you an extra principle
-
Youtube contest make a movie
now my question is, how would you put that in first person? as boredom is essentially working as it happens.... i have been trying to figure out a way to move from the present tense first person, to a past tense first person, but i have yet to figure out how...
-
Extreme Magicduel
[quote name='dst' date='08 September 2009 - 03:14 AM' timestamp='1252401278' post='41177'] Check out this guy: [url="http://magicduel.com/players/pyxis"]http://magicduel.com/players/pyxis[/url] He's way overhead of you IAB. [/quote] not anymore he ain't [url="http://magicduel.com/players/I_am_Bored"]http://magicduel.com/players/I_am_Bored[/url] although he is still a bit higher than me... i think i have me stats there..... i will put them at the top.....
-
Iq Of Md
that's actually true orlando gardiner
-
New Area..
acording to some there are 5 combos but i only know of 3
-
Creature Price List
kragel left, he said it himself.
-
Creature Description Contest
hmmm... as i feel this is a worthy cause, i will add an age 127 pimped grasan, and an age 250 tormented soul to the reward.
-
Beat A Screenshot Of A Elemental Like This, Win One Gold
does a screanshot of an older lvl 2 aramor count? [attachment=1266:index.jpg] and i might just be able to unearth the screanshot of an elemental egg that might be older than the one you posted...... but the one i am thinking of could very well be the same one you posted... and if it exists, then someone in md has it...... because i can't find it...... nor will i say who might
-
Youtube contest make a movie
well, that means you haven't seen the first 3 episodes of boredom, as boredom is purely audio.
-
Old accounts deleted
does this topic realy need to be pinned anymore?
-
First Time I've Seen This
wait...... they both killed themself... with negative vitality.... so 2 people who's negative vitality is enough to put their crits negative.... so then it ends up as 101% to 101%
-
Youtube contest make a movie
well it looks like boredom will make a landing on md sometime soon.... if i can think of how to transition smoothlyish from flying through space, to waking up in a cube in md..... anyone have any ideas?
-
My Profile
you can also change the equiptment you have on, won't say how here though.
-
Cleanup
[quote name='Rendril' date='01 November 2009 - 03:20 PM' timestamp='1257110456' post='46333'] The keys are stored an a serialized array, the structure cannot be changed easily. It affects every location you can access. As I said, there is no "creator" stored for a key. While a good idea it is not an easy task ot implement. You would also be charging an additional overhead on the server of now storing 2 values for every key, effectively doubling the key-use anyway. Maybe a simple solution is to append the editor ID and if desired, an expiration date for a key. [/quote] [quote name='Kafuuka' date='01 November 2009 - 04:25 PM' timestamp='1257114302' post='46338'] Keeping a list of keynames changes nothing to the keys themselves. If we assume the average key is possessed by ten players, using the list implies one more string constant is saved, increasing the load by 10% if a key is indeed only a string (I think I read the date is saved too, which implies the effective increase is less than 10%). If one in five keys (quests) expires within two months and the total number of keys is more or less a constant, then we can estimate after one year as: without cleanup: 80 permanent keynames + 6*20 temporary keynames = 200 keynames; loading = 10 => total memory used 2000 with cleanup: 80 permanent keynames + 20 temporary keynames = 100 keynames; loading = 11 => 1100 The values are guesses, but a key that is possessed by less than 10 players should not be the norm. Whether features or quests, the idea is that most of them are made for the masses. If a quest expires, two months is more than we usually give. At the moment most quests expire too, but given the script it will be more feasible to make permanent quests because there is less maintenance on them. Things people seem to forget: - keys should expire at the same time all scripts giving/taking the keys expire. - deciding which keys/scripts to clean up at what time is not the same as deciding how to clean them up. Without the how, the what and when is irrelevant. - the chances people set the expire date to never are only slightly smaller than the chances people forget to push delete after the expiration date. In general it are the same people that do not care about cleaning up or are sloppy and forgetful, that are either to vain or to neglecting to think ahead and decide a good expiration time. [/quote] But you are both thinking about 2 different things, rendril, you are talking about the amount of stuff the server is currently doing, while you kafuuka are talking about stuff that is stored on the server, but the final question is, is the exchange worth it? in the end i would say yes, because it will save space, and we currently there isn't much strain on the server, and i know that there currently isn't a big strain on the server, because mur himself has said that there isn't a big strain on the server.
- New Area..
-
Action Reported, No access to Document
[quote name='apophys' date='30 October 2009 - 09:11 PM' timestamp='1256958707' post='46157'] I suspect this is related: Action reported, you do not have access to this document. If you feel it is an error please report on the bug section. #rpcdoc22 #:0 I got this when clicking "Edit" on my comments on self after the page expired. It's supposed to tell me to click the compass to refresh. [/quote] this isn't related, and is supposed to come up when you try to edit it after the time it is valid.
-
Cleanup
perhaps having an extra variable that's default setting is to clear that script out every 2 months, but is settable to never clear, so that things like my book, could always be accessable without the keys being reset, and you having to do the quest again.