summaryrefslogtreecommitdiff
path: root/web/nf_main.xml
blob: e41f3ddd2ddf455080cdd3f0c3d9fd7bc453a3f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
    <entry>
        <title> 7.0 - Polished Emerald</title>
        <link href="https://tmw2.org/news#2018-10-06"/>
        <updated>2018-10-06T20:30:20.663750</updated>
        <id>tag:tmw2.org,2018-10-06</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-06-21
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-09-14</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> The snowstorm at Nivalis has ceased, but the <b>Monster King</b> led a massively huge
</p>
<p> army to siege Nivalis. He even mirrored himself to kill players at random.
</p>
<p> But worry not, <b>Land Of Fire</b> refiners are working better, and wooden sword
</p>
<p> craft price has been lowered. By the way, there's a missing map on the path to
</p>
<p> Nivalis. Let's just say it was SO EMPTY that you literally didn't noticed you
</p>
<p> went straight past it.
</p>
<p>
</p>
<p> Jesusalva just wanted so much people to see the new quest, which is part of LoF,
</p>
<p> that he decided to don't make too difficult to get there.
</p>
<p>
</p>
<p> Some of spotlights includes bugfixes, Autumn stuff, <b>Thief/Merchant Guilds</b>,
</p>
<p> which includes a new <b>minigame</b> for your fun, pets, and let me not spoil
</p>
<p> too much. Sufficient to say, beware the Terranite. You get the message, right?
</p>
<p>
</p>
<p> By the way, <a href="https://transifex.com/akaras/saulc-tmw-fork">Translators</a> welcome.
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and many bugs are lurking here and there and here -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, mishana, Aisen, demure, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> September 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="https://tmw2.org/news">https://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 7.0 - Polished Emerald</title>
        <link href="https://tmw2.org/news#2018-09-14"/>
        <updated>2018-09-14T17:15:47.000375</updated>
        <id>tag:tmw2.org,2018-09-14</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-06-21
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-09-14</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> The snowstorm at Nivalis has ceased, but the <b>Monster King</b> led a massively huge
</p>
<p> army to siege Nivalis. He even mirrored himself to kill players at random.
</p>
<p> But worry not, <b>Land Of Fire</b> refiners are working better, and wooden sword
</p>
<p> craft price has been lowered. By the way, there's a missing map on the path to
</p>
<p> Nivalis. Let's just say it was SO EMPTY that you literally didn't noticed you
</p>
<p> went straight past it.
</p>
<p>
</p>
<p> Jesusalva just wanted so much people to see the new quest, which is part of LoF,
</p>
<p> that he decided to don't make too difficult to get there.
</p>
<p>
</p>
<p> Some of spotlights includes bugfixes, Autumn stuff, <b>Thief/Merchant Guilds</b>,
</p>
<p> which includes a new <b>minigame</b> for your fun, pets, and let me not spoil
</p>
<p> too much. Sufficient to say, beware the Terranite. You get the message, right?
</p>
<p>
</p>
<p> By the way, <a href="https://transifex.com/akaras/saulc-tmw-fork">Translators</a> welcome.
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and many bugs are lurking here and there and here -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, mishana, Aisen, demure, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> September 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="https://tmw2.org/news">https://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 6.5 - Developer Vacations</title>
        <link href="https://tmw2.org/news#2018-08-31"/>
        <updated>2018-09-01T02:24:50.179852</updated>
        <id>tag:tmw2.org,2018-08-31</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-06-21
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-08-31</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> Developers were on vacations this month, and we couldn't finish r7 in time.
</p>
<p> But worry not, <b>Land Of Fire</b> got some visual improvements, and various
</p>
<p> rebalances were done - for best or for worse.
</p>
<p>
</p>
<p> Some of spotlights includes bugfixes, Summer ending stuff, finishing Celestia
</p>
<p> Tea Party Quest, two new quests, finished the main subclass (one isn't fully
</p>
<p> done but oh well), stat reset cheaper, and other conveniences.
</p>
<p>
</p>
<p> By the way, <a href="https://transifex.com/akaras/saulc-tmw-fork">Translators</a> welcome.
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and many bugs are lurking here and there and here -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, Pookie, demure, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> August 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="https://tmw2.org/news">https://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 6.0 - Steam, Fire, and... Monster King?!</title>
        <link href="https://tmw2.org/news#2018-07-28"/>
        <updated>2018-07-28T20:27:17.268484</updated>
        <id>tag:tmw2.org,2018-07-28</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-06-21
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-07-27</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This is another major release, with over 975 commits since previous one.
</p>
<p> To make a massive release brief: <b>New maps, new monsters, new items, new quests</b>.
</p>
<p> Note some of these quests are <b>seasonal</b>, meaning they'll be only available
</p>
<p> later.
</p>
<p>
</p>
<p> But most important of all, <b>Land Of Fire/TMWA crashed here</b>, changing
</p>
<p> everything, from monster experience, to maximum level. Creating new weapons,
</p>
<p> time travel, and other crazy stuff. Stuff so crazy, Saulc is with players
</p>
<p> evaluating the extend of damage done. A whole area flooded, and you may be
</p>
<p> struck! Yelp! Demure and Pyndragon are along others to aid.
</p>
<p>
</p>
<p> We also had <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a> updates.
</p>
<p> Hey players, good luck! And thanks German, French, Deutch and Brazilian teams!
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and many bugs are lurking here and there and here -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, 4144, Lawn Cable, msawis, demure, acsvln, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Next release is friday, called 6.1 to fix the many bugs introduced on this one.
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> July 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="https://tmw2.org/news">https://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 5.0 - Greenland Players</title>
        <link href="https://tmw2.org/news#2018-06-30"/>
        <updated>2018-06-30T15:29:05.149901</updated>
        <id>tag:tmw2.org,2018-06-30</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-06-21
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-06-30</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This is a major release, with over 1300 commits since previous one.
</p>
<p> To make a massive release brief: <b>New maps, new monsters, new items, new quests</b>.
</p>
<p> Note some of these quests are <b>seasonal</b>, meaning they're only available
</p>
<p> yearly, on summer! To <b>Liberate Hurnscald</b> we will need MANY PLAYERS!
</p>
<p> Yeah, it is an experimental event. Liberating Nivalis should be better! ;-)
</p>
<p>
</p>
<p> You can use <b>@toevent</b> now, and events have changed.
</p>
<p> During night time, mobs 30% respawn faster. <b>Guild Storage</b> have a free
</p>
<p> trial. I AM SO EXCITED WITH THIS RELEASE!! THERE IS A MASSIVE CO-OP QUEST!!
</p>
<p> get level 60 ASAP to do it! The many other changes can be read ingame, with
</p>
<p> Jerican, our loyal journalman.
</p>
<p>
</p>
<p> Don't forget some mobs give more or less experience now. And <b>buy a quiver</b>,
</p>
<p> because if you want to use bows, you'll need one.
</p>
<p>
</p>
<p> We also had massive <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a>
</p>
<p> updates. Hey players, good luck! And thanks German, French and Brazilian teams!
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, 4144, Lawn Cable, Crazyfefe, DUSTMAN, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Don't miss next release, it will be MASSIVE!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> June 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 4.9 - Partial Update</title>
        <link href="https://tmw2.org/news#2018-06-21"/>
        <updated>2018-06-21T03:24:40.314771</updated>
        <id>tag:tmw2.org,2018-06-21</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Moubootaur Legends</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-03-13
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-05-31</b> (upgrade: 2018-06-20)
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This fastforwards some from r5 changes, including, limited to:
</p>
<p> bugfixes
</p>
<p> Monsters are now subject to penalties
</p>
<p> Status Effect resistance - max 25%
</p>
<p> First Aid Skill replaced
</p>
<p> Some quests are more rewarding, but no new quest was added... Well, only one.
</p>
<p> <b>Day/night</b> cycle added, and some random weather! Only cosmetic, though.
</p>
<p> Not one, not two, but <b>four new emotes</b> to you fully express yourself!
</p>
<p> emote shortcut keys changed because that, though, so beware!
</p>
<p>
</p>
<p> Hurnscald is still under siege, so nobody can travel there right now.
</p>
<p> Economy changed as usual, and monsters changed too.
</p>
<p>
</p>
<p> Max level was not changed, it is still 45/25.
</p>
<p>
</p>
<p> We also had massive <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a>
</p>
<p> updates. Thanks in special to French and Brazilian Translation Teams.
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, 4144, Lawn Cable, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Don't miss next release, it will be MASSIVE!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> June 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 4.0 - Quest Giver's Handbook</title>
        <link href="https://tmw2.org/news#2018-05-31"/>
        <updated>2018-05-31T14:19:12.644549</updated>
        <id>tag:tmw2.org,2018-05-31</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-03-13
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-05-31</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> Many, many, <b>MANY new quests#</b> were added. Not all of them are marked. I
</p>
<p> counted twelve, but I'm pretty sure there are way more. Take your time exploring
</p>
<p> the world.
</p>
<p>
</p>
<p> Hurnscald is under siege, so nobody can travel there right now. Economy changed
</p>
<p> as usual, and healing items are more powerful now.
</p>
<p>
</p>
<p> Also, Tulimshar Guards bought a <b>Slot Machine</b> to gamble Casino Coins.
</p>
<p> Rumors says of a grand prize to whoever jackpot the machine. Sheer luck, probably.
</p>
<p>
</p>
<p> Nard travel has changed, and now <b>you need time to move by ship</b>. And it's
</p>
<p> slow. Zitoni is also <b>crafting new kinds of potions</b>. And experimental
</p>
<p> stuff was added on main server, for the best <b>event experience</b>.
</p>
<p>
</p>
<p> Max level is now 45. Max job level is now 25. Some NPCs moved from here to
</p>
<p> there, and there was <b>a marriage</b>, but unfortunately, ended up in divorce
</p>
<p> in less than 20 seconds. These people... They probably were just testing code,
</p>
<p> though.
</p>
<p>
</p>
<p> Our forums are now Read-Only access. We also had massive <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a>
</p>
<p> updates. Thanks in special to French and Brazilian Translation Teams.
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We are very, very sorry for the delay on this release. It was meant to happen
</p>
<p> sooner, but there was SO MUCH to polish! Jesusalva is pretty sure there are
</p>
<p> bugs, and Saulc remembers everyone they can always blame him - although this
</p>
<p> time, it is most likely Jesusalva's fault.
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, Lawn Cable, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Don't miss next release!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> May 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 3.1 - When Developers Sleep</title>
        <link href="https://tmw2.org/news#2018-04-30"/>
        <updated>2018-04-30T22:37:02.884020</updated>
        <id>tag:tmw2.org,2018-04-30</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-03-13
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-05-01</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This small release allows players to get to level 41, but does not provides
</p>
<p> any new quest. It <b>updates translations</b>, updates the server, fix small
</p>
<p> bugs, nothing very important. But ah, there is the <b>Worker's Day Event</b>!
</p>
<p> It will last a single day, though.
</p>
<p>
</p>
<p> Also, just to remember that <b>Player Guilds</b> are supported.
</p>
<p>
</p>
<p> Do not forget to check our <a href="https://tmw2.org/forums">Forums</a> and help us
</p>
<p> with <a href="https://transifex.com/akaras/saulc-tmw-fork">translations</a>!
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, Lawn Cable, 4144, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Maybe we should rest a little now? No, there's still a lot to be done!
</p>
<p> Don't miss next release!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> May 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 3.0 - In The Dreams</title>
        <link href="https://tmw2.org/news#2018-04-16"/>
        <updated>2018-04-16T23:46:34.779719</updated>
        <id>tag:tmw2.org,2018-04-16</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal">https://tmw2.org/legal</a>
