Home Entrance Wiki Search Login Register

Welcome, Guest. Please login or register.
March 06, 2023, 05:47:10 am
Forum activity rating: Five Star Posts: 102/24hrs Show Unread Posts | Unread Replies | Own Posts | Recent Posts
News: :4u: ~~~~~~~~~~~  :4u:

Show Posts

* Messages | Topics | Attachments

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Melooon

Pages: 1 ... 73 74 [75] 76 77 78
1111


HOLY frillin heck they are coming, its a strike!!!! This lil ozwomp gif is my new favorite thing ever :grin:

Ok some extra ideas for icons off the top of my head: 3d, website, gallery, mystical, hyperlink, resource, ancient, cute, music making.

Also I totally didn't see the green hand in that icon :loved:

[EDIT: spelling ._.]
As someone with dyslexia, there is no judgment on this forum about spelling :tongue:

1112
© ∙ Music Room / Re: Melon's Song of the day!!!
« on: November 25, 2021, 11:32:58 pm »
#10 25/11/2021 - Karen Dalton - Pastures of Plenty


1113
♖ ∙ Games Cafe / Re: Interactive Fiction Archive
« on: November 24, 2021, 11:41:09 pm »
Ah this looks cool, I do like text adventures a lot. I even setup an old DOS computer in my old house, mainly to play Zork and Monkey Island in its true context. The clacky keyboard screen glow really add to it.



Ugh I just wish I felt like I had the time to sit down and play some properly and the space to setup that computer again.


1114
© ∙ Music Room / Re: Melon's Song of the day!!!
« on: November 24, 2021, 11:32:28 pm »
#9 24/11/2021 - Donald Shirley - Blue Skies


1115
Hi all, if you don't already know, a webgarden is a mini site that people can include in an iframe on their site as a fancy link to you!

Many people put all the webgardens they like on a special collection page called a greenhouse.
For example this is my greenhouse: https://melonking.net/webgarden/greenhouse.html

And this is my webgarden code:
Code
<iframe src="https://melonking.net/webgarden.html" scrolling="no" style="width:250px; height:250px;border:2px solid yellow;"></iframe>

You can lean more about the idea on miss mosses site here: https://missmoss.neocities.org/webgardens/tutorial/

One of the issues with webgardens though is that it can be hard to actually find them, SO!!!
Please post your webgarden below AND/OR link your greenhouse to show it off!

MelonLand Wiki page: https://wiki.melonland.net/web_gardens

1116
♖ ∙ Games Cafe / TinyTIM - A cool multiplayer text adventure
« on: November 23, 2021, 10:42:00 pm »

Hi, I just wanted to give some love to TinyTIM a really strange multiplayer text adventure / MUD / MUSH (Multi user shared hallucination) Tim is a text based world where you can explore and make your own rooms and setup things that will happen in the rooms and write stories for them and more.

Screenshot:



How do I play!
If you just want to try it out you can use an online telnet client like this one: Online Client
Just connect using host: yay.tim.org port: 5440

If you want to really get into it I recommend using Mudlet, a free text adventure client you can get on Mac, Windows and Linux. ALSO it comes with connection details for a bunch of other text adventures.
You can get it here!


Let me know if you try it out and what you get up to, AND/OR if you enjoy any MUDs.


1117
© ∙ Music Room / Re: Melon's Song of the day!!!
« on: November 23, 2021, 06:24:25 pm »
#8 23/11/2021 - Avicii - What Would I Change It To (BUNT. Edit)

1118
☆ ∙ Showcase & Links / Re: ♡-->★彡 jade's wurld ・゚✧ ★彡
« on: November 23, 2021, 06:06:22 pm »
This is a really cool project and it makes me feel like Im not working on my projects enough :grin: Also your character models are awesome and I still want to see a time lapse of how you do them.

I have a few questions reading this!

Is there gonna be an objective in this world or is it just about the space/exploring?
Do you plan to have a main story, or micro stories of some sort?
I know you've done some multiplayer things, will this be multiplayer?
Are you gonna do a crossover with this and your gallery projects?
Will people be able to drive the cars!?
Do you think its gonna be a web game or a download game as it gets bigger? AND do you think that would change your approach to making it?
Also you've worked on it for a while now and done a few versions, what are the biggest things you've learned / had issues with / would do differently so far, and what things have you found really great or fun.


1119
PaY PhOne spOTtinG 👀 👀 👀 📸

This idea is loosely based on 2600 Magazine, they have a page dedicated to picture of payphone sent in by readers. I find Iv taken to spotting payphones wherever I go, soon there may be none left :notgood: Be aware, payphone spotting is a valid and serious sport and you can and will become rich doing it!!

If you spot a payphone in your local area or on your travels, take a picture of it and post it here! Together we will save the payphones (in picture form)


Kinsale, Ireland - 2021


Fuji Q Park, Japan - 2019


1120
♖ ∙ Games Cafe / Re: What are you playing (or have finishes)?
« on: November 22, 2021, 10:27:00 pm »
Got into playing animal crossing new horizons, currently paying off my house loan.

Finally! Someone else still playing AC :grin:

1121
© ∙ Music Room / Re: Melon's Song of the day!!!
« on: November 22, 2021, 07:43:56 pm »
#7 22/11/2021 - The Rolling Stones - You Can’t Always Get What You Want


1122
☔︎ ∙ Help & Tutorials / Re: Best way to have a 2 column site?
« on: November 21, 2021, 07:30:57 pm »
The new school way would be to use flex, although that's designed for sites that have dynamic width.
Which you can read about here: https://css-tricks.com/snippets/css/a-guide-to-flexbox/

If you wanna do it the old way you can make both columns float left, then set a fixed width for each (you can also do a % width for dynamic sizing)

Something like: Untested sample code to give an idea, may not directly work! This will create 2 columns that should always be 100% the height of the wrapper, so in theory as the wrapper expands, so will both columns.

Code

<div id="wrapper">
 <div id="col-a"></div>
 <div id="col-b"></div>
</div>

#wrapper {
 width: 700px;
 margin: 0px auto 0px auto;
}

#col-a, #col-b {
 float: left;
 height: 100%;
}

#col-a {
 width: 200px;
}

#col-b {
 width: 500px;
}



1123
☕︎ ∙ Fun & Forum Games / Re: Fortunately / Unfortunately
« on: November 21, 2021, 07:20:23 pm »
fortunately, the mooses ex was actually made of ice and she melted in the heat shouting "Oh what a world what a world!" (she didn't die just melted)


1124
© ∙ Music Room / Re: Melon's Song of the day!!!
« on: November 21, 2021, 11:09:30 am »
#6 20/11/2021 - Natasha Bedingfield - Unwritten - a bit late! Here's a classic!


1125
⛄︎ ∙ Forum Discussion / Re: Forum feature requests and Ideas
« on: November 20, 2021, 04:03:04 am »
I think it would be really neat if you gave users the ability to change this forum's theme. Imagine the possibilities!

Do you mean you'd like to have totally different themes to pick from? (We can DO that! HOWEVER I would not have time to add custom things to them like the world or radio links at the top.) - Options: https://custom.simplemachines.org/index.php?action=themes We could start a thread for people to pick their favorite options.

OR do you mean you would like the ability to add custom CSS to this theme? Which would allow you to change colours and background images etc? (I think we can do this too, Id just need to figure out how!)


Pages: 1 ... 73 74 [75] 76 77 78


Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021, Simple Machines | SMFPacks Super Quote Forum Guide | Rules | RSS | WAP2


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery!