[ yn / yndd / fg / yume ] [ o / lit / media / og / ig / 2 ] [ ot / cc / x / sugg ] [ hikki / rec ] [ news / rules / faq / recent / annex / manage ] [ discord / matrix / scans / mud / minecraft / usagi ] [ sushigirl / lewd ]

/og/ - Other Games

saya no uta
Name
Email
Subject
Comment
File
Password (For file deletion.)

File: 1538130068120.gif (18.5 KB, 180x179, Ghost-u5d.gif)

 No.5214

It is my pleasure to introduce a new project I have been working on for the past several days. The Uboachan Dream World MUD is a text-based, in-browser multiplayer game where the users create the content with in-game commands. The focus is exploration, but I plan to add some more dynamic kinds of features later on.

You can play the MUD in your browser at http://dream.uboachan.net/ or follow the link on the sidebar.

This thread is for comments and questions, and eventually I will collect my answers from this thread into a FAQ for new users. Some user guides will be very helpful in navigating the command system, so ask me whatever and I'll try to write some good posts.

I would also like feedback on how easy/difficult/pretty various aspects of the MUD are to use.

Github: https://github.com/seisatsu/Dennis

 No.5215

File: 1538148199072.png (22.03 KB, 370x320, Go!.png)

This rules. Sei is the best.

 No.5216

Would it be possible to add some separation (e.g. a line of = characters) whenever a command is put in, to make it easier to look at? E.g.
>go rusted door
===========================================
Kingdok left the room through Rusted Door

Kingdok entered the room

Harbor (11)

Owned by: Cotton

You are in a harbor on the outskirts of a big city. It's night time, and some insects fly around the pale fluorescent lights. The sea is calm, and the sound of water soothes you. You can see the citylights flickering in the distance, below a full moon. A gentle breeze blows. Although it's cold, you feel comfortable. There isn't a single soul in sight. You feel at peace.

Occupants: Kingdok

Exits: Rusted Door, Brick Path, Docks

>list users
===========================================
Kingdok: Kingdok

Shadows: Shadows

 No.5217

>>5216
Sorry, greater-than symbol came out as > for some reason. The lines that begin with > are inputs.

 No.5218

>>5216
I've been considering something like that, and hopefully it won't be too difficult.

Edit: Done. I'm having trouble figuring out how to prevent all messages from including an empty line though.

 No.5219

>>5218
This is definitely much better, thanks. The only problem is that it also does it with automatic commands like "look" on entering a room.

 No.5220

>>5219
Fixed.

 No.5221

can i play as corey

 No.5222

This is nice yes.

 No.5223

Added private messages. Unlike the "say" command, they work with usernames rather than nicknames due to technical reasons. The command is "message <username> <message>". To find out a user's username, either look at them, or if they aren't in the same room, use "realname <nickname>" to look up their username.

 No.5224

Would it be too difficult to implement a soft lock of sorts so that certain exits cannot be touched by anybody (just the owner) but other people still can make doors and the like?
Maybe instead of locking rooms, you lock exits based on room owner?

 No.5225

I'm trying to make a room, but whenever I put in a command like make exit, it just repeats the function of the command every time. What's the step by step process when making a room?

 No.5226

>>5225
make room <ROOM NAME>
make exit <ID where you want to point> <EXIT NAME>.

Example:
>make room Spanish Forum
(the game will tell you the ID of this map, let's assume it's 24)
>make exit 24 Bloody Door

This will create a room with ID 24, and then will create a door that will point to map 24 (Spanish Forum). The exit will be called "Bloody Door".

 No.5227

Is there a pinch function to go back to the nexus? It makes sense for people to make rooms with no exit back to where they came from considering how that was in YN, so a pinch function would really help.

 No.5228

>>5224
Sure, per-exit ownership and permissions is a good idea. I'll put it on the TODO list.

>>5227
You can use "teleport 0" to go to the nexus, or use it with the ID of any room that you own to go there instantly. I will consider a convenience function just for going to the first room.

 No.5240

Not sure how to place item you've made into a room.

 No.5241

Also I don't get how the decorate exit function works.

 No.5243