</p>
<p> Last ToS update: 2018-03-13
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-04-08</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This is one of the biggest release. Easter gave developers sufficient time
</p>
<p> to push their secret agenda. Various item and monsters were rebalanced, be warned!
</p>
<p> On this release you have <b>Magic</b>, and can go as far as <b>Level 40</b>.
</p>
<p>
</p>
<p> Was that not of suffice joy, <b>Halinarzo Town</b> is there, but it may be remapped
</p>
<p> later. You will need to explore huge, deadly canyons to reach it.
</p>
<p> The <b>New Monsters</b> also drop the new most powerful sword, which is not THAT
</p>
<p> impressive but is worth it.
</p>
<p>
</p>
<p> Did I mention <b>Player Guilds</b> are finally supported? Ah, not only that,
</p>
<p> but Tulimshar Guards arranged a <b>PVP Arena</b> for their enjoyment.
</p>
<p> And we're not even close to finishing quest log! See Michel's new scoreboard,
</p>
<p> besides new quests involving Swezanne's family. There are other things, but
</p>
<p> you'll need to find them by yourself! It includes easter egg, and no, I am
</p>
<p> not talking about the edibles ones...
</p>
<p>
</p>
<p> Do not forget to check our <a href="https://tmw2.org/forums">Forums</a>.
</p>
<p> Also, help us with <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a>!
</p>
<p>
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc and GonzoDark, for sponsoring this server.
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, Lawn Cable, Soren, 4144, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> Maybe we should rest a little now? No, there's still a lot to be done!
</p>
<p> Don't miss next release!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> April 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 2.2 - There Are No Pipelines</title>
        <link href="https://tmw2.org/news#2018-03-23"/>
        <updated>2018-03-24T01:36:34.870859</updated>
        <id>tag:tmw2.org,2018-03-23</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal.php">https://tmw2.org/legal.php</a>
