Welcome to the Builder Academy

Question ; problem

More
13 Mar 2025 03:57 #10584 by hskid
; problem was created by hskid
hello.

I'm building something with the tbamud2023 version.
I'm not a programmer, so I'm facing some headaches.
So I have two questions here.

1. output problem when using commands together with ;?
Code:
500H 100M 82V (news) (motd) > n;s The Immortal Board Room   The main hang out of the Gods, the Immortal Board Room is the place to be. Gods exchange messages here most every day.  The eastern foyer is to the south. [ Exits: s ] A large bulletin board is mounted on a wall here.  It glows with a faint aura. 500H 100M 82V (news) (motd) > Eastern Foyer   You are in the Eastern End of the Gathering Hall.  Several pillars line this room.  The foyer continues east into what looks like a hallway and west into a circular central room.  Archways north and south lead into the Immortal Board Room and the Mortal Board Room. [ Exits: n e s w ] ( 2) A plush couch is here in front of a coffee table. ( 2) A comfy looking French loveseat is here. A glowing exit arrow is here, hanging from the ceiling. ..It has a soft glowing aura!


When I type the command n;s, the first room is displayed normally, but in the second room,
the room name is stuck at the After the first n, no matter how many commands are entered,
the prompt is still displayed. After the first n, no matter how many commands I type, the
prompt comes out and the room name is printed directly with no line breaks. If I put line
breaks in look_at_room(), the line breaks twice when moving normally and the description
is visible, so I think this is also not the way





2.Use ;in abbreviations
I want to use the n;s above as an abbreviation: 'alias move n;s;e;w', so that when I type
move is created and when I type move, I want it to be n-enter-s-enter-e-enter-w-enter.
But when I type 'alias move n;s;e;w', it doesn't register the abbreviations and executes
them one after the other. Also, if I open the player file and force n;s;e;w into move, and
run move, I get a message saying 'n;s;e;w' is recognized as a string and the ;does not behave
as an enter.

Please Log in or Create an account to join the conversation.

More
13 Mar 2025 22:02 #10587 by thomas
Replied by thomas on topic ; problem
Hi, and welcome to the codebase :)

I'll try to take a stab at the questions.
1. When you enter n;s, you aren't adding the enter at the end of each command - the linefeed is usually not actually sent by the mud, but echoed from the user.
So if you type in "n", "enter", "s", "enter", the mud will echo the newline from the enter, before executing the commands, and this makes sure the output is after the prompt.
This _explains_ the issue. So, how can it be fixed?

This isn't really a mud issue - if you write "n;s" and "enter" in the mud, connected with telnet, you'll get an error (see below). It comes from the client you're using, and I'd recommend you check out their pages.

2. This is the way it works today.
I entered ""alias move n;s;n;s", got feedback "Alias ready" and when I typed "move", I moved north and south a couple of times. Note that when the move is triggered by an alias, the prompts get proper newlines:
Code:
474H 100M 82V (news) (motd) > alias move n;s;n;s Alias ready. 474H 100M 82V (news) (motd) > move The Immortal Board Room The main hang out of the Gods, the Immortal Board Room is the place to be. Gods exchange messages here most every day. The eastern foyer is to the south. [ Exits: s ] A large bulletin board is mounted on a wall here. It glows with a faint aura. 474H 100M 82V (news) (motd) > Eastern Foyer You are in the Eastern End of the Gathering Hall. Several pillars line this room. The foyer continues east into what looks like a hallway and west into a circular central room. Archways north and south lead into the Immortal Board Room and the Mortal Board Room. [ Exits: n e s w ] ( 2) A plush couch is here in front of a coffee table. ( 2) A comfy looking French loveseat is here. A glowing exit arrow is here, hanging from the ceiling. ..It has a soft glowing aura! A strange amorphous being wanders these halls eternally cleaning. 474H 100M 82V (news) (motd) > The Immortal Board Room The main hang out of the Gods, the Immortal Board Room is the place to be. Gods exchange messages here most every day. The eastern foyer is to the south. [ Exits: s ] A large bulletin board is mounted on a wall here. It glows with a faint aura. 474H 100M 82V (news) (motd) > Eastern Foyer You are in the Eastern End of the Gathering Hall. Several pillars line this room. The foyer continues east into what looks like a hallway and west into a circular central room. Archways north and south lead into the Immortal Board Room and the Mortal Board Room. [ Exits: n e s w ] ( 2) A plush couch is here in front of a coffee table. ( 2) A comfy looking French loveseat is here. A glowing exit arrow is here, hanging from the ceiling. ..It has a soft glowing aura! A strange amorphous being wanders these halls eternally cleaning. 474H 100M 82V (news) (motd) > n;s Huh!?!
The following user(s) said Thank You: hskid

Please Log in or Create an account to join the conversation.

More
13 Mar 2025 22:43 #10588 by hskid
Replied by hskid on topic ; problem
Thank you for your kind response. It looks like my mistake is correct.
I'm using tintin++ and that's where the problem is.
Question 2 is a problem because tintin++ converts ;to enter,
and n;n;s;s;is not used for telnet access.


Since #2 is solved and I still need to use tintin++, I'm going to try
the solution to #1. As a workaround, in comm.c, if there is a command in
d->input after prompt output, it will execute a newline if there is a
is left in d->input, I solved it by running a newline.

Thanks!

Please Log in or Create an account to join the conversation.

More
14 Mar 2025 20:48 #10589 by thomas
Replied by thomas on topic ; problem
Good to know you figured out a solution.

Please Log in or Create an account to join the conversation.

Time to create page: 0.299 seconds