Skip to content
View in the app

A better way to browse. Learn more.

MagicDuel Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Images

Chewett

Root Admin
  • Joined

  • Last visited

Everything posted by Chewett

  1. Ppu

    Chewett replied to Dmik King's topic in Alliances
    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
  2. [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!
  3. Chewett replied to Faraun's topic in Resolved Bugs
    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
  4. [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
  5. [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
  6. [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
  7. 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]
  8. [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.
  9. Chewett replied to Pipstickz's topic in Offtopic
    and Jonn did it for years
  10. Chewett posted a topic in Sample Code Section
    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.
  11. 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
  12. Make comments on the creatures that havent got a description, Like most dracorns have no description
  13. [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?
  14. 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
  15. Image Now Approved, So now people can actually see it
  16. Chewett replied to Muratus del Mur's topic in Offtopic
    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.
  17. Happy birthday to the both of you!
  18. Chewett replied to dst's topic in Offtopic
    [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!
  19. Closed for inanity If mur wants to fix it, all the info is here.
  20. 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.
  21. Comeon Rj, its a minor display glitch that doesnt even warrent a post...
  22. 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?
  23. 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
  24. [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

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.