</p>
<p> Last ToS update: 2018-03-13
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-03-23</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> This time, you are allowed to reach up to level 31. We will add more levels,
</p>
<p> as more quests get in. Various item and monsters were rebalanced, be warned!
</p>
<p> Only a new quest was added and poorly tested, but the Magic Council Guest Hall
</p>
<p> is once again open. The map will be replaced later, though.
</p>
<p>
</p>
<p> Do not forget to check our <a href="https://tmw2.org/forums">Forums</a>.
</p>
<p> Also, help us with <a href="https://transifex.com/akaras/saulc-tmw-fork">translation</a>!
</p>
<p>
</p>
<p> The great spotlight of this release is Easter. May it start anytime!
</p>
<p>
</p>
<p> <b>Daily Login Bonus</b> was modified a little, nothing major.
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc, for sponsoring this server.
</p>
<p> We also want to thanks to all testers: Thanks, you've did a great job!
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Jesusalva, Saulc, acsvln, gnulinux, 4144, et al.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback!
</p>
<p> And for Game Masters: The new city from Third Release is already available via @warp.
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> March 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news.html">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

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

    <entry>
        <title> 02 - What Is Your Age?</title>
        <link href="https://tmw2.org/news#2018-03-09"/>
        <updated>2018-03-09T18:32:32.089171</updated>
        <id>tag:tmw2.org,2018-03-09</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal.php">https://tmw2.org/legal.php</a>
