From df43a461c388571288675dfef5b5827721eb4780 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 17 Mar 2018 21:00:06 -0300 Subject: Updates system --- adler32/Makefile | 16 +++++++ adler32/adler32 | Bin 0 -> 9216 bytes adler32/adler32.c | 68 +++++++++++++++++++++++++++ update/adler32_dir/Makefile | 16 ------- update/adler32_dir/adler32.c | 68 --------------------------- update/commit.txt | 2 +- update/commit_old.txt | 2 +- update/files/xml_footer.txt | 1 + update/files/xml_header.txt | 6 +++ web/all_news.bin | 103 +++++++++++++++++++++++++++++++++++++++++ web/feed.xml | 108 ++++++++++++++++++++++++++++++++++++++++++- web/index.bin | 1 + web/news.html | 2 +- web/nf_main.xml | 106 ++++++++++++++++++++++++++++++++++++++++++ 14 files changed, 411 insertions(+), 88 deletions(-) create mode 100644 adler32/Makefile create mode 100755 adler32/adler32 create mode 100644 adler32/adler32.c delete mode 100644 update/adler32_dir/Makefile delete mode 100644 update/adler32_dir/adler32.c create mode 100644 update/files/xml_footer.txt create mode 100644 update/files/xml_header.txt diff --git a/adler32/Makefile b/adler32/Makefile new file mode 100644 index 0000000..42f101a --- /dev/null +++ b/adler32/Makefile @@ -0,0 +1,16 @@ +prefix=/usr/local +bindir=${prefix}/bin + +LDLIBS=-lz + +all: adler32 + +adler32: adler32.c + +clean: + rm -f adler32 + +install: + install -D adler32 ${bindir}/ + +.PHONY: clean install diff --git a/adler32/adler32 b/adler32/adler32 new file mode 100755 index 0000000..a934ff7 Binary files /dev/null and b/adler32/adler32 differ diff --git a/adler32/adler32.c b/adler32/adler32.c new file mode 100644 index 0000000..5dd7e4c --- /dev/null +++ b/adler32/adler32.c @@ -0,0 +1,68 @@ +/* + * adler32.c (c) 2006 Bjorn Lindeijer + * License: GPL, v2 or later + * + * Calculates Adler-32 checksums for all files passed as argument. + * + * Usage: adler32 [file]... + */ + +#include +#include +#include + +/** + * Calculates the Adler-32 checksum for the given file. + */ +unsigned long fadler32(FILE *file) +{ + // Obtain file size + fseek(file, 0, SEEK_END); + long fileSize = ftell(file); + rewind(file); + + // Calculate Adler-32 checksum + char *buffer = (char*) malloc(fileSize); + fread(buffer, 1, fileSize, file); + unsigned long adler = adler32(0L, Z_NULL, 0); + adler = adler32(adler, (Bytef*) buffer, fileSize); + free(buffer); + + return adler; +} + +/** + * Prints out usage and exists. + */ +void print_usage() +{ + printf("Usage: adler32 [file]...\n"); + exit(0); +} + +int main(int argc, char *argv[]) +{ + int i; /**< Loops through arguments. */ + + if (argc == 1) + { + print_usage(); + } + + for (i = 1; i < argc; ++i) + { + FILE *file = fopen(argv[i], "r"); + + if (!file) + { + printf("Error while opening '%s' for reading!\n", argv[i]); + exit(1); + } + + unsigned long adler = fadler32(file); + printf("%s %lx\n", argv[i], adler); + fclose(file); + } + + return 0; +} diff --git a/update/adler32_dir/Makefile b/update/adler32_dir/Makefile deleted file mode 100644 index 42f101a..0000000 --- a/update/adler32_dir/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -prefix=/usr/local -bindir=${prefix}/bin - -LDLIBS=-lz - -all: adler32 - -adler32: adler32.c - -clean: - rm -f adler32 - -install: - install -D adler32 ${bindir}/ - -.PHONY: clean install diff --git a/update/adler32_dir/adler32.c b/update/adler32_dir/adler32.c deleted file mode 100644 index 5dd7e4c..0000000 --- a/update/adler32_dir/adler32.c +++ /dev/null @@ -1,68 +0,0 @@ -/* - * adler32.c (c) 2006 Bjorn Lindeijer - * License: GPL, v2 or later - * - * Calculates Adler-32 checksums for all files passed as argument. - * - * Usage: adler32 [file]... - */ - -#include -#include -#include - -/** - * Calculates the Adler-32 checksum for the given file. - */ -unsigned long fadler32(FILE *file) -{ - // Obtain file size - fseek(file, 0, SEEK_END); - long fileSize = ftell(file); - rewind(file); - - // Calculate Adler-32 checksum - char *buffer = (char*) malloc(fileSize); - fread(buffer, 1, fileSize, file); - unsigned long adler = adler32(0L, Z_NULL, 0); - adler = adler32(adler, (Bytef*) buffer, fileSize); - free(buffer); - - return adler; -} - -/** - * Prints out usage and exists. - */ -void print_usage() -{ - printf("Usage: adler32 [file]...\n"); - exit(0); -} - -int main(int argc, char *argv[]) -{ - int i; /**< Loops through arguments. */ - - if (argc == 1) - { - print_usage(); - } - - for (i = 1; i < argc; ++i) - { - FILE *file = fopen(argv[i], "r"); - - if (!file) - { - printf("Error while opening '%s' for reading!\n", argv[i]); - exit(1); - } - - unsigned long adler = fadler32(file); - printf("%s %lx\n", argv[i], adler); - fclose(file); - } - - return 0; -} diff --git a/update/commit.txt b/update/commit.txt index b0207df..36c3a54 100644 --- a/update/commit.txt +++ b/update/commit.txt @@ -1 +1 @@ -f8d2e54a6d52278e237895074c2b7186ca43616e +64b8a6f08cbab3ef9f928fb48ccc6b7394e4e9d6 diff --git a/update/commit_old.txt b/update/commit_old.txt index 835e57f..b0207df 100644 --- a/update/commit_old.txt +++ b/update/commit_old.txt @@ -1 +1 @@ -020dcd7010cfa783b8a4cfb3b6b361629153509f +f8d2e54a6d52278e237895074c2b7186ca43616e diff --git a/update/files/xml_footer.txt b/update/files/xml_footer.txt new file mode 100644 index 0000000..769fb5f --- /dev/null +++ b/update/files/xml_footer.txt @@ -0,0 +1 @@ + diff --git a/update/files/xml_header.txt b/update/files/xml_header.txt new file mode 100644 index 0000000..1ae4aab --- /dev/null +++ b/update/files/xml_header.txt @@ -0,0 +1,6 @@ + + + + + + diff --git a/web/all_news.bin b/web/all_news.bin index 359666d..917cb0f 100644 --- a/web/all_news.bin +++ b/web/all_news.bin @@ -1,4 +1,107 @@ +

