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
-
An adventure to the MDA : shout-out to MP3s
[quote name='awiiya' timestamp='1343288993' post='118215'] Also can someone get me back to my spot? Stuck at the GoE. Awi [/quote] Send a pm to Bfh, he has a shedload of spells
-
Weather Logs
forward dating weather seems rather pointless as then when that time comes and no weather did occur, you cant really tell if it was a real report, or someone forward dated it for a laugh. being able to add weather for the past 24hrs might be good
-
Free creatures and a question
didnt understand battle system - include more battling in the storyline, it needs a change didnt understand what i was supposed to do - have you recently done the tutorial? the first "new" page is a good one mur started to redo, i would propose this is continued
-
Forum Nearing Storage Capacity
We are still very close to the limits, i encourage everyone to go through and delete any images that they do not need. Scanning the forum there are a number of massive files that look like avatar scans, please dont send them through the forum and delete them, send them to the artist people or via email or upload on other websites. I dont want to have to block all galleries and limit upload space massively, but if people dont remove useless images i will have to.
-
Revive Fyrd !
[quote name='Tom Pouce' timestamp='1342820171' post='117840'] I would suggest, that another time those concern be notify of the rules ... keeping me in dark had made me react to the apparences and its include Fyrd to have keept me in dark ... Note: Its not my fault if i stand for my team mates and friends as for my way of acting [/quote] You cant be told everything, dont expect to ever be told everything... just next time, before taking a cause, actually see if you need to... There is no point telling everyone everything, then it becomes a boring scripted event... let things play out as they do.
-
Revive Fyrd !
A word of advice, as Rheagar points out, ask the person actually involved instead of taking up a cause they dont want someone to take up.
-
Weather Logs
[quote name='Maebius' timestamp='1342687741' post='117751'] But that's less "automatic" and prone to fall into idleness at times. Hmm.... [/quote] See Dojo -> Sparring Grounds If peolpe dont want it, then it wont be sustained, as is MagicDuel. If it does not have public opinion and voice working for it, it wont live.
-
Weather Logs
[quote name='Rumi' timestamp='1342664121' post='117741'] Second idea, we need a social structure that gives 24 hour attention to weather logs. This seems like a daunting task. The only group I can think of that has guaranteed 24 hour availability is LHO. I wonder if LHO could record the weather for us and post a log on a clickie in the Paper Cabin as part of their duties. Community Garden can pay for this service from our treasury. Grido, you asked what garden treasury would be used for. Would LHO be willing to take an additional task? Would you be willing to negotiate a contract on behalf of LHO team outlining services and payment? Any other ideas? I can record the weather when I change it, but I'm not really online all that much. We need logs of all weather events. [/quote] You are the gardeners, why dont you organise your group to do it yourselves... Its not hard work but all you need is a large group of people to send in weather reports... its not exactly a hard job, so just ask lots of people to do it. LHO doing it? lol no, i doubt grido will agree to this. They shouldnt have to worry about paying attention to something as minor as the weather. As for scripting it... possible, will it trigger you to be banned immediately, possibly, i havent tried the trigger box.
-
Fest Quest Day 2 - Combat by the Numbers
its quite hard to do if you do the maths... its unlikely you are going to have 6 creatures with a similar difference to anyone else due to the large amount of creatures bought. The only way someone is going to win easily is to actually go and buy 6 crits now, and most of the people i spoke to had no space.
-
MD SUMMER FEST Quest #1 Key
[quote name='BFH' timestamp='1342559083' post='117679'] [center]Still trying to understand darkraptor submission...[/center] [/quote] Its a simple code a - 1 b - 2 ... y - 25 z - 26
-
Happy Birthday Magistra
Have a great birthday Magistra!
-
Sorting list of heat voters by Heat given
[quote name='samon' timestamp='1342468830' post='117630'] If you really want to show the total amount of heat donated you can add up the amounts of heat donated by each player (after subtracting the heat from previous votes.) If I'm right that doesn't drop over time. [/quote] indeed, my clickable displays current and total heat, along with all the heat donated by all the voters, and calculates it based on the method you suggested.
-
Sorting list of heat voters by Heat given
[quote name='BFH' timestamp='1342446129' post='117622'] That shouldn't happen to heat vote then.. It's a voting method and I think it's stupid to lose somehow a vote casted? So there's no funtion to prevent the loss at all? However, I believe losing heat should happen to scripted items since somehow can be... abused, but that's not the case of heat for vote. [/quote] The amount one has given is stored, but the active heat drops, as Valldore says, its not how much was given, its a continual effort.
-
Sorting list of heat voters by Heat given
For heat votes, you can use a simple one line piece of code to sort heat voters into heat given in desending order [CODE] @vb = mdsi_item_heat(); arsort(@vb['players']); [/CODE] This assumes that your heat variable has been assigned to @vb as in the example. When printing the information out with this format, it will produce it in an ordered format [code] foreach(@vb['players'] as @vk => @vh){ echo @vk . ': ' . @vh . '<br />'; } [/code] its nicer to show those who have given the most heat at the top than rather the first people who visited the clicky Comments and questions can go on this post
-
Responding to User Events (simple)
This is the basis of a dynamic driven clickable, buttons! sample code: html: <form method='post'> <input type="submit" name='button' value="Go!"/> </form> MDScript: (locations [Whatever location the clicky is in]) echo @content[0]; if (@input['button'] == 'Go!') { echo "you pressed the button"; }else{ echo "You havent yet pressed the button!"; } Here you have a button and a form, when you press this the "data" is sent to the page again. This data is a associative value, meaning that you have a name that is associated with a value. In this case, all the "name"'s of the objects are associated with their value. For my simple example, The button name is called "button" and its associated value is "Go!" This value is only sent to the page when the button is clicked, This means on the first page load, it isnt sent. When the data is sent to the page, it is stored in the @input variable, so in my example when i press the button @input['button'] will be equal to "Go!" I can do a check to see if @input['button'] == "Go!" to see if it has been pressed or not. This will allow you to respond to user input and do different things. Remember to change the name of each button or input field, so that they are different. More advanced information is available: comments and questions can go on this post
-
MagicDuel, HTML5, Android, IOS
Or this link, which provides a nicer more mobile link, with links to other stuff at the top http://magicduel.com/mobile/?p=mo Im here believing that he knows of those, and therefore wants the widget to do something more than load a webpage... ---------------- <googled android widget> whats the point of having as useless information as the mood panel on your home screen...
-
MagicDuel, HTML5, Android, IOS
[quote name='Rumi' timestamp='1342316864' post='117555'] would it be difficult to code a mood panel widget for android? [/quote] How would the widget differ from the mobile version of the mood panel?
-
Public Pool - Chewett's coffin
[quote name='Sephirah Caelum' timestamp='1342301566' post='117542'] Tom Pouce, post # 10 , [b]3 votes[/b] [/quote] you mean 13 votes no?
-
Horoscopes
Make sure the images army too large, if you have any issues send the image to [my username] at MagicDuel dot com
-
Redacted
[quote name='Grido' timestamp='1342268846' post='117506'] next year they'll probably melt again is what he was getting at [/quote] Check for previous announcements and lo a pattern emerges
-
Redacted
Wait til next year
-
July 12, 2012 Council Update
[quote name='Liberty4life' timestamp='1342208273' post='117473'] the person that reported the bug told me via pm and wanted to remain annonymous, ya can always double check with council, but i tested this myself and now reloging like that doesnt work, and i know it worked before [/quote] ah ok, yeah i know, i checked it lol thanks libby
-
July 12, 2012 Council Update
[quote name='Liberty4life' timestamp='1342195067' post='117457'] hmm seems like i got mine answer [/quote] where it say that?
-
Den of Lost Souls
[quote name='Liberty4life' timestamp='1342187613' post='117442'] oke now, lets say that there is potential for another shop regardless of the above, umm champ dome is said to be a vault so lets use it as example, more over it sounds more challengeous with yoar idea of npcs blockin path so we have a challenger who wants to claim "title of champ" and reclaim his "heritage armor", good we have motivator, then as wuky said, ya need to work all technically details, etc [/quote] Champions dome already has a purpose If you want to add scenes, they need to be drawn, approved, "SWF'i'fied", uploaded, coded ect... Thats a lot of work even just getting artwork in MD style approved to be new scenes if hard. Most of you wont remember the dojo, that had a scene planned out, drawn mostly in MD feel, massive effort behind it all, but murry wouldnt put it ingame as it didnt fit "the plan"
-
Den of Lost Souls
Think out the idea properly, plan how easy they should be and what should be at the end. How useful will the armour be? Ideally it will be balanced with current endgame armour to allow choices and difference