</p>
<p> Last ToS update: 2018-02-24
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-03-09</b>
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> On this special release, the level caps went from (25/10) to (30/15).
</p>
<p> Michel now haves a leaderboard so you know who is the richest and strongest
</p>
<p> player of the server, various items were changed, and you can get more parts
</p>
<p> from the Creased and the Candor set.
</p>
<p>
</p>
<p> At Tulimshar, Ishi and Aidan are once again there, to give you Monster Points,
</p>
<p> but pocket ready - there is a register fee! After all, everyone knows that
</p>
<p> There Is No Free Lunch, possible title for a next release!
</p>
<p>
</p>
<p> This game is better played with friends, and some config was changed to reflect
</p>
<p> that. Candor Nurse and Dan got new quests, and some monsters changed. Gift
</p>
<p> Boxes were added, for the <b>GM Events</b> which are announced by Discord/IRC!
</p>
<p>
</p>
<p> The equipment drops should also be working again.
</p>
<p>
</p>
<p> There is also a <b>Daily Login Bonus</b>, to encourage you to keep playing!
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc, for sponsoring this server.
</p>
<p> We also want to thanks to all testers: Thanks, you've did a great job!
</p>
<p> And by last, our gratitude to every developer and contributor who made this
</p>
<p> possible! Ayruss, Polaczek, Acsvln, Jesusalva, Saulc, Crazyfefe, Rakinorf, etc.
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback at Discord!
</p>
<p> The third release is already being baked!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> March 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news.html">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>

    <entry>
        <title> 01.5 - Can I Break This Pipeline?</title>
        <link href="https://tmw2.org/news#2018-03-02"/>
        <updated>2018-03-06T01:56:59.145089</updated>
        <id>tag:tmw2.org,2018-03-02</id>
        <content type="html"><![CDATA[<p> Welcome to <b>TMW-2: Monster Wars</b>!
</p>
<p> By playing you agree and abide to the <b>Terms of Service</b>, available at:
</p>
<p> <a href="https://tmw2.org/legal.php">https://tmw2.org/legal.php</a>
</p>
<p> Last ToS update: 2018-02-24
</p>
<p>
</p>
<p> Our Staff will never ask for your password. You are the sole responsible for
</p>
<p> its safety!
</p>
<p> If you ever run in trouble, try contacting a GM with <b>@request Help me!</b>
</p>
<p> Please enjoy our server, and have fun!
</p>
<p>
</p>
<p> Latest release: <b>2018-03-04</b> (Easter stuff, bug fixes)
</p>
<p> Never miss a release! Follow our <a href="https://discord.gg/BQNTe68">Discord Channel</a>!
</p>
<p>
</p>
<p> Your head aches. Your vision is dizzy. A ship appears in your front. Oh no,
</p>
<p> please don't tell me this is Evol!
</p>
<p>
</p>
<p> You may meet familiar faces and/or names, and even places you think that you
</p>
<p> know, but don't be fooled - things are different here, and work different here.
</p>
<p> Awake in Nard ship, visit Candor, journey to Tulimshar - the game offers the
</p>
<p> basic stuff a MMORPG needs. Use Tulimshar's mines to grind - this is not an
</p>
<p> easy game, but it is definitively fun, specially with friends.
</p>
<p>
</p>
<p> Our Game Masters often arrange <b>events</b> which are announced by Discord/IRC!
</p>
<p> There is also a <b>Daily Login Bonus</b>, to encourage you to keep playing!
</p>
<p> Please bear the development stages with us. There are balance problems, and
</p>
<p> various items are NPC-Only, and even bugs could be lurking here and there -
</p>
<p> give us feedback at #world channel and, who knows, you may be rewarded if you
</p>
<p> find a bug!
</p>
<p>
</p>
<p> We want to express our gratitude here to Saulc, for sponsoring this server.
</p>
<p> We also want to thanks to all testers: Thanks, you've did a great job!
</p>
<p> And by last, our gratitude to every developer and contributor who made this possible!
</p>
<p>
</p>
<p> Enjoy gaming, and leave feedback at Discord!
</p>
<p> The second release is already being baked!
</p>
<p>
</p>
<p> -- Your TMW2 Team
</p>
<p> March 2018
</p>
<p>
</p>
<p> You can check out this page for older entries:
</p>
<p> <a href="http://tmw2.org/news.html">http://tmw2.org/news</a>
</p>
]]></content>
    </entry>