If you have any issues in regards to 1stMud, please bring them up to me. I am the co-owner of 1stmud, and right now the other owner, Markanth (Ryan) is currently on a personal leave from the internet, leaving the complete project in my hands. I know that Markanth has tried to give credit to everyone who has contributed to his 1stmud release, and if there are issues with that, let me know, and I will address them.
-- Owner The Alaskan Bear's Den http://www.akbearsden.com Co-Owner Devil's Lament Mud > > I have never seen WotMud myself so I can't comment on the complete > codebase > versus 1STmud's complete codebase but with the example you have given > using > the nanny function if you care to check stock rom, and even stock merc has > this same exact code in it. 1STmud gives credit to these two codebases so > if the credit to WotMud was lost somewhere it was lost before the final > release of Merc and any derivative thereafter cannot be held responsible > for > not giving credit to the original author when the codebase they started > from > themselves did not give credit to them. IMHO this is an issue that needs > to > be brought up on a Merc list but as I'm not aware of any Merc lists that > still exist........ > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of > Christopher > Bunting > Sent: Saturday, April 02, 2005 2:47 AM > To: [email protected] > Subject: Re: Rom Derivs.. Credits or lack thereof > > Hello, > The rom/merc/diku credits in 1stmud are not what I was talking about. > > 1stmud lists allot of snippets on it's home page with credit to the > original authors.. But the thing is, WotMud that was released on what > used to be egroups, now yahoo groups already had those additions in > it. So basicly, 1STmud appears to be a stock version of Wotmud with > different areas and code that was changed to give it a different > appearance. > > 1STMUD nanny.c > ---- > void nanny(Descriptor * d, const char *argument) > { > > if (d->connected != CON_NOTE_TEXT) > { > while (isspace(*argument)) > argument++; > } > > switch (d->connected) > { > > default: > bugf("Nanny: bad d->connected %d.", d->connected); > > > WOTMUD nanny.c > > /** Function: nanny > * Descr : Deals with sockets that have not yet logged in, and also > parses all > * : connected ("CON_") states. > * Returns : (N/A) > * Syntax : (N/A) > * Written : v1.0 3/98 > * Author : Rom Consortium/Gary McNickle <[EMAIL PROTECTED]> > */ > void nanny (DESCRIPTOR_DATA * d, char *argument) > { > CHAR_DATA *ch; > > /* Delete leading spaces UNLESS character is writing a note */ > if (d->connected != CON_NOTE_TEXT) > { > while (isspace (*argument)) > argument++; > } > > ch = d->character; > > switch (d->connected) > { > default: > bugf ("[nanny.c::nanny] bad d->connected %d.", d->connected); > > Even the mud.data files are the same.. 1STMUD removed all of Gary's > headers from every one of the original wotmud files.. Gary wrote > wotmud as far as I remember so there is no way that the 1STMUD author > codes exactly like Gary using the same file structure, datafiles and > addons.. 1STMUD simply switch functions in in different files and > changed the structure of various functions but it is clearly WotMud. > > I've been on this list 9 years.. I have every codebase that was ever > released on the internet since 1995 or so.. I've spent many hours > compiling and checking out hundreds of codebases that I have on > cdrms.. I know what codebase is what and who's it was before it became > a another deriv.. > > Chris > -- > ROM mailing list > [email protected] > http://www.rom.org/cgi-bin/mailman/listinfo/rom > > > -- > ROM mailing list > [email protected] > http://www.rom.org/cgi-bin/mailman/listinfo/rom >