2018-03-16

+ + Actual Release: 2.1 - Free Lunch For Those Who Work Hard! +
+
Welcome to TMW-2: Monster Wars! +
+
By playing you agree and abide to the Terms of Service, available at: +
+ https://tmw2.org/legal.php +
+ Last ToS update: 2018-03-13 +
+ +
+ Our Staff will never ask for your password. You are the sole responsible for +
+ its safety! +
+ If you ever run in trouble, try contacting a GM with @request Help me! +
+ Please enjoy our server, and have fun! +
+ +
+ Latest release: 2018-03-16 +
+ Never miss a release! Follow our Discord Channel! +
+ +
+
What time is best for an update, other than friday? In this release, you have +
+
an extra job level. Various item prices were rebalanced to fix Zeny Exploits. +
+
Extra quests were added to Candor and to the Ship, and both Elmo as Nard received +
+
rewrites so game is easier to understand for newcomers. +
+ +
+
The way how Nard calculates ship travels has changed, talk to Elmo while in +
+
Candor and he'll inform your progress. Translations were updated, if you +
+
are not happy with them, translate them! +
+
Note only server-data resource translations will be accepted. +
+ +
+ Game rules were changed, you have been notified by that via email. +
+ A total of 9 players have incorrect email address. If you did not received our +
+ email, enter in contact to check if your email address is correct. +
+ +
+
You can use coins acquired at GM Events (announced by Discord/IRC/broadcast) +
+
with any Traveller or at Aeros. +
+ +
+
There is also a Daily Login Bonus, to encourage you to keep playing! +
+
Please bear the development stages with us. There are balance problems, and +
+
various items are NPC-Only, and even bugs could be lurking here and there - +
+
give us feedback at #world channel and, who knows, you may be rewarded if you +
+
find a bug! +
+ +
+ We want to express our gratitude here to Saulc, for sponsoring this server. +
+ We also want to thanks to all testers: Thanks, you've did a great job! +
+ And by last, our gratitude to every developer and contributor who made this +
+ possible! Jesusalva, Saulc, Crazyfefe, Soren, Ayruss, 4144, Micksha, et al. +
+ +
+
Enjoy gaming, and leave feedback! +
+
As said, the third release is already being baked! +
+ +
+ -- Your TMW2 Team +
+ March 2018 +
+ +
+
You can check out this page for older entries: +
+ http://tmw2.org/news +
+

