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

I am Bored

Member
  • Joined

  • Last visited

Everything posted by I am Bored

  1. [quote name='Death Bell' date='12 November 2009 - 12:14 PM' timestamp='1258049666' post='47298'] [url="http://www.youtube.com/watch?v=z4LTepURVYM"]http://www.youtube.c...h?v=z4LTepURVYM[/url] [/quote] only problem i have with that is that my native language is english and it took me a while before i realized that it was in english....... and that's saying something because most people i know have a hard time understanding even a moderate English (note: i mean accent of those in great britian) accent.... yet i have no trouble with it.... hmmmm.... perhaps someone else should repeat exactly what he said and overlay the audio so more people could actually understand it?
  2. here is a code that will apear as a test of persistance: Content: [code]<!-- content separator --> This is a test of persistence, meaning you must keep clicking till the end. <form method="post" action=""> <input type="submit" name="1" value="Click here"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="2" value="Click here 2"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="3" value="Click here 3"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="4" value="Click here 4"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="5" value="Click here 5"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="6" value="Click here 6"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="7" value="Click here 7"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="8" value="Click here 8"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="9" value="Click here 9"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="10" value="Click here 10"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="11" value="Click here 11"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="12" value="Click here 12"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="13" value="Click here 13"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="14" value="Click here 14"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="15" value="Click here 15"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="16" value="Click here 16"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="17" value="Click here 17"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="18" value="Click here 18"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="19" value="Click here 19"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="20" value="Click here 20"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="21" value="Click here 21"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="22" value="Click here 22"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="23" value="Click here 23"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="24" value="Click here 24"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="25" value="Click here 25"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="26" value="Click here 26"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="27" value="Click here 27"/> </form> <!-- content separator --> <form method="post" action=""> <input type="submit" name="28" value="Click here 28"/> </form> [/code] Script: [code]@vz = "i am bored"; if(isset(@input['1'])){ mds_give_rpcq_keys(@vz . "1"); echo @content[2]; } else if(isset(@input['2'])){ mds_give_rpcq_keys(@vz . "2"); mds_take_rpcq_keys(@vz . "1"); echo @content[3]; } else if(isset(@input['3'])){ mds_give_rpcq_keys(@vz . "3"); mds_take_rpcq_keys(@vz . "2"); echo @content[4]; } else if(isset(@input['4'])){ mds_give_rpcq_keys(@vz . "4"); mds_take_rpcq_keys(@vz . "3"); echo @content[5]; } else if(isset(@input['5'])){ mds_give_rpcq_keys(@vz . "5"); mds_take_rpcq_keys(@vz . "4"); echo @content[6]; } else if(isset(@input['6'])){ mds_give_rpcq_keys(@vz . "6"); mds_take_rpcq_keys(@vz . "5"); echo @content[7]; } else if(isset(@input['7'])){ mds_give_rpcq_keys(@vz . "7"); mds_take_rpcq_keys(@vz . "6"); echo @content[8]; } else if(isset(@input['8'])){ mds_give_rpcq_keys(@vz . "8"); mds_take_rpcq_keys(@vz . "7"); echo @content[9]; } else if(isset(@input['9'])){ mds_give_rpcq_keys(@vz . "9"); mds_take_rpcq_keys(@vz . "8"); echo @content[10]; } else if(isset(@input['10'])){ mds_give_rpcq_keys(@vz . "10"); mds_take_rpcq_keys(@vz . "9"); echo @content[11]; } else if(isset(@input['11'])){ mds_give_rpcq_keys(@vz . "11"); mds_take_rpcq_keys(@vz . "10"); echo @content[12]; } else if(isset(@input['12'])){ mds_give_rpcq_keys(@vz . "12"); mds_take_rpcq_keys(@vz . "11"); echo @content[13]; } else if(isset(@input['13'])){ mds_give_rpcq_keys(@vz . "13"); mds_take_rpcq_keys(@vz . "12"); echo @content[14]; } else if(isset(@input['14'])){ mds_give_rpcq_keys(@vz . "14"); mds_take_rpcq_keys(@vz . "13"); echo @content[15]; } else if(isset(@input['15'])){ mds_give_rpcq_keys(@vz . "15"); mds_take_rpcq_keys(@vz . "14"); echo @content[16]; } else if(isset(@input['16'])){ mds_give_rpcq_keys(@vz . "16"); mds_take_rpcq_keys(@vz . "15"); echo @content[17]; } else if(isset(@input['17'])){ mds_give_rpcq_keys(@vz . "17"); mds_take_rpcq_keys(@vz . "16"); echo @content[18]; } else if(isset(@input['18'])){ mds_give_rpcq_keys(@vz . "18"); mds_take_rpcq_keys(@vz . "17"); echo @content[19]; } else if(isset(@input['19'])){ mds_give_rpcq_keys(@vz . "19"); mds_take_rpcq_keys(@vz . "18"); echo @content[20]; } else if(isset(@input['20'])){ mds_give_rpcq_keys(@vz . "20"); mds_take_rpcq_keys(@vz . "19"); echo @content[21]; } else if(isset(@input['21'])){ mds_give_rpcq_keys(@vz . "21"); mds_take_rpcq_keys(@vz . "20"); echo @content[22]; } else if(isset(@input['22'])){ mds_give_rpcq_keys(@vz . "22"); mds_take_rpcq_keys(@vz . "21"); echo @content[23]; } else if(isset(@input['23'])){ mds_give_rpcq_keys(@vz . "23"); mds_take_rpcq_keys(@vz . "22"); echo @content[24]; } else if(isset(@input['24'])){ mds_give_rpcq_keys(@vz . "24"); mds_take_rpcq_keys(@vz . "23"); echo @content[25]; } else if(isset(@input['25'])){ mds_give_rpcq_keys(@vz . "25"); mds_take_rpcq_keys(@vz . "24"); echo @content[26]; } else if(isset(@input['26'])){ mds_give_rpcq_keys(@vz . "26"); mds_take_rpcq_keys(@vz . "25"); echo @content[27]; } else if(isset(@input['27'])){ mds_give_rpcq_keys(@vz . "27"); mds_take_rpcq_keys(@vz . "26"); echo @content[28]; } else if(isset(@input['28'])){ mds_give_rpcq_keys(@vz . "28"); mds_take_rpcq_keys(@vz . "27"); echo @content[29]; } else{ echo @content[1]; }[/code]
  3. This would show all of the current variable values, except for storage. content: [code]<!-- content separator --> The variables specific to each user: <br /> <br> <!-- content separator --> The variables current values in your script: <br /> <br> [/code] code: [code]echo @content[1]; echo "player id: ".uv('id')." <br />"; echo "vitality: ".uv('ve')." <br />"; echo "vp: ".uv('vp')." <br />"; echo "exploring points: ".uv('xpl')." <br />"; echo "maximum vitality: ".uv('maxve')." <br />"; echo "maximum vp: ".uv('maxvp')." <br />"; echo "land id: ".uv('land')." <br />"; echo "alliance id: ".uv('alliance')." <br />"; echo "active days: ".uv('age')." <br />"; echo "loyalty points: ".uv('loyalty')." <br />"; echo "honor: ".uv('honor')." <br />"; echo "player name: ".uv('name')." <br />"; echo "mind power: ".uv('mp')." <br />"; echo "heads: ".uv('heads')." <br />"; echo "won fights: ".uv('won')." <br />"; echo "lost fights: ".uv('lost')." <br />"; echo "avatar level: ".uv('avatar_level')." <br />"; echo "avatar id: ".uv('avatar')." <br />"; echo "experience points: ".uv('xp')." <br />"; echo "kills during the torch competition: ".uv('kills')." <br />"; echo "illusion: ".uv('illusion')." <br />"; echo "and today is day ".date('z')." <br />"; echo @content[2]; echo "setting a: ".@va." <br />"; echo "setting b: ".@vb." <br />"; echo "setting c: ".@vc." <br />"; echo "setting d: ".@vd." <br />"; echo "setting e: ".@ve." <br />"; echo "setting f: ".@vf." <br />"; echo "setting g: ".@vg." <br />"; echo "setting h: ".@vh." <br />"; echo "setting i: ".@vi." <br />"; echo "setting j: ".@vj." <br />"; echo "setting k: ".@vk." <br />"; echo "setting l: ".@vl." <br />"; echo "setting m: ".@vm." <br />"; echo "setting n: ".@vn." <br />"; echo "setting o: ".@vo." <br />"; echo "setting p: ".@vp." <br />"; echo "setting q: ".@vq." <br />"; echo "setting r: ".@vr." <br />"; echo "setting s: ".@vs." <br />"; echo "setting t: ".@vt." <br />"; echo "setting u: ".@vu." <br />"; echo "setting v: ".@vv." <br />"; echo "setting w: ".@vw." <br />"; echo "setting x: ".@vx." <br />"; echo "setting y: ".@vy." <br />"; echo "setting z, usually credit to creator: ".@vz." <br />"; echo "template replacement setting: ".@tpl." <br />"; echo "log setting: ".@log." <br />"; echo "temporary setting: ".@temp." <br />"; echo "input setting: ".@input." <br />"; echo "content: ".@content." <br />"; echo "storage: ".@storage." <br />"; [/code]
  4. so that means that that's a yes from an admin, so topic transformation is beginning, i will make a list of where the posts are so you don't have to search for them to delete them, also could someone change the title of this, i can't get it to let me use the full editor i think it might just be my comp though so First one: [url="http://magicduel.invisionzone.com/topic/5533-helping-with-debugging/"]http://magicduel.inv...with-debugging/[/url] http://magicduel.invisionzone.com/topic/5677-a-test-of-persistance-using-buttons-help-requested-to-integrate-keys-to-resume-where-you-stop/
  5. hmmm... why did you do what i already did? i still have about 4,000 unread messages that i sent myself.... would have been more but the pm limit was created
  6. boredom episode 5 is done... just need to upload it...
  7. This is a topic for the more useless sample scripts, be sure to give credit to the original creator, as well as post a link to where the *useless* script was originally so the admins can delete that post, and admins, after deleting the post containing the *useless* script, please edit the post on this topic and remove the link.
  8. i have to log back in when i hit resume while being idle for any decent amount of time (at most 2-3 hours) it logs me out and i have to log back in.
  9. not every bored person leaves! i am a living example of that!
  10. well..... i am bored.... and i still say md isn't an pvp
  11. aww wait.... what was the age of jonns egg?
  12. [quote name='Rendril' date='08 November 2009 - 12:47 PM' timestamp='1257706072' post='46988'] I don't think that would work, since there are line breaks [/quote] oh alright then, here: [code]<!-- content separator -->A<!-- content separator -->B<!-- content separator -->C<!-- content separator -->D<!-- content separator -->E<!-- content separator -->F<!-- content separator -->G<!-- content separator -->H<!-- content separator -->I<!-- content separator -->J<!-- content separator -->K<!-- content separator -->L<!-- content separator -->M<!-- content separator -->N<!-- content separator -->O<!-- content separator -->P<!-- content separator -->Q<!-- content separator -->R<!-- content separator -->S<!-- content separator -->T<!-- content separator -->U<!-- content separator -->V<!-- content separator -->W<!-- content separator -->X<!-- content separator -->Y<!-- content separator -->Z[/code]
  13. i think that the gates should stay closed for at least a week, or however long it takes to start to see a decrease in the loss of players, you then find how long from the start of the gates being closed, and that should give you a reasonable estimate of when people are quiting....
  14. i could also be said to be well known.
  15. it does exist, and the reason for the stat grinders being well known is because there are very few of them, the role players aren't that famous because there is so many of them.
  16. but burns, that then begs the question, do they actually know what the game is about? the game is about role playing, not stat grinding, and unless they get that i don't see a reason to try to keep them longer than it takes to spend what they have in the md shop *evil grin* because the server's gotta be supported somehow
  17. i would have but you didn't ask....
  18. perhaps you should keep it open to those with a regestration code, that was either told to you, or emailed to you, making it so you can join by invite only, that should still let you see a reasonably accurate result, yet still allow the type of players who would be loyal to md to be able to join, have a source that would be able to get the knowledge of the existance of the site out to the type of people that would be loyal to it.... even better it's free but if they can't join there isn't much of a reason to get it to that source
  19. perhaps it was a result of some random error in the server, and the code was just slightly changed, because it wrote just slightly the wrong thing.... what's the depth checking set to? or is that only for hard drives.... wait... does the server use flash memory or hd's?because with an hd if the depth checking (i think that's what it's called anyways, and what it does is write the data, then check the correct data was written, i think that's called depth checking anyways) was set to none when the partition was created, then there could have just been an error in the write..... but as i have mine set to extreme, it is unlikely i will lose any data, unless my hd actually crashes..... in which case, i would need a clean room to recover the data.... and i don't have a clean room.... why is it that i can't seem to remember the names of anything currently?.... maybe it's because i am not paying much attention to what i am typing.....
  20. and it is now back down and back up again
  21. i might... i did.... here: [code] <!-- content separator --> A <!-- content separator --> B <!-- content separator --> C <!-- content separator --> D <!-- content separator --> E <!-- content separator --> F <!-- content separator --> G <!-- content separator --> H <!-- content separator --> I <!-- content separator --> J <!-- content separator --> K <!-- content separator --> L <!-- content separator --> M <!-- content separator --> N <!-- content separator --> O <!-- content separator --> P <!-- content separator --> Q <!-- content separator --> R <!-- content separator --> S <!-- content separator --> T <!-- content separator --> U <!-- content separator --> V <!-- content separator --> W <!-- content separator --> X <!-- content separator --> Y <!-- content separator --> Z[/code] just refer to the content section you want, i would advise putting those at the top.
  22. ok i will do that rendril
  23. maybe random people being signed onto *live help*, king manu, mur.., and default player has something to do with md being down....
  24. NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO!!!!!!!!!!!!!!!!!!! *is going to die if md doesn't come back to life* <b>Warning</b>: require_once(../../conf/config.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in <b>/home/magicdue/public_html/ui/navigation/ajax.onlineusers.php</b> on line <b>3</b><br /> <br /> <b>Fatal error</b>: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '../../conf/config.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in <b>/home/magicdue/public_html/ui/navigation/ajax.onlineusers.php</b> on line <b>3</b><br /> Even worse! now md is dying! :(:(:(:( wait.... if md is down... why can i still use teh chat?
  25. boredom episode 4 is done, i just made it so i was telling a story of what had happened to me at a different time, (i knew that making it so i was traveling with bored had a reason) but so far i have only gotten to where i just killed the last shade at the house of liquid dust, and i am following the story line.... btw mur, is there any way for me to get chat logs from most place since around the time i joined? it would give me more to say in my story, and it will help me in giving me ideas for new episodes of boredom.... might eventually open up the show to ideas from everyone... oh and episode 4 is 15 minutes, haven't uploaded it yet....need to remember to at some point....

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.