From no-reply_wiki at metalforge.org Fri Aug 2 14:08:43 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Fri, 02 Aug 2013 14:08:43 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: client_side_scripting:client_scripting_interface-basic_howto Message-ID: <1375470523.953598.23947.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/02 14:08 User : katia Edit Summary: usage of watch to get request's results @@ -166,8 +166,9 @@ Wow! This mean we know when food is low and we can ask our script to invoke restoration (remember the __issue__ command?) when our character's food gets below 50! No starvation anymore. ===== What's next? ===== There are two things you can still do with Script. The first is to request a bit of informations. The client then tells the script what it wants to know. The second thing is triggering an action of the script from client interface. The command scripttell allows player to say something to a script. The script will get the exact command typed by player. See below for command list. + ==== Commands to client ==== Here is a list of command the script can send to client. @@ -194,14 +195,16 @@ | map near | Return the 3x3 grid of the map centered on the player | | map all | Return all the known map information | | map | Return the information about square x,y in the current map (relative to player position)| + + :!: in order to get the result of the request into your script's stdin you have to "watch request " before you do the request. * //issue // - send to server on behalf of client. is the number of times to execute command tells whether or not the command must sent at all cost (1 or 0). and are optional parameters. See [[#The Issue Command]] for more details. * //issue mark // - special case of issue command. only gets the command 'mark' and a object tag * //issue lock // - special case of issue command. Only gets the command 'lock' with 2 parameters - * //draw // - draw the following text on client interface with given color. Usefull for debugging and may help you to forget about using the stderr - * //monitor// - start monitoring commands send from client to server. Doesn't take any parameter. + * //draw // - draw the following text on client interface with given color. Usefull for debugging and may help you to forget about using the stderr. + * //monitor// - start monitoring commands send from client to server. Doesn't take any parameter. This goes to the script's stdin automatically. * //unmonitor// - stop monitoring commands send from client to server. Doesn't take any parameter. ==== Information from client ==== Here is an incomplete list of information strings send by client to script. Those informations are sent only because the client asked them, except for scripttell. IP-Address : 186.52.76.19 Old Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto?rev=1355407642 New Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Tue Aug 6 12:36:33 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Tue, 06 Aug 2013 12:36:33 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: client_side_scripting:client_scripting_interface-basic_howto Message-ID: <1375810593.268217.15405.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/06 12:36 User : katia Edit Summary: @@ -112,8 +112,9 @@ If you type the command __scripts__ in your client you will see our script is still running.\\ \\ Let's look more closely at the code. We define a character buffer and a length. We will use the buffer to read what the client sends to the script. Then our script sends to the client the command __monitor__ (don't forget the \n). This command asks the client to give the script a copy of all commands sent from the client to the server. Now each time a command is sent from client to server, the script will get a "monitor " string.\\ \\ + ==== A strange C command ==== fflush(stdout) The stdout has something called a buffer. When you write to output device, it's not immediatly sent to it. For performance reasons, successive print to stdout are grouped. Most of the time, \n is enough to force sending of data, but we ensure all data are sent to client by flushing the stdout (force empty buffer). In the future, when you think client didn't get a command but the script did send it, ensure you flushed stdout.\\ @@ -129,11 +130,14 @@ monitor Now kill the script by typing command - killscript + scriptkill + + or + scriptkill - Then type __scripts__ to ensure it's stopped. Edit it, comment the line printf("monitor\n"), compile and run the script again. Move and look at console. You see nothing. The script didn't ask anything so the client didn't tell it anything. Your script will only get that for which it asks. + Then type __scripts__ to ensure it's stopped (or to figure out the number of the script). Edit it, comment the line printf("monitor\n"), compile and run the script again. Move and look at console. You see nothing. The script didn't ask anything so the client didn't tell it anything. Your script will only get that for which it asks. Now try the following code: #include IP-Address : 186.52.88.200 Old Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto?rev=1375470519 New Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Mon Aug 12 19:14:59 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Mon, 12 Aug 2013 19:14:59 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: bsd Message-ID: <1376352899.273369.14020.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/12 19:14 User : partmedia Edit Summary: Update automatic installation instructions for *BSD @@ -1,31 +1,50 @@ ====== Crossfire on BSD ====== - Crossfire should install and run on any BSD variant that supports [[wp>X_Window_System|X]] and has the libraries which Crossfire requires. + Crossfire should compile and run on any BSD variant that supports its various dependencies. Many BSD variants also support automatic package-like installation from source as well as pre-built binary packages. As with any other package management system, the version provided with each variant may lag behind the latest official release. + + Sometimes it may be desirable to manually build the latest development sources from [[http://crossfire.real-time.com/svn/index.html|SVN]]. Please refer to the [[crossfire_compile_guide|Crossfire Compile Guide]] as well as the BSD-specific section that follows. + ===== FreeBSD ===== - ==== Installation ==== - The easiest way to install Crossfire on [[wp>FreeBSD]] is to use the ports tree. The version there may lag somewhat behind the latest release, but it will be tested for FreeBSD and automatically install any needed dependencies. (To stay current with the latest development version, see the [[http://crossfire.real-time.com/svn/index.html|Crossfire SVN page]].) + ==== Ports (from source) ==== + As root, execute the following commands: + # cd /usr/ports/games/crossfire-server && make install clean + # cd /usr/ports/games/crossfire-client && make install clean - If you have the [[http://wiki.freebsd.org/portupgrade|portupgrade]] package installed, install the server and/or the client as root: + Alternatively, if you prefer to use 'portmaster': + # portmaster games/crossfire-server + # portmaster games/crossfire-client - portinstall games/crossfire-server - portinstall games/crossfire-client + Or if you wish to use 'portupgrade': + # portinstall games/crossfire-server + # portinstall games/crossfire-client - Without portupgrade, install the ports manually: + Crossfire, as well as its dependencies, will automatically be downloaded, patched, configured, built, and installed from source. + + ==== Package (pre-built binary) ==== + As root, execute the following commands: + # pkg_add crossfire-server + # pkg_add crossfire-client + + Alternatively, if you are using 'pkgng': + # pkg install crossfire-server + # pkg install crossfire-client + + Crossfire, as well as its dependencies, will be downloaded and installed from a pre-built binary package. - cd /usr/ports/games/crossfire-server && make install - cd /usr/ports/games/crossfire-client && make install ===== OpenBSD ===== + At the time of writing (2013/08/12) OpenBSD only carries the X11 client in its ports collection. To install it, execute the following command: + $ sudo pkg_add crossfire-client - (Need a description here.) ===== NetBSD ===== - ==== Installation ==== - As for [[wp>FreeBSD]] the easiest installation on [[wp>NetBSD]] is using the pkgsrc tree. The disclaimer for the version also applies here. + To install the server, execute the following commands as root: + # cd /usr/pkgsrc/games/crossfire-server && make install clean + + To install the client, execute one of the following commands as root: + # cd /usr/pkgsrc/games/crossfire-client && make install clean + # cd /usr/pkgsrc/games/crossfire-client-gtk && make install clean + # cd /usr/pkgsrc/games/crossfire-client-gtk2 && make install clean - To install the packages: - cd /usr/pkgsrc/games/crossfire-server && make install - # and one of: - cd /usr/pkgsrc/games/crossfire-client && make install - cd /usr/pkgsrc/games/crossfire-client-gtk && make install - cd /usr/pkgsrc/games/crossfire-client-gtk2 && make install + ===== Build from Source ===== + (to be written) IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/bsd?rev=1262656670 New Revision: http://wiki.metalforge.net/doku.php/bsd -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Mon Aug 12 19:29:57 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Mon, 12 Aug 2013 19:29:57 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: bsd Message-ID: <1376353797.698926.14032.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/12 19:29 User : partmedia Edit Summary: Add skeleton for source installation on BSD @@ -3,6 +3,6 @@ - Sometimes it may be desirable to manually build the latest development sources from [[http://crossfire.real-time.com/svn/index.html|SVN]]. Please refer to the [[crossfire_compile_guide|Crossfire Compile Guide]] as well as the BSD-specific section that follows. + Sometimes it may be desirable to manually build the latest development sources from [[http://crossfire.real-time.com/svn/index.html|SVN]]. Please refer to the [[crossfire_compile_guide|Crossfire Compile Guide]] as well as the BSD-specific section that follows below. ===== FreeBSD ===== ==== Ports (from source) ==== As root, execute the following commands: @@ -45,6 +45,19 @@ # cd /usr/pkgsrc/games/crossfire-client-gtk && make install clean # cd /usr/pkgsrc/games/crossfire-client-gtk2 && make install clean - ===== Build from Source ===== - (to be written) + ===== Installing from Sources ===== + WARNING: This section assumes that you have basic working knowledge about compiling software as well about your specific system. + + In general, Crossfire can be built and installed much like any other software package. If you have installed software from sources before, then you are in good shape to skip down below. The basic process is to 1) install dependencies, 2) obtain the Crossfire sources, 3) configure the build, 4) build/install, and 5) do a bit of post-installation configuration. + + ==== 1. Installing Dependencies ==== + + ==== 2. Obtaining the Crossfire Sources ==== + + ==== 3. Configuring the Build ==== + + ==== 4. Building and Installing ==== + + ==== 5. Post-Installation Configuration ==== + IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/bsd?rev=1376352895 New Revision: http://wiki.metalforge.net/doku.php/bsd -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Mon Aug 12 20:37:54 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Mon, 12 Aug 2013 20:37:54 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: bsd Message-ID: <1376357874.139124.14276.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/12 20:37 User : partmedia Edit Summary: Finish most parts of the BSD guide @@ -51,13 +51,32 @@ In general, Crossfire can be built and installed much like any other software package. If you have installed software from sources before, then you are in good shape to skip down below. The basic process is to 1) install dependencies, 2) obtain the Crossfire sources, 3) configure the build, 4) build/install, and 5) do a bit of post-installation configuration. ==== 1. Installing Dependencies ==== + Crossfire requires mostly the same dependencies as those listed under the "*nix" section of the [[crossfire_compile_guide|Crossfire Compile Guide]]. Please note that BSD does not split packages into 'devel' and 'non-devel' versions, "python" is just "python", not "python-devel". Some dependencies may be omitted if you are only running either the client or the server. If you are running a desktop environment, chances are that most dependencies are already installed for you. + + (To be written...) ==== 2. Obtaining the Crossfire Sources ==== + Follow the "Download" instructions in the [[crossfire_compile_guide|Crossfire Compile Guide]]. ==== 3. Configuring the Build ==== + Before you begin, you are **strongly** recommended to pick a custom directory to install Crossfire in. By default, Crossfire will install itself in '/usr/games/crossfire', which may be used by the base system. To keep everything separate, you should install Crossfire to a custom prefix such as '/opt'. + + Crossfire uses GNU Autotools as its build system. If you are installing from SVN, you will need to generate a 'configure' script by running: + $ autoreconf -i + + On most Linux distributions, "/bin/sh" is a symbolic link to "/bin/bash", which implements a superset of the features required by POSIX. A small number of checks in the Crossfire server build system are written using bash-specific features, and thus is required for the 'configure' script to run. You should already have bash installed from the previous sections; after ensuring you have bash installed execute the following command: + $ env CONFIG_SHELL=/usr/local/bin/bash ./configure --prefix ${PUT_YOUR_CUSTOM_PREFIX_HERE} + + To configure the client, execute the following command (bash is not needed for the client): + $ ./configure --prefix ${PUT_YOUR_CUSTOM_PREFIX_HERE} + + Once complete, the 'configure' script will print a summary of your configuration options. After reviewing these settings, proceed to the next step. ==== 4. Building and Installing ==== + This part is easy; just type 'make install' and go grab yourself a cup of coffee. Crossfire has been tested to build with BSD Make, but in case it fails you can try rebuilding using GNU Make (the default 'make' on Linux) by running 'gmake' instead of 'make'. ==== 5. Post-Installation Configuration ==== + This section is mainly intended for setting up automatic startup scripts. If you don't mind starting the server manually, you may skip this section and configure Crossfire normally. + (To be written...) IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/bsd?rev=1376353794 New Revision: http://wiki.metalforge.net/doku.php/bsd -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Mon Aug 12 20:54:22 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Mon, 12 Aug 2013 20:54:22 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: start Message-ID: <1376358862.308400.14294.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/12 20:54 User : partmedia Edit Summary: Give "platforms" section its own top level section @@ -1,24 +1,40 @@ {{http://crossfire.real-time.com/demo/crossfire-heading.png}} ====== Crossfire DokuWiki ====== This is the Crossfire Documents site, or the Crossfire Documentarium, or the CFDev nook, or 'that site with the wiki and the docs'... + + Our mission statement is: A dynamic website using dokuwiki technology to bring improvement to the information components of the development of Crossfire. + ===== Known Client Issues ===== * If you are having any issues with the [[client]], look here: [[Known Client Issues]] - ===== Mission ===== - Our mission statement is: A dynamic website using dokuwiki technology to bring improvement to the information components of the development of Crossfire. - ==== Summary ==== + ===== Summary ===== It isn't really a site for players of Crossfire, although everyone is welcome to contribute information (especially [[lore]] and legends; although [[Guides]] are helpful), but for development of various documents for the game. It is hoped that this will make it easier to keep these documents updated, and easier to develop new documents to include in the game package for the benefit of all the land. While the wiki is useful for brainstorming, archiving or listing ideas & suggestions; any and all code changes and proposals need to be sent to the [[http://mailman.metalforge.org/mailman/listinfo/crossfire|discussion mailing list]] before implementation. So, what's here?\\ There is the Crossfire Wiki, a communal edit pad and place to kick off new documents and related type content. There is the [[Document Repository|Document repository]] where you can read and comment on some of the existing documentation. Finally there's the latest [[Crossfire Traffic]] which contains information about what's happening in the community. - ==== TOC ==== + + ===== Supported Platforms ===== + The latest official release (arch, maps, client, and server) is version 1.70.0. + + The Windows port for the server and maps 1.50.0. \\ + The Windows port of the GTK client is 1.12.0 + + Crossfire is known to work on: + * [[Linux]] + * [[BSD]] + * [[Windows]] + * [[Solaris]] + * Mac [[OSX]] (Server and clients compile, in testing) + + + ===== TOC ===== * [[history_of_crossfire|The History of Crossfire]] - The history of the Crossfire world, both technical and role-playing. * [[downloading|Downloading Crossfire]] - Where to get the clients and server for crossfire. * [[guides|Player Guides]] - Various HowTo guides to help players. * [[lore|The Myths and Lore of Crossfire]] - Obviously myths and legends of the Crossfire world. @@ -31,20 +47,8 @@ * [[wiki:Style Guide]] - Loose guidelines of style for the wiki. * [[Humor]] - Is there any humor in Crossfire? * [[FAQ]] - Frequently Asked Questions. - [[http://crossfire.real-time.com|Crossfire]] is a [[client-server]] based game. \\ - The current version for the server is 1.60.0\\ - The current GTK client version is 1.60.0 \\ - The Windows port for the server and maps 1.50.0.\\ - The Windows port of the GTK client is 1.12.0 - - Crossfire works on: - * [[Linux]] - * [[Windows]] - * All *[[BSD]]'s - * [[Solaris]] - * Mac [[OSX]] (Server and clients compile, in testing) ====== Helpful Link(s) ====== * http://wiki.splitbrain.org/wiki:markup_compare - Helpful conversion guide for text formatting in dokuwiki if you are familiar with other wikis * [[SourceForge Migration]] notes, tips and help IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/start?rev=1366255807 New Revision: http://wiki.metalforge.net/doku.php/start -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Fri Aug 16 21:23:17 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Fri, 16 Aug 2013 21:23:17 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: faq Message-ID: <1376706197.496483.576.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/16 21:23 User : saru Edit Summary: @@ -27,9 +27,9 @@ Note that many *nix distributions include crossfire in their package repositories, so you can get a client from there too. (although these may be released some months after the main project) ==== 2.3 Is there a client for Windows? ==== - Yes, there is. Visit the [[http://crossfire.real-time.com/clients/win32_gtk.html|Win32 GTK Client]] page to find out more. + Yes, there is. Visit the [[ http://crossfire.real-time.com/clients/jxclient.html|Win32 JX Client - Java Client]] page to find out more. ==== 2.4 How do I get the files? ==== The official releases of crossfire can be downloaded from the web (2.4.1) if you want to be on the bleeding edge then try checking out from svn (2.4.2). Bear in mind that the SVN repository contains new features being added constantly, so it may at times contain additional bugs (or even not compile at all). If you want to use it, and are experiencing any IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/faq?rev=1348942891 New Revision: http://wiki.metalforge.net/doku.php/faq -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 02:08:11 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 02:08:11 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_compile_guide Message-ID: <1376723291.660918.31355.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 02:08 User : saru Edit Summary: added confirmation that python is correctly installed @@ -47,11 +47,23 @@ Installing Python depends on your choice of Linux distro. * python 2.4 is old, Crossfire runs with 2.5 and 2.6; I would use 2.6 if possible, has not been tried with 3.1 * lib64python2.4-2.4.3 is known to work on Mandriva 2007.0 x86_64 * python2.4-dev is known to work on Ubuntu Karmic and earlier - * python2.6-dev is known to work with Ubuntu Lucid - * python2.7-dev is known to work in Ubuntu Natty, Oneiric and Precise + * python2.6-dev is known to work with Ubuntu Lucid (10.04.4) + * python2.7-dev is known to work in Ubuntu Natty (11.04), Oneiric (11.10) and Precise (12.04) + To confirm python is fully installed + + $ python + + and you should see an output like: + Python 2.7.3 (default, Apr 10 2013, 06:20:15) + [GCC 4.6.3] on linux2 + Type "help", "copyright", "credits" or "license" for more information. + >>> + + If you see something like the above, python is installed, ctrl-d to quit python. + ==== Useful Packages ==== These useful packages are not normally required for end-user builds, but they come in handy in cases where developers may have forgotten to check in changes to build scripts, etc. IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_compile_guide?rev=1375123641 New Revision: http://wiki.metalforge.net/doku.php/crossfire_compile_guide -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 02:08:45 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 02:08:45 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_compile_guide Message-ID: <1376723325.054180.31358.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 02:08 User : saru Edit Summary: @@ -61,9 +61,9 @@ Type "help", "copyright", "credits" or "license" for more information. >>> If you see something like the above, python is installed, ctrl-d to quit python. - + ==== Useful Packages ==== These useful packages are not normally required for end-user builds, but they come in handy in cases where developers may have forgotten to check in changes to build scripts, etc. IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_compile_guide?rev=1376723288 New Revision: http://wiki.metalforge.net/doku.php/crossfire_compile_guide -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 05:04:52 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 05:04:52 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: dev_todo:cf2.0:classes Message-ID: <1376733892.038258.32502.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 05:04 User : saru Edit Summary: @@ -10,8 +10,14 @@ Where is the role playing part if a barbarian is able to become a mighty spell caster; or a sorcerer a skillful sword fighter? - __Solution__ + __Solutions Ideas__ + + - Remove the class as an attribute of the character and replace it by something like a title. "You are what you do" will be the new motto. Classes as a concept will still exists, but won't be a fixed attribute of the character. Instead of that the character will join a class guild (see [[dev_todo:cf2.0:guilds]]). + - dnh: Instead of focus on limiting classes, instead limit access to other skills making starting skills more relevant. This would require significant changes to where players can find and learn skills.' + - dnh: Give permanent improvement to various classes that makes them unique, summoners get a familiar, barbarians can wield 2 weapons or a 2-hander and shield, Wizards get additional mana regeneration speeds for example. + + + - Remove the class as an attribute of the character and replace it by something like a title. "You are what you do" will be the new motto. Classes as a concept will still exists, but won't be a fixed attribute of the character. Instead of that the character will join a class guild (see [[dev_todo:cf2.0:guilds]]). IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes?rev=1187292796 New Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 05:05:15 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 05:05:15 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: dev_todo:cf2.0:classes Message-ID: <1376733915.447290.32507.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 05:05 User : saru Edit Summary: @@ -13,11 +13,10 @@ __Solutions Ideas__ - Remove the class as an attribute of the character and replace it by something like a title. "You are what you do" will be the new motto. Classes as a concept will still exists, but won't be a fixed attribute of the character. Instead of that the character will join a class guild (see [[dev_todo:cf2.0:guilds]]). - - dnh: Instead of focus on limiting classes, instead limit access to other skills making starting skills more relevant. This would require significant changes to where players can find and learn skills.' - - dnh: Give permanent improvement to various classes that makes them unique, summoners get a familiar, barbarians can wield 2 weapons or a 2-hander and shield, Wizards get additional mana regeneration speeds for example. - + - Instead of focus on limiting classes, instead limit access to other skills making starting skills more relevant. This would require significant changes to where players can find and learn skills. (dnh) + - Give permanent improvement to various classes that makes them unique, summoners get a familiar, barbarians can wield 2 weapons or a 2-hander and shield, Wizards get additional mana regeneration speeds for example. (dnh) IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes?rev=1376733887 New Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 05:06:40 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 05:06:40 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: dev_todo:cf2.0:classes Message-ID: <1376734000.618635.32510.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 05:06 User : saru Edit Summary: @@ -14,9 +14,8 @@ __Solutions Ideas__ - Remove the class as an attribute of the character and replace it by something like a title. "You are what you do" will be the new motto. Classes as a concept will still exists, but won't be a fixed attribute of the character. Instead of that the character will join a class guild (see [[dev_todo:cf2.0:guilds]]). - Instead of focus on limiting classes, instead limit access to other skills making starting skills more relevant. This would require significant changes to where players can find and learn skills. (dnh) - - Give permanent improvement to various classes that makes them unique, summoners get a familiar, barbarians can wield 2 weapons or a 2-hander and shield, Wizards get additional mana regeneration speeds for example. (dnh) - + - Give permanent improvement to various classes that makes them unique, summoners get a familiar, barbarians can wield 2 weapons or a 2-hander and shield, Wizards get additional mana regeneration speeds for example (dnh). see http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:skills IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes?rev=1376733913 New Revision: http://wiki.metalforge.net/doku.php/dev_todo:cf2.0:classes -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Sat Aug 17 05:26:12 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Sat, 17 Aug 2013 05:26:12 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: dev_todo Message-ID: <1376735172.880443.32533.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/17 05:26 User : saru Edit Summary: @@ -19,19 +19,20 @@ * [[dev_todo:CF2.0|Crossfire 2.0]] - List of things to do before the big 2.0 release === CF2 Roadmap === - On the //Crossfire Discussion Mailing List// was talked about the following topics: - + Current ideas: * [[dev_todo:cf2.0:races]] * [[dev_todo:cf2.0:classes]] - * [[dev_todo:cf2.0:skills]] - * [[dev_todo:cf2.0:guilds]] - * [[dev_todo:cf2.0:combat]] - * [[dev_todo:cf2.0:magic]] + - [[dev_todo:cf2.0:skills]] + - [[dev_todo:cf2.0:guilds]] * [[dev_todo:cf2.0:party]] * [[dev_todo:cf2.0:world]] + + To be documented: * [[dev_todo:cf2.0:alchemy]] + * [[dev_todo:cf2.0:combat]] + * [[dev_todo:cf2.0:magic]] ==== Fixes/Revamps ==== Stuff that needs to be fixed, seriously overhauled, or improved * [[dev_todo:fix_sound|Fix/Revamp sound]] - Fix and improve the sound system. IP-Address : 59.167.121.117 Old Revision: http://wiki.metalforge.net/doku.php/dev_todo?rev=1366254079 New Revision: http://wiki.metalforge.net/doku.php/dev_todo -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Mon Aug 19 22:10:13 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Mon, 19 Aug 2013 22:10:13 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: gtk-v2_ui_updates Message-ID: <1376968213.851655.15925.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/19 22:10 User : partmedia Edit Summary: Delete "redundant", unlinked page @@ -1 +1 @@ - This page is now redundant. + IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/gtk-v2_ui_updates?rev=1271627815 New Revision: http://wiki.metalforge.net/doku.php/gtk-v2_ui_updates -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Fri Aug 23 19:41:17 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Fri, 23 Aug 2013 19:41:17 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: client_side_scripting:client_scripting_interface-basic_howto Message-ID: <1377304877.992257.646.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/23 19:41 User : partmedia Edit Summary: Fix some C example code @@ -41,10 +41,12 @@ Learn to say hello Here we go for the first script. We will do quite simple things. We will ask our character to say "hello world" around. The script will be written in C because we simply need to choose a language. The script is quite simple: - int main(){ - printf("issue 1 1 say hello world\n"); + #include + + int main() { + puts("issue 1 1 say Hello world!\n"); } Name it first.c, compile it and launch it in your command shell: @@ -80,22 +82,26 @@ What to do next? As you can see, our script doesn't wait very long after issuing commands. And it doesn't get information from the client at all. In fact it just //hopes// it is really speaking to the client. We are going to write a simple script which will __issue__ a command to the client and then gets the result. We are going to spy!\\ \\ Use the following script and run it in client. Ensure you ran the client in a console or you won't see any result! + #include #include - int main (){ - char buf[200]; - int len; - printf ("monitor\n"); - fflush (stdout); - for(;;){ - len=read(0,buf,200); - if(len) - write(2,buf,len); - else - exit(-1); - } + #define LENGTH 200 + + int main() { + char buffer[LENGTH]; + + // Ask the client for a copy of all commands sent to the server. + fprintf(stdout, "monitor\n"); + fflush(stdout); + + // Read the commands and print to standard error. + while (fgets(buffer, LENGTH, stdin) != NULL) { + fputs(buffer, stderr); + } + + return 0; } Now move a bit in the game. A few steps are enough! Look at your console, you should see something like this: IP-Address : 99.126.98.223 Old Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto?rev=1375810588 New Revision: http://wiki.metalforge.net/doku.php/client_side_scripting:client_scripting_interface-basic_howto -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 16:42:15 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 16:42:15 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: start Message-ID: <1377812535.966667.28547.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 16:42 User : leaf Edit Summary: Update version info @@ -21,10 +21,10 @@ ===== Supported Platforms ===== The latest official release (arch, maps, client, and server) is version 1.70.0. - The Windows port for the server and maps 1.50.0. \\ - The Windows port of the GTK client is 1.12.0 + The Windows port for the server and maps is snapshot-2013-feb-04 \\ + The Windows port of the GTK client is 1.60.2 Crossfire is known to work on: * [[Linux]] * [[BSD]] IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/start?rev=1376358857 New Revision: http://wiki.metalforge.net/doku.php/start -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 16:44:50 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 16:44:50 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: gridarta Message-ID: <1377812690.986913.28550.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 16:44 User : leaf Edit Summary: Replace ailesse link for meflin.net download link @@ -24,9 +24,9 @@ svn co https://gridarta.svn.sourceforge.net/svnroot/gridarta Also, there are following 'unoffical' gridarta builds: * [[http://www.eracc.com/other/crossfire/|Ragnor's Gridarta4Crossfire Build]] (usually updated when Ragnor makes user-visible changes) - * wget http://crossfire.ailesse.com/downloads/gridarta/CrossfireEditor.jar + * wget http://www.meflin.net/crossfire/CrossfireEditor.jar ===== Building and Running Gridarta ===== To build Gridarta, you need to use the //[[http://en.wikipedia.org/wiki/Apache_Ant|Apache Ant]]// build system, and Java 1.5.0 or higher is required to both build and run Gridarta. ==== Building Gridarta4Crossfire ==== IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/gridarta?rev=1280462234 New Revision: http://wiki.metalforge.net/doku.php/gridarta -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 16:46:16 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 16:46:16 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: gridarta Message-ID: <1377812776.567020.28555.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 16:46 User : leaf Edit Summary: Remove no longer working ailesse link @@ -138,7 +138,4 @@ ===== Links ===== * http://gridarta.sourceforge.net/ Gridarta Website - - source code download: - http://crossfire.ailesse.com/downloads/ IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/gridarta?rev=1377812689 New Revision: http://wiki.metalforge.net/doku.php/gridarta -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 16:47:01 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 16:47:01 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: osx Message-ID: <1377812821.477076.28558.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 16:47 User : leaf Edit Summary: Remove no longer working ailesse link @@ -36,9 +36,8 @@ Once the client has been successfully installed, there is a .dmg file available for download that will let you run any of the three clients (crossfire-client-x11, crossfire-client-gtk and crossfire-client-gtk2) * Download Mirror: http://crossfire.real-time.com/download/macosx/crossfire-client1.10.dmg - * Download Mirror: http://crossfire.ailesse.com/downloads/osx/crossfire-client1.10.dmg Installation instructions: - Wait for the file to download and follow the screen prompts IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/osx?rev=1205538076 New Revision: http://wiki.metalforge.net/doku.php/osx -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 17:13:55 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 17:13:55 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_traffic Message-ID: <1377814435.670027.28699.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 17:13 User : leaf Edit Summary: Traffic updates for January 2013 @@ -5,8 +5,17 @@ ===== Changes to be merged ===== Please put most recent on bottom for month. Unless specified otherwise, changes are in [[trunk]] only. + + ==== January 2013 ==== + * When a pet summons a pet - experience gained for those monster kills properly assigned to summoning (r18563) + * Patch 3599700. Fix incorrect coordinates for the staircase upstairs to Little House of Horrors, Just Preliminary (santo_dominion/just_preliminary) in Santo Dominion + * Patch #3600436: Closing containers failed in some cases + * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-06) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes (r18569) + * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-07) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes. (r18570) + * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-08) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes. (r18571) + * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-09) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes. (r18572) ==== December 2012 ==== * Patch #3588368: Spelling fix for /scorn/misc/dragon_guild (r18548) * Patch #3590386: Description for glowing rings/amulets (r18549) IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic?rev=1358541760 New Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 17:22:02 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 17:22:02 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_traffic Message-ID: <1377814922.050325.28709.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 17:21 User : leaf Edit Summary: Traffic updates for February 2013 @@ -5,8 +5,14 @@ ===== Changes to be merged ===== Please put most recent on bottom for month. Unless specified otherwise, changes are in [[trunk]] only. + + ==== February 2013 ==== + * Have the city hall opened all time, but spawn zombies during the night. (r18575) + * New quest in Santo Dominion, Noisy Well (r18578) + * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-10) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes. (r18579) + * Added a missing special key (pplant_wraith_key) to allow players access to rooms in Power Plant, Level 3 (pup_land/pplant/pplant3) in Pup Land. (r18580) ==== January 2013 ==== * When a pet summons a pet - experience gained for those monster kills properly assigned to summoning (r18563) * Patch 3599700. Fix incorrect coordinates for the staircase upstairs to Little House of Horrors, Just Preliminary (santo_dominion/just_preliminary) in Santo Dominion IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic?rev=1377814420 New Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 17:25:42 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 17:25:42 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_traffic Message-ID: <1377815142.686063.28714.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 17:25 User : leaf Edit Summary: Description update @@ -7,9 +7,9 @@ Unless specified otherwise, changes are in [[trunk]] only. ==== February 2013 ==== - * Have the city hall opened all time, but spawn zombies during the night. (r18575) + * Scorn City Hall (scorn/misc/cityhall) is now open all the time, but spawn zombies during the night. (r18575) * New quest in Santo Dominion, Noisy Well (r18578) * Cosmetic redesign to Hut (wolfsburg/volcano/huts/hut-10) in Wolfsburg. World map (world/world_129_108) updated for map entrance/exit changes. (r18579) * Added a missing special key (pplant_wraith_key) to allow players access to rooms in Power Plant, Level 3 (pup_land/pplant/pplant3) in Pup Land. (r18580) IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic?rev=1377814913 New Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic -- This mail was generated by DokuWiki at http://wiki.metalforge.net/ From no-reply_wiki at metalforge.org Thu Aug 29 18:00:37 2013 From: no-reply_wiki at metalforge.org (no-reply_wiki at metalforge.org) Date: Thu, 29 Aug 2013 18:00:37 -0500 Subject: [Crossfire-wiki] [Crossfire DokuWiki] page changed: crossfire_traffic Message-ID: <1377817237.775123.28932.nullmailer@metalforge.net> A page in your DokuWiki was added or changed. Here are the details: Date : 2013/08/29 18:00 User : leaf Edit Summary: Traffic update for March 2013 @@ -5,8 +5,55 @@ ===== Changes to be merged ===== Please put most recent on bottom for month. Unless specified otherwise, changes are in [[trunk]] only. + + ==== March 2013 ==== + * Archetype update to re-center pictures on wall sections. (r18583) + * All sections in the chaos floor tiles of the Guild Jails do full damage now, instead of 1 point in one section. (r18589) + * Rename fortress (with the King) to Castle of Scorn in world map (world/world_104_115). (r18590) + * Grammer correction on Street of the Gods sign text (world/world_105_114). (r18591) + * Renamed sailing big galeon to big sailing galleon in world map (world/world_105_115). (r18592) + * Removed forced line breaks in Street of Merchants sign text on the world map (world/world_105_115). (r18593) + * Capitalization to the Well entrance that is part of Old City in the world map (world/world_105_115). (r18594) + * Added Old South Road name to the sign (instead of just being called sign) and punctuation update on message text in the world map (world/world_105_115). (r18595) + * Renamed another sailing big galeon to big sailing galleon in world map (world/world_105_115). (r18596, r18598) + * Updated map names for Chess Club, Zoo, Small Well and The Arena in world map (world/world_105_115). (r18599) + * Updated map names for Eswald's Coffee Shop, Beginners 1, Beginners 2 and Wanderer's Inn and sign name updates in world map (world/world_105_116). (r18600) + * Removed forced line breaks and minor wording changes in magic_mouth welcome text located in world map (world/world_105_116). (r18601) + * Updated and organized sign text information in world map (world/world_105_116). (r18602) + * Redesigned holy shield face graphic, making it bigger and lit in perspective (armour/shield/holyshield.base.111.png). (r18603) + * Updated sign names and sign text information to Nexus (start/Nexus) map. (r18604) + * Updated magic_mouth and magic_ear information to Nexus (start/Nexus) map. (r18605) + * Assigned names to signs, updated sign text to Starting House (start/newbieshouse) map. (r18606) + * More dialogue for Manu the Crazy Key Binder found in Starting House (start/newbieshouse) map. (r18607) + * More and updated dialogue for Doorman found in Starting House (start/newbieshouse) map. (r18608) + * Make secret area in in Starting House (start/newbieshouse) map more accessible. (r18609) + * Updated 'curiosity reward' in Starting House (start/newbieshouse) map from 12 silver coins to 12 platinum coins. (r18610) + * Sign name updates, map name updates in regards to capitalization to various Pup Land maps. (r18612) + * Instruction and related wording updates to signs in various Pup Land maps. (r18613) + * Capitalization corrections to house plant references in Scorn Sale Maps (scorn/shops/scorn.sale1 and scorn/shops/scorn.sale2). (r18614) + * Sign name and message text updates to Scorn Sale Maps (scorn/shops/scorn.sale1 and scorn/shops/scorn.sale2). (r18615) + * Instruction and related wording update to Pup Land Raffle 2 (pup_land/raffle/raffle2). (r18617) + * Sign, item name, instruction clarification and related wording updates to various Arena maps in Scorn. (r18618) + * NPC dialogue updates to Arena Entrance (scorn/misc/battle_arena/entrance) map in Scorn. (r18619) + * Stat changes to give an arena attendee random movement in Arena Entrance (scorn/misc/battle_arena/entrance) map in Scorn. (r18620) + * Dialogue update for the Medic in Arena First-Aide (scorn/misc/battle_arena/first-aide) map in Scorn. (r18621) + * NPC dialogue updates and NPC face specification to Arena Snack Area (scorn/misc/battle_arena/snack) map in Scorn. (r18622) + * Since the Scorn city hall (scorn/misc/cityhall) has zombies out at night, mark it outdoors. (r18623) + * Sign name and message text updates to Scorn City Hall (scorn/misc/cityhall) map. (r18624) + * Sign name and message text updates to Mercenaries Agency (scorn/misc/mercenaries) map. (r18625) + * Orc and Ninja NPC dialogue updates to Mercenaries Agency (scorn/misc/mercenaries) map. (r18626) + * Sign name and message text updates to Zoo (scorn/misc/zoo) map. (r18627) + * Realign stairs on Lord Byron's Castle, 1st Floor (santo_dominion/lord_byron/1st_floor) in Santo Dominion. (r18628) + * Cosmetic wall changes to Lord Byron's Castle, 1st Floor (santo_dominion/lord_byron/1st_floor) in Santo Dominion. (r18629) + * New signs with helpful information to Lord Byron's Castle, Mainfloor (santo_dominion/lord_byron/main) in Santo Dominion. (r18632) + * Added new dialogue to monsters and NPCs found in Lord Byron's Castle, Mainfloor (santo_dominion/lord_byron/main) in Santo Dominion. (r18633) + * Moved stairway locations to better match upper level of the castle, slight movement of scorpion generators at Lord Byron's Castle, Mainfloor (santo_dominion/lord_byron/main) in Santo Dominion. (r18636) + * Add no_magic areas to protect items on display in Museum of Arms in Navar (r18639) + * Dialogue updates to Klondor in Klondor's Wand Shop (lake_country/shops/klondors_wands) in Lake Country. (r18641) + * Removed magic_mouth message now that it's part of Klondor's dialogue in Klondor's Wand Shop (lake_country/shops/klondors_wands) in Lake Country. (r18642) + * Applied dscriptive name to identify_table in Klondor's Wand Shop (lake_country/shops/klondors_wands) in Lake Country. (r18643) ==== February 2013 ==== * Scorn City Hall (scorn/misc/cityhall) is now open all the time, but spawn zombies during the night. (r18575) * New quest in Santo Dominion, Noisy Well (r18578) IP-Address : 65.193.16.100 Old Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic?rev=1377815134 New Revision: http://wiki.metalforge.net/doku.php/crossfire_traffic -- This mail was generated by DokuWiki at http://wiki.metalforge.net/