2018-03-09

Actual Release: 02 - What Is Your Age? diff --git a/web/feed.xml b/web/feed.xml index 891c0af..b823e1e 100644 --- a/web/feed.xml +++ b/web/feed.xml @@ -3,12 +3,118 @@ TMW2 - 2018-03-09T18:32:32.089171 + 2018-03-16T14:09:41.074437 https://tmw2.org TMW2 Project admin@tmw2.org + + 2.1 - Free Lunch For Those Who Work Hard! + + 2018-03-16T14:09:41.074437 + tag:tmw2.org,2018-03-16 + Welcome to TMW-2: Monster Wars! +

+

By playing you agree and abide to the Terms of Service, available at: +

+

https://tmw2.org/legal.php +

+

Last ToS update: 2018-03-13 +

+

+

+

Our Staff will never ask for your password. You are the sole responsible for +

+

its safety! +

+

If you ever run in trouble, try contacting a GM with @request Help me! +

+

Please enjoy our server, and have fun! +

+

+

+

Latest release: 2018-03-16 +

+

Never miss a release! Follow our Discord Channel! +

+

+

+

What time is best for an update, other than friday? In this release, you have +

+

an extra job level. Various item prices were rebalanced to fix Zeny Exploits. +

+

Extra quests were added to Candor and to the Ship, and both Elmo as Nard received +

+

rewrites so game is easier to understand for newcomers. +

+

+

+

The way how Nard calculates ship travels has changed, talk to Elmo while in +

+

Candor and he'll inform your progress. Translations were updated, if you +

+

are not happy with them, translate them! +

+

Note only server-data resource translations will be accepted. +

+

+

+

Game rules were changed, you have been notified by that via email. +

+

A total of 9 players have incorrect email address. If you did not received our +

+

email, enter in contact to check if your email address is correct. +

+

+

+

You can use coins acquired at GM Events (announced by Discord/IRC/broadcast) +

+

with any Traveller or at Aeros. +

+

+

+

There is also a Daily Login Bonus, to encourage you to keep playing! +

+

Please bear the development stages with us. There are balance problems, and +

+

various items are NPC-Only, and even bugs could be lurking here and there - +

+

give us feedback at #world channel and, who knows, you may be rewarded if you +

+

find a bug! +

+

+

+

We want to express our gratitude here to Saulc, for sponsoring this server. +

+

We also want to thanks to all testers: Thanks, you've did a great job! +

+

And by last, our gratitude to every developer and contributor who made this +

+

possible! Jesusalva, Saulc, Crazyfefe, Soren, Ayruss, 4144, Micksha, et al. +

+

+

+

Enjoy gaming, and leave feedback! +

