You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Daniel R. <dtr...@us...> - 2005-10-29 08:22:25
|
Update of /cvsroot/efum/efum/data/efum/places In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29911/data/efum/places Modified Files: northwestcgate.efum Log Message: changes from long ago Index: northwestcgate.efum =================================================================== RCS file: /cvsroot/efum/efum/data/efum/places/northwestcgate.efum,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** northwestcgate.efum 25 May 2004 04:56:34 -0000 1.3 --- northwestcgate.efum 29 Oct 2005 08:22:17 -0000 1.4 *************** *** 2,7 **** name = NORTHWESTCGATE ! desclines = 1 ! desc1 = You are at an open gate. Next to you sit the C building bathrooms and drinking fountains. You can ascend the stairs to C-208, head West toward the office, go South toward the special education classrooms, or explore the lower C-bulding classrooms to your East. north = c208stairs --- 2,8 ---- name = NORTHWESTCGATE ! desclines = 2 ! desc1 = You are at an open gate. Next to you sit the C building bathrooms and drinking fountains. You can ascend the stairs to C-208, head West toward the office,%s ! desc2 = go South toward the special education classrooms, or explore the lower C-bulding classrooms to your East. north = c208stairs |
From: Daniel R. <dtr...@us...> - 2004-07-24 18:14:10
|
Update of /cvsroot/efum/efum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2139 Modified Files: Readme.txt Log Message: clarify included docs/module licensing, new module licensing requirements, AFL dual-licensing on certain files Index: Readme.txt =================================================================== RCS file: /cvsroot/efum/efum/Readme.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Readme.txt 22 Jul 2004 16:35:19 -0000 1.3 --- Readme.txt 24 Jul 2004 18:14:01 -0000 1.4 *************** *** 6,13 **** It loads and error-checks custom-format data files for four types of objects: rooms, items, containers, and people, and allows the player to interact with them with commands like eat, use, take, talk, go, etc. ! The battle system is skill and item based, using rhetorical strategies (ethos, pathos, and logos) and modes (persuasion, description, exposition, and narration), as well as special items picked up along the way. ! ! Your goal (for the EFUM module) is to avoid getting detentions while trying to ditch school to go get a burger. ! EFUM is licensed under the GNU GPL. See the file copying.txt for more information. --- 6,12 ---- It loads and error-checks custom-format data files for four types of objects: rooms, items, containers, and people, and allows the player to interact with them with commands like eat, use, take, talk, go, etc. ! The battle system is skill and item based, using rhetorical strategies (ethos, pathos, and logos) and modes (persuasion, description, exposition, and narration), as well as special items picked up along the way. ! Your goal (for the EFUM module) is to avoid getting detentions while trying to ditch school to go get a burger. + EFUM's engine, and the documentation and data modules included with it, are licensed under the GNU GPL. See the file copying.txt for more information. It should be noted that new modules need not be licensed under the GPL unless they copy sections from the existing modules, however, licensing under the GPL is strongly recommended. Certain parts of the EFUM engine are dual-licensed under the GPL and the Academic Free License, version 1.2; this dual licensing does not extend to any files which are not clearly marked as being redistributable under the AFL. \ No newline at end of file |
From: Daniel R. <dtr...@us...> - 2004-07-24 18:13:27
|
Update of /cvsroot/efum/efum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2064 Modified Files: scripters reference.txt Log Message: add eatsucceeded/drinksucceeded doc Index: scripters reference.txt =================================================================== RCS file: /cvsroot/efum/efum/scripters reference.txt,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** scripters reference.txt 24 Jul 2004 15:06:31 -0000 1.11 --- scripters reference.txt 24 Jul 2004 18:13:18 -0000 1.12 *************** *** 14,17 **** --- 14,19 ---- CHAR->VictoryScript + For more details, read the Writer's References for each of the objects. + All user commands are supported in these scripts, e.g. "drop", "go", etc. For more information on these commands, see help.txt. *************** *** 35,37 **** SAVEKEY - three parameters. records in a per-game INI file a particular value. parameters are section, key and value; none may have spaces. To clear a value, set it to %dne IFKEYIS - four parameters. retrieves from INI file a particular value, and executes another command if it matches. parameters are section, key, value to compare, and command to execute (command may have spaces). most flexible usage is like "ifkeyis 9 17 soup opened 1 exec soup_eat.escr"; comparing a saved value (opened, in the [soup] section) to a predetermined value (1), and running (exec) another script file (soup_eat.escr) if it matches. If a value does not exist, %dne will be returned. ! IFHAS - two parameters. executes command (second parameter) if item named in first parameter is in the player's inventory. e.g. "ifhas 9 17 c201floppy exec givepassword.escr" will give the password if the player has the floppy disk \ No newline at end of file --- 37,45 ---- SAVEKEY - three parameters. records in a per-game INI file a particular value. parameters are section, key and value; none may have spaces. To clear a value, set it to %dne IFKEYIS - four parameters. retrieves from INI file a particular value, and executes another command if it matches. parameters are section, key, value to compare, and command to execute (command may have spaces). most flexible usage is like "ifkeyis 9 17 soup opened 1 exec soup_eat.escr"; comparing a saved value (opened, in the [soup] section) to a predetermined value (1), and running (exec) another script file (soup_eat.escr) if it matches. If a value does not exist, %dne will be returned. ! IFHAS - two parameters. executes command (second parameter) if item named in first parameter is in the player's inventory. e.g. "ifhas 9 17 c201floppy exec givepassword.escr" will give the password if the player has the floppy disk ! ! Eat and drink scripts need to save a specific key in order to inform the EFUM engine that it's OK to remove the item eaten/drunk from the world. Naturally, if you don't want the item to be removed, you don't need to save the item. Normally the only situation in which the item should not be removed is if the player failed to eat or drink the item, e.g. they needed another item (canopener, straw...) to eat or drink it. ! For Eat Scripts: ! savekey 9 17 Flags EatSucceeded 1 ! For Drink Scripts: ! savekey 9 17 Flags DrinkSucceeded 1 \ No newline at end of file |
From: Daniel R. <dtr...@us...> - 2004-07-24 18:13:03
|
Update of /cvsroot/efum/efum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1989 Modified Files: Project1.vbp Log Message: recent engine changes require a revision bump Index: Project1.vbp =================================================================== RCS file: /cvsroot/efum/efum/Project1.vbp,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Project1.vbp 22 Jul 2004 16:05:57 -0000 1.12 --- Project1.vbp 24 Jul 2004 18:12:53 -0000 1.13 *************** *** 28,32 **** MajorVer=1 MinorVer=2004 ! RevisionVer=524 AutoIncrementVer=0 ServerSupportFiles=0 --- 28,32 ---- MajorVer=1 MinorVer=2004 ! RevisionVer=724 AutoIncrementVer=0 ServerSupportFiles=0 |
From: Daniel R. <dtr...@us...> - 2004-07-24 17:27:40
|
Update of /cvsroot/efum/efum/data/efum/people In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28067 Modified Files: mrjordan.efum Log Message: typo Index: mrjordan.efum =================================================================== RCS file: /cvsroot/efum/efum/data/efum/people/mrjordan.efum,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mrjordan.efum 25 May 2004 04:56:23 -0000 1.2 --- mrjordan.efum 24 Jul 2004 17:27:32 -0000 1.3 *************** *** 61,65 **** OtherBattle = 50 ! VictoryScript = MrJordan.escr LossScript = MrJordan-l.escr --- 61,65 ---- OtherBattle = 50 ! VictoryScript = MrJordan-v.escr LossScript = MrJordan-l.escr |