You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(9) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Greg T. <gr...@sp...> - 2002-02-28 03:33:02
|
We've gotta get hacking these things out bit by bit. The best way is to not do it all at once or the arrays get confusing and out of line. Here is the stuff we want renamed and substituted. If you feel up to yanking some out, submit patches! Human - Human Wookiee - Delorian Twi'Lek - Uninib Rodian - Xeren Hutt - Bombel Mon Calamari - Aquanti Shistavanen - Brujan Gamorrean - Terroni Jawa - Vien Adarian - Yralgor Ewok - Erven Verpine - Cwenti Defel - Wervonnen Trandoshan - Iazic Chadra-Fan - Quennen Quarren - Phalon Sullustan - Fuenti Falleen - Avalonian Ithorian - Treitite Devaronian - Xervan Gotal - Cervon Droid - No Change Firrerreo - Aszyn Barabel - Phanq Bothan - Itzpon Togorian - Kevlern Dug - Ionin Kubaz - Werin Selonian - Gellon Gran - Viesheen Yevetha - Ronnin Gand - Sien Duros - Halfan Coynite - Jalian Protocol Droid - Cypher Droid Assassin Droid - No Change Gladiator Droid - Cyborg Astromech - Pilot Droid Interrogation Droid - No change God - No change Please post your progress to here if you decide to undertake part of this. Be CAREFUL when running 'replace' or substitutions. Some races are part of actual words in the human language, IE: Replacing all the 'Hutt's in a file might replace a Hutt in Shuttle. Making all the previous 'Shuttle's read: Sbombelle's -- => Greg Taylor -> Project Administrator -[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]- | Dawn of the Titans | -[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]-[]- | Project Page: http://sf.net/projects/dott | | DoTT Page: http://dott.sourceforge.net | <=------------------------------------------------=> |
From: David B. <dm_...@ho...> - 2002-02-26 05:47:37
|
Made a mistake and submitted a patch missing some important double quotes. 522825 is bad, use 522830 instead. Also, I did compile and run the MUD ok on Linux, with all of the Cygwin changes. So far so good. David _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com |
From: David B. <dm_...@ho...> - 2002-02-25 02:50:14
|
My ICQ # is 114083347 -David Bradford >From: Greg Taylor <gr...@sp...> >Reply-To: gr...@sp... >To: dot...@li..., DoTT-Admin ><dot...@li...> >Subject: [Dott-Admin] Communication >Date: Sat, 23 Feb 2002 02:54:29 -0500 > >We're going to need a way to communicate with one another other than >email :) I'm up for several forms of messengers including ICQ, AIM, MSN, >Yahoo, or whatnot. I think it's safe to say most of us have ICQ or AIM >at least, or have the ability to run it. If you are an active >contributor or think you will be, go get ICQ and post your # on here so >we can get organized. > >Mine is: 45905171 > > >_______________________________________________ >Dott-Admin mailing list >Dot...@li... >https://lists.sourceforge.net/lists/listinfo/dott-admin _________________________________________________________________ Join the worlds largest e-mail service with MSN Hotmail. http://www.hotmail.com |
From: Amit T. <ath...@ho...> - 2002-02-24 21:34:28
|
my ICQ#: 104750635 -Amit >From: Greg Taylor <gr...@sp...> >Reply-To: gr...@sp... >To: dot...@li..., DoTT-Admin ><dot...@li...> >Subject: [Dott-Devel] Communication >Date: Sat, 23 Feb 2002 02:54:29 -0500 > >We're going to need a way to communicate with one another other than >email :) I'm up for several forms of messengers including ICQ, AIM, MSN, >Yahoo, or whatnot. I think it's safe to say most of us have ICQ or AIM >at least, or have the ability to run it. If you are an active >contributor or think you will be, go get ICQ and post your # on here so >we can get organized. > >Mine is: 45905171 > > >_______________________________________________ >Dott-Devel mailing list >Dot...@li... >https://lists.sourceforge.net/lists/listinfo/dott-devel _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com |
From: Greg T. <gr...@sp...> - 2002-02-24 07:51:17
|
We're going to need a way to communicate with one another other than email :) I'm up for several forms of messengers including ICQ, AIM, MSN, Yahoo, or whatnot. I think it's safe to say most of us have ICQ or AIM at least, or have the ability to run it. If you are an active contributor or think you will be, go get ICQ and post your # on here so we can get organized. Mine is: 45905171 |
From: Greg T. <gr...@sp...> - 2002-02-24 07:44:36
|
A patch is basically a file that other people can use to update their code based on the contents of your patch file. In the patch file is a detailed list of things that you changed on your copy of the file from the main CVS located on SF. This is detailed up to the line. It documents lines that are added, deleted, or modified. Not all of the contributors to the DoTT project have CVS, and it's not neccessary for all of them to have it since we have the ability to patch. For those of you who wish to contribute code but don't have an account with access to the developer CVS account, start by getting a copy of the code. cvs -z3 -d:pserver:ano...@cv...:/cvsroot/dott co dott10 A bunch of files should fly by and depending on your connection speed, you'll either get it quick or around 15-20 mins worth (Approx 4-5 MB or so). A dott10 dir will be created in your current directory. If you already have a copy of our code, first make sure your copy is up to date by either typing the command above from one level above the dott10 directory, or by manually updating file(s) by typing cvs update <filename> Make SURE to do this before you even think of changing something. This will merge the SF CVS with your file. If you have changed something and need the newest copy of the file, you may still cvs update and attempt to merge it. This usually works unless your work crosses over work submitted after your version of the file was released. Which is why you should always keep your source up to date and the patches should be submitted as soon as possible to avoid conflicts. From there you can cd to the dir, change something, then create a patch file of your changes cvs diff <yourfile> <filetocompare> > <diffname> Your file is the name of the file you changed. Filetocompare is the name of the file on the CVS archive, which should almost always be the same as Yourfile. The > signifies that you're dumping the output from the command in to a file. If you remove the stuff after filetocompare and hit enter, you'll see the diff text. Diffname is the name of the cvs diff (Or patch) file to create. This should be yourfile.diff. IE, I change mud.h, my diff file is mud.h.diff. Submitting patches happens through the SF website. When you go to the Dawn of the Titans projet, there is a heading 'Public Areas' which contains a 'Tracker' section, which has a 'Patches' link. If you click on 'Patches', you end up in the Patches Tracker, and you can click on 'Submit New' to submit a new patch. When submitting patches, try not to submit multiple changes. I know this is sometimes unavoidable, but try to split more minor changes in to different patches so we can see more of what exactly was changed. IE: Don't go edit the code and just do whitespace/format rearranging AND add or modify code too. We can't tell what was added if you do that :) Applying patches to MUD source happens through 'patch'. How you need to run patch depends on how the original diff was created, but in general you do 'patch -p0 < /path/to/patchfile' in the directory that contains the files that will be updated. If you have no existing source or want to update directly from the CVS which is basically the same as applying a patch, type this: cvs -z3 -d:pserver:ano...@cv...:/cvsroot/dott co dott10 This will merge the current CVS with your local code. The dott10 directory will be created or updated from your current directory. It's usually best to be IN your home dir when doing this. CVS is still a bit foreign to me, so please tell me if there are any errors in this post. There probably are, but this will do for now to start :) Grant Blackman - Project Administrator |
From: Greg T. <gr...@sp...> - 2002-02-24 05:30:34
|
Well, it seems that we will probably schedule our official Alpha release date for around two weeks from now (Feb 24th). By then we should have a lot of the trivial stuff done involved in removing the SWR elements from the game. After that we'll be ready to start implementing and recoding a lot of the old badly wrote stuff to be more balanced and better gameplay. We've got quite a few ideas already, feel free to suggest any on either of the mailing lists. There is also a Dott-Checkins mailing list that automatically mails you when something new is CVSd to the archive. Sit tight, and we'll have a release ready soon. If you are impatient and want to see what we have as of now, visit the CVS section of our page at: http://sf.net/projects/dott Grant Blackman - Project Administrator |
From: Amit T. <ath...@ho...> - 2002-02-22 00:16:03
|
I'm here :) any headway in selecting the codebase? -Amit >From: Greg Taylor <gr...@sp...> >Reply-To: gr...@sp... >To: DoTT-Devel <dot...@li...>, DoTT-Admin ><dot...@li...> >Subject: [Dott-Devel] Ping >Date: Wed, 20 Feb 2002 16:14:53 -0500 > >Pong! Anyone on here yet? > > >_______________________________________________ >Dott-Devel mailing list >Dot...@li... >https://lists.sourceforge.net/lists/listinfo/dott-devel _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
From: Greg T. <gr...@sp...> - 2002-02-21 21:10:48
|
Pong! Anyone on here yet? |
From: Greg T. <gr...@sp...> - 2001-07-23 23:37:39
|
Is this thing on? |