>>5240
>>5241
drop <ITEM>
>make item apple
>drop apple

decorate <EXIT ID> <ACTION>
>decorate 0 falls through a hole.
>go Door
><NAME> leaves the room through Door. ID: 0
><NAME> falls through a hole.

You can check the exit id by looking at it.
>look <EXIT>

EX in nexus:
>look rusted door
>Rusted Door (5) -> 11

The number inside the parenthesis is the exit ID. Using the previous example:
>decorate exit 5 falls through a hole.
><NAME> leaves the room through Rusted Door.
><NAME> falls through a hole.

 No.5244

>>5243
Right now there's no way to lock exits with a password or anything like that, right?

 No.5245

>>5244
I just had an idea along those lines. We could have Keys, which like items can be named, described, and placed, but any number of people can pick up the same key, it goes in a section of their inventory permanently, and some exits can only be gone through if you are holding a certain key. It also has a custom action when opening the exit.

I'll have to add this along with exit ownership. You would make the exit, make the key, and only the owner can drop a key they are holding. Then you lock the exit with the key, use the "seal" command I've been planning to prevent anyone else from making exits leading to the target room, and place the key somewhere in the world (or more than one place) for people to pick up.

My earlier idea I might modify instead is that you have an "affect" command that makes an item into an effect, which means it can be placed by the owner and picked up by any number of people. Then all items, including effects, can have custom actions and abilities, and opening a locked exit would be one of the abilities they could have. This would be more complicated and extensive.

 No.5246

>>5245
In that case, either regular items shouldn't be allowed to be named key, or something else should set them apart from regular items.

 No.5247

>>5246
I updated the post. They would be distinguished somehow, at least in your inventory.

 No.5248

Another thing, "npc", interaction seems limited to creating a sort of room and exit in its place. A seperation between room and npc would be nice.

 No.5249

>>5248
I haven't added NPCs yet. If you're talking about the skeleton, it's someone's clever use of decorate exit to create the appearance of an NPC.

 No.5250

I just added exit ownership. Unfortunately, since there is no data on who made which exit, ownership of each exit defaulted to the owners of the room it is in. Post here with your username, room id, and exit id of any exit you made that you need access to.

It should be noted that the owner of a room automatically has privileges for all exits in that room.

Commands added in this update were seal room, unseal room, grant exit, and revoke exit.

 No.5251

>>5250
Just thought i'd mention this. If somebody makes a labyrinth to a key, anybody could easily fuck it up by just making a door to the right room. Maybe the lock room function is for this, but i'm not sure.

 No.5252

>>5251
They could also make the labyrinth even more confusing by just adding a bunch of exits.

 No.5253

>>5251
The seal room command prevents any exits from being made to that room, except by the room's owner. The lock room command prevents people from making more exits in that room.

I've just added the lock exit and unlock exit commands, in preparation for keys. A locked exit can only be used by the exit's owner, though the owner of the room can unlock the exit if they want.

I have also altered the database and the code so that all usernames are lowercase. Everything involving usernames should be case insensitive. Let me know if anything appears to go wrong in that regard.

 No.5254

I tried to switch the whole thing over to https but there was a complication, so it will remain an insecure page for now.

 No.5255

>>5253
Right now I could just go into the nexus or any room and clusterfuck it with exits. Sealing a room should also make creating exits in it not possible for anyone but the owner.

 No.5257

>>5255
That's what locking a room does. Sealing for inbound exits, locking for outbound exits. The synonyms might be a little confusing but I've tried to focus on making short, memorable commands with a minimum of arguments.

Perhaps "seal inbound" and "seal outbound" would be better, since now locking rooms and locking exits are different kinds of procedures, which is confusing.

 No.5259

File: 1538310561326.png (26.6 KB, 418x201, gikobar.png)

>>5214
Cool stuff Sei, i hope this will develop into something awesome

 No.5261

