Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ Area Editor
➜ General
➜ Newgate.are
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Hawkins
(17 posts) Bio
|
Date
| Fri 23 Jan 2004 01:30 AM (UTC) |
Message
| This might not be the right place to post this...so, sorry in advance if it is.
I would very much like to have auth turn on so newbies can go through the spectral gates and learn the game a little as well as get some eq. However, our MUD is new and small, (not quite open to beta yet)...and we don't have enough imms to be on 24/7, which means an imm might not be on to authorize someone. This being the case I was wondering if it was possible for a prog (room or MOB) to authorize names....or if there was a way to change it in the code. Let me know please, thanks. | Top |
|
Posted by
| Robert Powell
Australia (367 posts) Bio
|
Date
| Reply #1 on Fri 23 Jan 2004 02:55 AM (UTC) Amended on Fri 23 Jan 2004 03:08 AM (UTC) by Robert Powell
|
Message
| this is quite easy to complete so into your /system directory and open sysdata.dat and change the Waitforauth entry to 0 this will put the plater straight into the mud school and not leave them at the spetral gates.
As for giving them eq there a few ways you can achieve this, let them kill the mobs in the school that have eq, use mprogs to load and give the eq's to them then force them to wear or there is a way in the code to assign them some eq, look in comm.c for this code,
/* Added by Brittany, Nov 24/96. The object is the adventurer's guide
to the realms of despair, part of Academy.are. */
{
OBJ_INDEX_DATA *obj_ind = get_obj_index( 10333 );
if ( obj_ind != NULL )
{
obj = create_object( obj_ind, 0 );
obj_to_char( obj, ch );
equip_char( ch, obj, WEAR_HOLD );
}
}
This is the bit of code that gives a new player the Newbie Guide that they are holding after creation, i dont like beign nude nor being forced to wear stuff so this is a much cleaner way to do it. Also you can do some if checks and give the different classes differing weapon types. To dress them just copy and paste the code under itself changing the vnum to the vnum of the item you want them to be wearing at creation and also the wear location to one where the item is worn. |
Just a guy having a bit of fun. Nothing more, nothing less, I do not need I WIN to feel validated. | Top |
|
Posted by
| Aidan
(8 posts) Bio
|
Date
| Reply #2 on Sat 14 Feb 2004 11:28 PM (UTC) |
Message
| To add to what Robert said...If I'm understanding you right you want to have players go through the Spectral Gates, yet not require them to be authorized before entering the actual game? If that is the case the easiest way to go about it would probably be to change this line in mud.h found around line 1822 in the source from Nick's site
#define ROOM_VNUM_SCHOOL 10300
So that the number is the VNUM of the beginning of the Spectral Gates(which I believe is 100). You would then need to create an exit in the room with the pull rope (the last room in the spectral gates) to your MUD school. Now all you need to do is set Auth to 0 in your config and you should be good to go.
Someone feel free to correct me if I'm wrong.
BTW, this seems like more of a coding issue than an Area Editor one. | Top |
|
Posted by
| Nick Gammon
Australia (23,158 posts) Bio
Forum Administrator |
Date
| Reply #3 on Sun 15 Feb 2004 02:10 AM (UTC) |
Message
| I think you will find that doing that still gets you stuck in newgate.are but I might be wrong.
This could be an Area Editor issue in the sense that the solution might be to simply make an ordinary exit out of newgate.are into the main newdark.are so players can simply walk through it. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Aidan
(8 posts) Bio
|
Date
| Reply #4 on Sun 15 Feb 2004 02:03 PM (UTC) |
Message
| Right, you will need to make the exit so they can just go though it to the MUD school. The problem that would come up if you still have Auth turned on is that the person wouldn't be able to save even after they were out of the newgate area. Therefore, if you change that define in mud.h and then make the exit out of newgate...I think it just might work. ;) | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
18,153 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top