xhtml ✖
xml âœâ€Â
(I believe ?) to mean?

Code: Select all
<?xml version="1.0"?>
<effect>
<particle
position-x = "0"
position-y = "0"
position-z = "0">
<emitter>
<property name="output" min="-4" max="1" />
<property name="horizontal-angle" min="0" max="360" />
<property name="vertical-angle" value="70" />
<property name="power" value="4" />
<property name="gravity" value="0.1" />
<property name="bounce" value="0.5" />
<property name="lifetime" value="250" />
<property name="image" value="graphics/particles/star-medium.png|W:#ff0000,ff8800"/>
<emitter>
<property name="power" value="0.6"/>
<property name="horizontal-angle" min="0" max="360"/>
<property name="vertical-angle" min="0" max="360"/>
<property name="lifetime" value="20"/>
<property name="output" min="0" max="1"/>
<property name="image" value="graphics/particles/star-small.png|W:#ff8800,ffffff"/>
</emitter>
</emitter>
</particle>
</effect>
and this ???lien wrote:but how to have an overview of the values?Code: Select all
<?xml version="1.0"?> <effect> <particle position-x = "0" position-y = "0" position-z = "0"> <emitter> <property name="output" min="-4" max="1" /> <property name="horizontal-angle" min="0" max="360" /> <property name="vertical-angle" value="70" /> <property name="power" value="4" /> <property name="gravity" value="0.1" /> <property name="bounce" value="0.5" /> <property name="lifetime" value="250" /> <property name="image" value="graphics/particles/star-medium.png|W:#ff0000,ff8800"/> <emitter> <property name="power" value="0.6"/> <property name="horizontal-angle" min="0" max="360"/> <property name="vertical-angle" min="0" max="360"/> <property name="lifetime" value="20"/> <property name="output" min="0" max="1"/> <property name="image" value="graphics/particles/star-small.png|W:#ff8800,ffffff"/> </emitter> </emitter> </particle> </effect>
Code: Select all
1
<?xml version="1.0"?>
2
3
<effect>
4
    <particle
5
        position-x = "0"
6
        position-y = "0"
7
        position-z = "400"
8
        lifetime = "100"
9
        >
10
        <!-- <property name="follow-parent" value="0"/> -->
11
        <emitter><!-- <property name="follow-parent" value="0"/> -->
12
         <property name="lifetime" min="25" max="30"/>
13
         <property name="position-x" min="60" max="120"/>
14
         <property name="position-y" min="-30" max="30"/>
15
         <property name="vertical-angle" value="260"/>
16
         <property name="power" value="20"/>
17
         <property name="output" min="0" max="1"/>
18
         <property name="gravity" value="0.04"/>
19
         <property name="image" value="graphics/particles/raindrop.png|W:#ff0000,ff6600,ffea00,ffb400"/>
20
        </emitter>
21
    </particle>