>>5214
>I would also like feedback on how easy/difficult/pretty various aspects of the MUD are to use.
It wasn't obvious that the 'submit query' box was the input box for the MUD, rather than some kind of help form, because it is a separate element. I was expecting something to load in the blank space before I tried typing and saw how it worked. If convenient, it would be good to have your history of queries navigable by pressing the up and down arrows.
Could the list of commands in the help message be reorganised please so that rather than being glommed together and sorted alphabetically, they're grouped by e.g. normal gameplay exploration actions, room/exit-making actions, wizard-only actions etc. and within each, sorted alphabetically?
The list rooms command doesn't show anything except for a line of equals signs. Is it not yet implemented? Same with list items.
I'll be coming back, this is cool.

The caves that you access with the blue door in the nexus use the current limitations to fake interactions between items and exits in a cool way. If you 'take flashlight' (which really means to go through the exit of the same name) you enter a room without a blue door and the flavour text says that the door vanishes. You can 'return flashlight' in the same way to get the blue door back. And while "carrying" the "flashlight", you can go explore into new regions.

 No.5262

File: 1538346082938.jpg (39.17 KB, 336x280, 2dd54ce20056a106d01d9f26d2….jpg)

>>5261
>It wasn't obvious that the 'submit query' box was the input box for the MUD
I'll change that to "Send" for now. I might also have your cursor go to that box automatically on page load.

>it would be good to have your history of queries navigable by pressing the up and down arrows.

Yes, it would. I'll try to figure that out. It might be deceptively complicated though.

>Could the list of commands in the help message be reorganised please

Grouping commands by category is a good idea. I was starting to think the list was too big. I'll need to revamp the help system a little.

>The list rooms command doesn't show anything except for a line of equals signs. Is it not yet implemented? Same with list items.

In order to not give away surprises, unless you are an admin, these commands only list rooms and items that you own. I should add a message that appears if there aren't any entries.

> The caves that you access with the blue door in the nexus use the current limitations to fake interactions between items and exits in a cool way.

I'll take it into consideration when I do the items update at some point.

 No.5263

File: 1538348844989.jpg (193.31 KB, 850x531, __original_drawn_by_suzuha….jpg)

>>5261
>The caves that you access with the blue door in the nexus use the current limitations to fake interactions between items and exits in a cool way.
Cool, sure, but if items also had that sort of functionality on their own without having to rely on current limitations it would be even better. I don't see how sei can get around making game creation require more direct involvement and esoteric knowledge from people interested in that. You can only keep it really basic for so long before people who want to be hands on get bored.

 No.5264

Added the "chat" command, which lets you send a message to the general chat. General chat messages are received by everyone who has chat enabled, which it is by default.

To disable general chat for a more solitary experience: "disable chat"

You can also block annoying users, so you won't receive chat messages or private messages from them. Currently if they are in the same room as you though, you will still hear what they say. The command is "ignore user <username>", with the reverse being "unignore user <username>".

Also various small tweaks and bugfixes.

Next I think I will work on cleaning up the help system, since there are an awful lot of commands now. I'll divide it into categories.

 No.5265

Ok, help has categories now. Some commands are in multiple categories.

Unless there are other suggestions, the next major update will probably be either keys or mail.

 No.5266

The "describe" commands now let you insert a paragraph break. Use a double backslash wherever you want to split the paragraph.

 No.5267

Added a telnet service at dream.uboachan.net:37378. Currently, users accessing via different backends cannot see or interact with each other, though they can edit the same world.

Edit: Telnet and websocket users can now interact.

 No.5270

The "look" command now shows item and exit IDs next to their names, and the "go", "get", and "drop" commands now support IDs in addition to item/exit names. This should make interacting with items and exits with long names less obnoxious.

There are also single-character aliases for some common commands:

"hello -> say hello
#hello -> chat hello
.user hello -> message user hello
:dances -> action dances
>big door -> go big door

 No.5271

Moved to >>>/ig/872.



[Return][Go to top] [Catalog] [Post a Reply]
Delete Post [ ]
[ yn / yndd / fg / yume ] [ o / lit / media / og / ig / 2 ] [ ot / cc / x / sugg ] [ hikki / rec ] [ news / rules / faq / recent / annex / manage ] [ discord / matrix / scans / mud / minecraft / usagi ] [ sushigirl / lewd ]