+

As said, the third release is already being baked! +

+

+

+

-- Your TMW2 Team +

+

March 2018 +

+

+

+

You can check out this page for older entries: +

+

http://tmw2.org/news +

+]]>
+
+ 02 - What Is Your Age? diff --git a/web/index.bin b/web/index.bin index 010ec4b..e3da34c 100644 --- a/web/index.bin +++ b/web/index.bin @@ -1,3 +1,4 @@ +2018-03-16 2018-03-09 2018-03-02 2018-02-25 diff --git a/web/news.html b/web/news.html index a7c646d..d1ec2d2 100644 --- a/web/news.html +++ b/web/news.html @@ -1 +1 @@ -Server News
Archive
2018-03-09
2018-03-02
2018-02-25

2018-03-09

Actual Release: 02 - What Is Your Age?
Welcome to TMW-2: Monster Wars!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Latest release: 2018-03-09
Never miss a release! Follow our Discord Channel!

On this special release, the level caps went from (25/10) to (30/15).
Michel now haves a leaderboard so you know who is the richest and strongest
player of the server, various items were changed, and you can get more parts
from the Creased and the Candor set.

At Tulimshar, Ishi and Aidan are once again there, to give you Monster Points,
but pocket ready - there is a register fee! After all, everyone knows that
There Is No Free Lunch, possible title for a next release!

This game is better played with friends, and some config was changed to reflect
that. Candor Nurse and Dan got new quests, and some monsters changed. Gift
Boxes were added, for the GM Events which are announced by Discord/IRC!

The equipment drops should also be working again.

There is also a Daily Login Bonus, to encourage you to keep playing!
Please bear the development stages with us. There are balance problems, and
various items are NPC-Only, and even bugs could be lurking here and there -
give us feedback at #world channel and, who knows, you may be rewarded if you
find a bug!

We want to express our gratitude here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitude to every developer and contributor who made this
possible! Ayruss, Polaczek, Acsvln, Jesusalva, Saulc, Crazyfefe, Rakinorf, etc.

Enjoy gaming, and leave feedback at Discord!
The third release is already being baked!

-- Your TMW2 Team
March 2018

You can check out this page for older entries:
http://tmw2.org/news

2018-03-02

Actual Release: 01 - Can I Break This Pipeline?
Welcome to TMW-2: Monster Wars!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Latest release: 2018-03-02
Never miss a release! Follow our Discord Channel!

Your head aches. Your vision is dizzy. A ship appears in your front. Oh no,
please don't tell me this is Evol!

You may meet familiar faces and/or names, and even places you think that you
know, but don't be fooled - things are different here, and work different here.
Awake in Nard ship, visit Candor, journey to Tulimshar - the game offers the
basic stuff a MMORPG needs. Use Tulimshar's mines to grind - this is not an
easy game, but it is definitively fun, specially with friends.

Our Game Masters often arrange events which are announced by Discord/IRC!
There is also a Daily Login Bonus, to encourage you to keep playing!
Please bear the development stages with us. There are balance problems, and
various items are NPC-Only, and even bugs could be lurking here and there -
give us feedback at #world channel and, who knows, you may be rewarded if you
find a bug!

We want to express our gratitude here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitude to every developer and contributor who made this possible!

Enjoy gaming, and leave feedback at Discord!
The second release is already being baked!

-- Your TMW2 Team
March 2018

You can check out this page for older entries:
http://tmw2.org/news

2018-02-25

Actual Release: Currently offline
Welcome to TMW-2: Monster World!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Testing Period was finished at 2018-02-26!

Never miss a release! Follow our Discord Channel!

All accounts and data will be permanently deleted when testing period ends.
Planned Release Date is at 2018-03-02, test-server will go down before.

We want to express our gratitute here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitute to every developer and contributor who made this possible!

Enjoy testing, official server is coming up soon!

-- Your TMW2 Team
February 2018

You can check out this page for older entries:
http://tmw2.org/news