22
</effect>
but this is for the unix user and windows userthe link wrote:When you downloaded TMW as a prepacked install packet for your operating system it comes without most of the graphics, maps and so on. These are downloaded at the first start by the updater. Here I will explain you how to get these files so you can play around with them, customize TMW and maybe contribute to the development.
Method A: Unpack the updates
To use this method you just need a program that can unpack zip archives and no other tools. But you won't get the most recent development versions of the resource files but only those that have been released to the general public.
1. Update the mana world
Start tmw and let an updater run to ensure that you got the newest updates.
2. Locate the updates
From version 0.0.23 on the updates are stored in your user directory. For users of UNIX-like operating systems this should be usr/home/*your_username*/ or just ~. Windows users find their user directory in C:\Documents and Settings\*your_username*\
("Documents and Settings" is called different on different language versions of windows)
There you find the folder /.tmw/updates with all the updates you downloaded since you first installed tmw. Most of them will be obsolete. You can find a list of the updates that are actually used in the file resources2.txt.
3. Unpack the updates
Unpack the zip archives listed in resources2.txt into the subfolder "data" of your tmw installation (When there are any zip archives not listed in resources2.txt in your update folder don't unpack those. They contain outdated files that have been replaced by later updates).
4. Tell TMW to ignore the updates and use the files in the data directory
To do so you have to start tmw with the additional command line parameter -u
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u behind the quotation marks. It should now read something like that:
"D:\Programs\The Mana World\tmw.exe" -u
Method B: Use Git to get the latest developer versions of all files
This method should be prefered over the other because you will receive the most recent development versions of the files. But it requires you to install a new program.
1. Install Git
Git is a distributed, commandline-based sourcecode management tool which makes it easy to work with many people on a software project.
Most linux distributions should have Git in their packet management systems.
A windows version can be found here: http://code.google.com/p/msysgit/downloads/list
2. "clone" the git repository.
Open your command shell, browse to the directory where you would like to have the files and enter:
git clone git://gitorious.org/tmwdata/mainline.git tmwdata
This will create a new folder "tmwdata" and download all the files here.
3. Tell TMW to ignore the updates and use the files in your new directory
To do so you have to start tmw with the additional command line parameters -u -d path/to/your/data/folder
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u -d behind the quotation marks followed the folder where you cloned the git repository. It should now read something like that:
"D:\programs\The Mana World\tmw.exe" -u -d D:\tmw\data
4. Update the repository from time to time
To synchronize your local repository with the newest develpmont changes open your command shell, navigate to your tmw data folder and type:
git stash
git pull
git stash apply
You can skip stash and stash apply when you didn't change any files.
Now you can edit or replace all resource files of TMW like maps, graphics, sounds and the changes will be visible in the game. You can also change what file is used for what to some extend by editing the xml files in the data directory.
Buy me a mac and I will happily figure out the correct procedure and add it to the wikilien wrote:but this is for the unix user and windows userthe link wrote:When you downloaded TMW as a prepacked install packet for your operating system it comes without most of the graphics, maps and so on. These are downloaded at the first start by the updater. Here I will explain you how to get these files so you can play around with them, customize TMW and maybe contribute to the development.
Method A: Unpack the updates
To use this method you just need a program that can unpack zip archives and no other tools. But you won't get the most recent development versions of the resource files but only those that have been released to the general public.
1. Update the mana world
Start tmw and let an updater run to ensure that you got the newest updates.
2. Locate the updates
From version 0.0.23 on the updates are stored in your user directory. For users of UNIX-like operating systems this should be usr/home/*your_username*/ or just ~. Windows users find their user directory in C:\Documents and Settings\*your_username*\
("Documents and Settings" is called different on different language versions of windows)
There you find the folder /.tmw/updates with all the updates you downloaded since you first installed tmw. Most of them will be obsolete. You can find a list of the updates that are actually used in the file resources2.txt.
3. Unpack the updates
Unpack the zip archives listed in resources2.txt into the subfolder "data" of your tmw installation (When there are any zip archives not listed in resources2.txt in your update folder don't unpack those. They contain outdated files that have been replaced by later updates).
4. Tell TMW to ignore the updates and use the files in the data directory
To do so you have to start tmw with the additional command line parameter -u
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u behind the quotation marks. It should now read something like that:
"D:\Programs\The Mana World\tmw.exe" -u
Method B: Use Git to get the latest developer versions of all files
This method should be prefered over the other because you will receive the most recent development versions of the files. But it requires you to install a new program.
1. Install Git
Git is a distributed, commandline-based sourcecode management tool which makes it easy to work with many people on a software project.
Most linux distributions should have Git in their packet management systems.
A windows version can be found here: http://code.google.com/p/msysgit/downloads/list
2. "clone" the git repository.
Open your command shell, browse to the directory where you would like to have the files and enter:
git clone git://gitorious.org/tmwdata/mainline.git tmwdata
This will create a new folder "tmwdata" and download all the files here.
3. Tell TMW to ignore the updates and use the files in your new directory
To do so you have to start tmw with the additional command line parameters -u -d path/to/your/data/folder
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u -d behind the quotation marks followed the folder where you cloned the git repository. It should now read something like that:
"D:\programs\The Mana World\tmw.exe" -u -d D:\tmw\data
4. Update the repository from time to time
To synchronize your local repository with the newest develpmont changes open your command shell, navigate to your tmw data folder and type:
git stash
git pull
git stash apply
You can skip stash and stash apply when you didn't change any files.
Now you can edit or replace all resource files of TMW like maps, graphics, sounds and the changes will be visible in the game. You can also change what file is used for what to some extend by editing the xml files in the data directory.![]()
in my mac i haven't the "D:\Programs\The Mana World\tmw.exe" the file programs
* cough* * cough*Kage wrote:Buy me a mac and I will happily figure out the correct procedure and add it to the wikilien wrote:but this is for the unix user and windows userthe link wrote:When you downloaded TMW as a prepacked install packet for your operating system it comes without most of the graphics, maps and so on. These are downloaded at the first start by the updater. Here I will explain you how to get these files so you can play around with them, customize TMW and maybe contribute to the development.
Method A: Unpack the updates
To use this method you just need a program that can unpack zip archives and no other tools. But you won't get the most recent development versions of the resource files but only those that have been released to the general public.
1. Update the mana world
Start tmw and let an updater run to ensure that you got the newest updates.
2. Locate the updates
From version 0.0.23 on the updates are stored in your user directory. For users of UNIX-like operating systems this should be usr/home/*your_username*/ or just ~. Windows users find their user directory in C:\Documents and Settings\*your_username*\
("Documents and Settings" is called different on different language versions of windows)
There you find the folder /.tmw/updates with all the updates you downloaded since you first installed tmw. Most of them will be obsolete. You can find a list of the updates that are actually used in the file resources2.txt.
3. Unpack the updates
Unpack the zip archives listed in resources2.txt into the subfolder "data" of your tmw installation (When there are any zip archives not listed in resources2.txt in your update folder don't unpack those. They contain outdated files that have been replaced by later updates).
4. Tell TMW to ignore the updates and use the files in the data directory
To do so you have to start tmw with the additional command line parameter -u
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u behind the quotation marks. It should now read something like that:
"D:\Programs\The Mana World\tmw.exe" -u
Method B: Use Git to get the latest developer versions of all files
This method should be prefered over the other because you will receive the most recent development versions of the files. But it requires you to install a new program.
1. Install Git
Git is a distributed, commandline-based sourcecode management tool which makes it easy to work with many people on a software project.
Most linux distributions should have Git in their packet management systems.
A windows version can be found here: http://code.google.com/p/msysgit/downloads/list
2. "clone" the git repository.
Open your command shell, browse to the directory where you would like to have the files and enter:
git clone git://gitorious.org/tmwdata/mainline.git tmwdata
This will create a new folder "tmwdata" and download all the files here.
3. Tell TMW to ignore the updates and use the files in your new directory
To do so you have to start tmw with the additional command line parameters -u -d path/to/your/data/folder
Windows users can right-click on the tmw shortcut on their desktop and select Properties. In the field Target you find the path to your tmw executable in quotation marks. Add -u -d behind the quotation marks followed the folder where you cloned the git repository. It should now read something like that:
"D:\programs\The Mana World\tmw.exe" -u -d D:\tmw\data
4. Update the repository from time to time
To synchronize your local repository with the newest develpmont changes open your command shell, navigate to your tmw data folder and type:
git stash
git pull
git stash apply
You can skip stash and stash apply when you didn't change any files.
Now you can edit or replace all resource files of TMW like maps, graphics, sounds and the changes will be visible in the game. You can also change what file is used for what to some extend by editing the xml files in the data directory.![]()
in my mac i haven't the "D:\Programs\The Mana World\tmw.exe" the file programs