What I would like it to be
*display greeting*
What is your name:
What is your password:
What it is
*display greeting with whats your name question*
What is your password:
how do I either get this new question added
or.. make it so when player enters name after standard
greeting their name gets displayed on same line as question
*edit*
This involves making it so its not looking for the answer to
the question before it asks it... Ive been successful adding
the new question by using the guides.. but it still wants
the name given right after the greeting instead of when it
asks for it
Text received from Mud BOLD Text sent to Mud ITALIC
*** REALITY ***
SWReality 1.0 by Sean (Durga the Hutt) Cooper - specs@golden.net
Original SMAUG 1.0 written by Thoric (Derek Snider) with help from
Altrag, Blodkai, Narn, Haus, Scryn, Swordbearer, Rennard, Tricops and Gorog.
Original MERC 2.1 code by Hatchet, Furey, and Kahn. Original DikuMUD code by:
Hans Staerfeldt, Katja Nyboe, Tom Madsen, Michael Seifert && Sebastian Hammer
Star Wars and Star Wars names are a copyright of Lucasfilm ltd.
Please enter your name: <-- Is part of greeting Admin <-- MUST get entered to get next question Enter your name:Admin Password:*****
Administrator@Home ~/swr1fuss/src
$ make
make -s swreality
Compiling o/comm.o....
comm.c: In function `new_descriptor':
comm.c:770: warning: implicit declaration of function `send_to_desc_color'
comm.c:776: warning: redundant redeclaration of `send_to_desc_color' in same scope
comm.c:770: warning: previous declaration of `send_to_desc_color'
make[1]: *** [o/comm.o] Error 1
make: *** [all] Error 2
You may need to use write_to_desc, your implementation is different from mine clearly, but just move where ever you put your other lineto print it out up to that spot and you should be fine.
Thank you Greven.. i had to change the configuration of the
way you suggested and had to change the function to
write_to_buffer.. but other than that it works great.. my
first question is now after the greeting rather than included
in it.. I appreciate the assistance and the patience..
write_to_buffer( dnew, help_greeting+1, 0 );
instead of suggested
send_to_desc_color(help_greeting + 1, dnew);
thanks again
**
On an added note could you tell me why cygwin gave me an error
and said there wasnt enough "arguments" when the 0 on the end
of those corrected statements was missing. What does the 0
represent..