\ No newline at end of file +Server News
Archive
2018-03-16
2018-03-09
2018-03-02
2018-02-25

2018-03-16

Actual Release: 2.1 - Free Lunch For Those Who Work Hard!
Welcome to TMW-2: Monster Wars!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-03-13

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Latest release: 2018-03-16
Never miss a release! Follow our Discord Channel!

What time is best for an update, other than friday? In this release, you have
an extra job level. Various item prices were rebalanced to fix Zeny Exploits.
Extra quests were added to Candor and to the Ship, and both Elmo as Nard received
rewrites so game is easier to understand for newcomers.

The way how Nard calculates ship travels has changed, talk to Elmo while in
Candor and he'll inform your progress. Translations were updated, if you
are not happy with them, translate them!
Note only server-data resource translations will be accepted.

Game rules were changed, you have been notified by that via email.
A total of 9 players have incorrect email address. If you did not received our
email, enter in contact to check if your email address is correct.

You can use coins acquired at GM Events (announced by Discord/IRC/broadcast)
with any Traveller or at Aeros.

There is also a Daily Login Bonus, to encourage you to keep playing!
Please bear the development stages with us. There are balance problems, and
various items are NPC-Only, and even bugs could be lurking here and there -
give us feedback at #world channel and, who knows, you may be rewarded if you
find a bug!

We want to express our gratitude here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitude to every developer and contributor who made this
possible! Jesusalva, Saulc, Crazyfefe, Soren, Ayruss, 4144, Micksha, et al.

Enjoy gaming, and leave feedback!
As said, the third release is already being baked!

-- Your TMW2 Team
March 2018

You can check out this page for older entries:
http://tmw2.org/news

2018-03-09

Actual Release: 02 - What Is Your Age?
Welcome to TMW-2: Monster Wars!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Latest release: 2018-03-09
Never miss a release! Follow our Discord Channel!

On this special release, the level caps went from (25/10) to (30/15).
Michel now haves a leaderboard so you know who is the richest and strongest
player of the server, various items were changed, and you can get more parts
from the Creased and the Candor set.

At Tulimshar, Ishi and Aidan are once again there, to give you Monster Points,
but pocket ready - there is a register fee! After all, everyone knows that
There Is No Free Lunch, possible title for a next release!

This game is better played with friends, and some config was changed to reflect
that. Candor Nurse and Dan got new quests, and some monsters changed. Gift
Boxes were added, for the GM Events which are announced by Discord/IRC!

The equipment drops should also be working again.

There is also a Daily Login Bonus, to encourage you to keep playing!
Please bear the development stages with us. There are balance problems, and
various items are NPC-Only, and even bugs could be lurking here and there -
give us feedback at #world channel and, who knows, you may be rewarded if you
find a bug!

We want to express our gratitude here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitude to every developer and contributor who made this
possible! Ayruss, Polaczek, Acsvln, Jesusalva, Saulc, Crazyfefe, Rakinorf, etc.

Enjoy gaming, and leave feedback at Discord!
The third release is already being baked!

-- Your TMW2 Team
March 2018

You can check out this page for older entries:
http://tmw2.org/news

2018-03-02

Actual Release: 01 - Can I Break This Pipeline?
Welcome to TMW-2: Monster Wars!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Latest release: 2018-03-02
Never miss a release! Follow our Discord Channel!

Your head aches. Your vision is dizzy. A ship appears in your front. Oh no,
please don't tell me this is Evol!

You may meet familiar faces and/or names, and even places you think that you
know, but don't be fooled - things are different here, and work different here.
Awake in Nard ship, visit Candor, journey to Tulimshar - the game offers the
basic stuff a MMORPG needs. Use Tulimshar's mines to grind - this is not an
easy game, but it is definitively fun, specially with friends.

Our Game Masters often arrange events which are announced by Discord/IRC!
There is also a Daily Login Bonus, to encourage you to keep playing!
Please bear the development stages with us. There are balance problems, and
various items are NPC-Only, and even bugs could be lurking here and there -
give us feedback at #world channel and, who knows, you may be rewarded if you
find a bug!

