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 Chewett
-
Ppu
the problem i see with this is the "strong" people who you are allowing into your group will already be able to protect their principles by first round kills Which means that they wont need this. I think its a good move to let them do this, since its so useful to keep it balanced
-
You know you've been on MD too much when...
[quote name='Liberty4life' date='06 November 2009 - 05:16 PM' timestamp='1257527817' post='46798'] granos thats nothin, out of 48 cro accs 44 are mine so think again how much do i get asked [/quote] And it seems that every single new british player who speaks in the cabin is accused of being me or grido!
-
Stat Loss
I take it you are still in story mode? You will gain and lose stats at every choice you make, you just may have been unlucky and picked a choice where you lose some stats. Dont worry, every paths has advantages and disadvantages and in the greater scheme of things, losing 3 stats is pretty small. You will gain them fast enough
-
Happy Birthday Sparrhawk
Happy Birthday Sparrhawk
-
For Those That Want To Be Honest...
[quote name='apophys' date='05 November 2009 - 02:30 AM' timestamp='1257388203' post='46658'] I presume not participating means not playing at all for the duration of the test, because I had managed to successfully remove charge from an idler (haven't tested whether this still works). That's a bit harsh, because the test will supposedly last a while.Now that I think about it, I have yet to see an instance where draining principles actually increases charge on an existing principle. Charge can be destroyed only, as far as I've seen (this makes sense, because Mur stated in the announcement that this draining is an alternative to a reset of all charges). I personally quite like it, but would prefer a new creature for it, and I think it should do more creature damage. [/quote] i agree it isnt fair but there were alternatives, we know atm its very buggy so you can lose a lot testing this. once its fully tested it will work as mur wants it and you will start to gain as well as lose principles
-
For Those That Want To Be Honest...
[quote name='eigger' date='04 November 2009 - 08:21 PM' timestamp='1257366078' post='46634'] i lost 20k+ principle i wont be able to get it back? [/quote] no, its a test, you didnt have to participate, Your loss Please only post what extra principles you gained. And nothing else, Thanks
-
Achievements Gallery
[quote name='Death Bell' date='04 November 2009 - 05:39 PM' timestamp='1257356347' post='46610'] the last two... i don't think any land has 12 creatures to be recruited... [/quote] I dont think he meant differnt creatures, just 12 from one land
-
Making Text Inside The Clickable Clickable
Would this piece of code help? do you specifically want a link like the one below? [post='5502']Giving Keys with buttons and making a choice[/post]
-
Level Editor For Iphone Game
[quote name='Death Bell' date='02 November 2009 - 05:21 PM' timestamp='1257182490' post='46413'] you just want us to like write you a paragraph or draw you a map of a game level..? or use these computer language and program the map for you ? what are the rules and directional movement allowed? [/quote] [quote name='Grido' date='02 November 2009 - 06:28 PM' timestamp='1257186518' post='46422'] i'm thinking that there'll be level editor software...stuff, so that we like drag a tree here, a barrel there etc, and design the layout of the level that way. Sounds fun, can't guarentee i'll make a good level, cos i dont know what's available, but i could give it a good shot . Be fun regardless if money is involved or not. So long as i dont actually need an iphone to make the level of course... [/quote] [quote name='Death Bell' date='02 November 2009 - 06:32 PM' timestamp='1257186725' post='46423'] can you pm me the link of this level editor software if its free to download.. this might be fun [/quote] Im 100% sure that he doesnt have a "level editor" software as he said in his first post [quote name='Muratus del Mur' date='02 November 2009 - 04:45 PM' timestamp='1257180337' post='46411'] I am building a game for iphone for some people i work with. [/quote] So im guessing its going to be drawing and such, and not using a program.
- My Profile
-
Forms!
Forms comprise of two parts. The actual form, and the processing Code Here is my form <form method="post" action=""> Please type something in here: <input type=text name="box" size="25" maxlength="50"> <br /> Do you use GGG? <input type="radio" name="radio" value="use"> yes <input type="radio" name="radio" value="dont use"> no <br /> Pick some of these, you choose! <input type="checkbox" name="checkbox_1" value="1"> one <input type="checkbox" name="checkbox_2" value="2"> two <input type="checkbox" name="checkbox_3" value="3"> three <br /> Are you a... <select name="listbox"> <option value="Fighter">Fighter</option> <option value="Roleplayer">Roleplayer</option> <option value="Fighter and roleplayer">Fighter and roleplayer</option> </select> <input type="submit" value="Submit!"/> </form> Here are some numerous examples of the differnt objects you can have on a form. points to note. 1. the "name" value will be sent to the MDscript as @input['name'] Where name is your name of your object 2. You can only select one choice with radio buttons 3. You can select more than one with a check box And here is my Mdscript that "handles" the form if(isset(@input['box'])) { echo "you typed in " . @input['box'] . "<br />"; } if(isset(@input['radio'])) { echo "You said you " . @input['radio'] . " GGG <br />"; } if(isset(@input['checkbox_1'])) { echo "You selected Check box 1! <br />"; } if(isset(@input['checkbox_2'])) { echo "You selected Check box 2! <br />"; } if(isset(@input['checkbox_3'])) { echo "You selected Check box 3! <br />"; } if(isset(@input['listbox'])) { echo "You said you are a " . @input['listbox'] . " <br />"; } echo @content['0']; Here i have used the php function isset() to see if the variable is set. if(isset(@input['textbox'])) { ... } All this means is, Check if @input['textbox'] is set (someone typed something in) and if it is, do what is in the brackets. This will prevent all this code from being done when the user first loads up the page Instead of just echoing the values you could make it more intresting by doing something with the values, like storeing the value as a variable in your quest. But! be careful, Just because someone can enter something, doesnt mean it will be something you nesscariy want to be entered. For example if you need a number to be entered, someone could enter a letter, and if your script doesnt check, it might break your script! NOTE: This is PHP and i have no access to MDscript, So, if anyone wants to help me, please test the script.
-
A Delete Button
You need some way of displaying all Keys you have assigned and being able to remove all keys you assigned from everyone. That would solve the Quest cleanup problem
-
Creature Description Contest
Make comments on the creatures that havent got a description, Like most dracorns have no description
-
A Delete Button
[quote name='Rendril' date='01 November 2009 - 03:28 PM' timestamp='1257089324' post='46295'] To remove a key use mds_take_rpqc_keys("key name") He won't have access to your script. [/quote] so this will remove what key? all keys of that name? from everyone?
-
Win One Silver Contest!
what about now? if you cant view it use this link for the moment http://magicduel.invisionzone.com/gallery_uploads/1255871650/gallery_3245_79_3602.jpg
-
Win One Silver Contest!
Image Now Approved, So now people can actually see it
-
Thank You
Well done whoever thought of this idea, Its a good one. To Mur: You will never know how much we all appreciate the game and respect you.
-
Happy Birthday!
Happy birthday to the both of you!
-
Vacation
[quote name='dst' date='31 October 2009 - 04:20 PM' timestamp='1257006034' post='46213'] Starting from tonight 23:40 server time I am officially on vacation. That will mean sporadic response to PMs, bitchy remarks (not that I don't do that even when I am not in vacation) and almost no help coming from my side. If you desperately need something talk to No one. I will probably log in every day but just to get my days. If I find a decent quest that I decide is good enough to waste my time I will try it. Wish me lots of sun and and a nice tan So...have fun and behave [/quote] At the moment im trying to think of a sarcastic/rude/funny comment tying in Halloween, Witches and dst going away... Oh well, The forum will run around and i might even get some work to do people side. Have fun!
-
Toolbar Bug
Closed for inanity If mur wants to fix it, all the info is here.
-
Toolbar Bug
Rj, you are being unclear, what toolbar are you refering to now? If there is nothing apart from a small graphical problem i am closing this topic.
-
Toolbar Bug
Comeon Rj, its a minor display glitch that doesnt even warrent a post...
-
Toolbar Bug
its a minor display issue that has been around for ages... with the amount of bugs in the game do you think that this one needs to be fixed?
-
Creatures & Health & Logoff Problem...?
Suggestions how to avoid: Log out in areas with little or no people Log out in a Sanctuary (with 6 or less heads during the head contest) have a "dummy" ritual up, including just one creature (with more than 301 vitality) so that when you get attacked you only lose one creature, Have a couple of these dummy rits up
-
Hello Im New
[quote name='teufelhunden' date='31 October 2009 - 08:39 AM' timestamp='1256978387' post='46168'] I think you were not bet and did it on your own....... [/quote] Correct! first one to guess it right lol