We want to express our gratitude here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitude to every developer and contributor who made this possible!

Enjoy gaming, and leave feedback at Discord!
The second release is already being baked!

-- Your TMW2 Team
March 2018

You can check out this page for older entries:
http://tmw2.org/news

2018-02-25

Actual Release: Currently offline
Welcome to TMW-2: Monster World!
By playing you agree and abide to the Terms of Service, available at:
https://tmw2.org/legal.php
Last ToS update: 2018-02-24

Our Staff will never ask for your password. You are the sole responsible for
its safety!
If you ever run in trouble, try contacting a GM with @request Help me!
Please enjoy our server, and have fun!

Testing Period was finished at 2018-02-26!

Never miss a release! Follow our Discord Channel!

All accounts and data will be permanently deleted when testing period ends.
Planned Release Date is at 2018-03-02, test-server will go down before.

We want to express our gratitute here to Saulc, for sponsoring this server.
We also want to thanks to all testers: Thanks, you've did a great job!
And by last, our gratitute to every developer and contributor who made this possible!

Enjoy testing, official server is coming up soon!

-- Your TMW2 Team
February 2018

You can check out this page for older entries:
http://tmw2.org/news

\ No newline at end of file diff --git a/web/nf_main.xml b/web/nf_main.xml index a82048c..b0d664a 100644 --- a/web/nf_main.xml +++ b/web/nf_main.xml @@ -1,3 +1,109 @@ + + 2.1 - Free Lunch For Those Who Work Hard! + + 2018-03-16T14:09:41.074437 + tag:tmw2.org,2018-03-16 + Welcome to TMW-2: Monster Wars! +

+

By playing you agree and abide to the Terms of Service, available at: +

+

https://tmw2.org/legal.php +

+

Last ToS update: 2018-03-13 +

+

+

+

Our Staff will never ask for your password. You are the sole responsible for +

+

its safety! +

+

If you ever run in trouble, try contacting a GM with @request Help me! +

+

Please enjoy our server, and have fun! +

+

+

+

Latest release: 2018-03-16 +

+

Never miss a release! Follow our Discord Channel! +

+

+

+

What time is best for an update, other than friday? In this release, you have +

+

an extra job level. Various item prices were rebalanced to fix Zeny Exploits. +

+

Extra quests were added to Candor and to the Ship, and both Elmo as Nard received +

+

rewrites so game is easier to understand for newcomers. +

+

+

+

The way how Nard calculates ship travels has changed, talk to Elmo while in +

+

Candor and he'll inform your progress. Translations were updated, if you +

+

are not happy with them, translate them! +

+

Note only server-data resource translations will be accepted. +

+

+

+

Game rules were changed, you have been notified by that via email. +

+

A total of 9 players have incorrect email address. If you did not received our +

+

email, enter in contact to check if your email address is correct. +

+

+

+

You can use coins acquired at GM Events (announced by Discord/IRC/broadcast) +

+

with any Traveller or at Aeros. +

+

+

+

There is also a Daily Login Bonus, to encourage you to keep playing! +

+

Please bear the development stages with us. There are balance problems, and +

+

various items are NPC-Only, and even bugs could be lurking here and there - +

+

give us feedback at #world channel and, who knows, you may be rewarded if you +

+

find a bug! +

+

+

+

We want to express our gratitude here to Saulc, for sponsoring this server. +

+

We also want to thanks to all testers: Thanks, you've did a great job! +

+

And by last, our gratitude to every developer and contributor who made this +

+

possible! Jesusalva, Saulc, Crazyfefe, Soren, Ayruss, 4144, Micksha, et al. +

+

+

+

Enjoy gaming, and leave feedback! +

+

As said, the third release is already being baked! +

+

+

+

-- Your TMW2 Team +

+

March 2018 +

+

+

+

You can check out this page for older entries: +

+

http://tmw2.org/news +

+]]>
+
+ 02 - What Is Your Age? -- cgit v1.2.3-70-g09d2