Register - Login
Views: 99391339
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-24-22 09:43:50 AM
Jul - The Cutting Room Floor - Weird Discoveries New poll - New thread - New reply
Pages: 1 2 3 4 5 6 7 8 9 10 ... 27 28 29 30 31 32 33 34 35 ... 92 93 94 95 96 97 98 99 100 101 Next newer thread | Next older thread
Fuzn
Member
Level: 23


Posts: 36/97
EXP: 61008
For next: 6715

Since: 02-23-11


Since last post: 317 days
Last activity: 317 days

Posted on 08-20-12 08:09:30 PM Link | Quote
I was randomly surfing gameplay vids, and I found that IGN's YouTube channel actually had some early footage of a PS2 game that I own: Hypersonic.Xtreme.

This footage is completely unlike the final at all. It looks like a PS1 game, absolutely none of the final's craft are in this build, the HUD is different, but at 1:30, just about everything in that text actually came true for the final. It appears the vehicles hug the track very tightly, even in situations where the final would have you thrown off.

This footage, however, is almost identical to the final. Differences include the speed scale, showing a speed of 7000 for regular, non-boosting cruising speed. In the final, the top speed here is lowered by a lot. In addition, the vehicle being used here does not seem to be present in any released versions, or is an alternate version of a vehicle that did make it to the final.
Foxhack
Member
Annoying fuzzball
Level: 54


Posts: 152/722
EXP: 1173449
For next: 60421

Since: 04-17-12

From: Mexicali, Mexico

Since last post: 2.0 years
Last activity: 1.8 years

Posted on 08-21-12 07:31:57 PM (last edited by Foxhack at 08-21-12 07:33:07 PM) Link | Quote
So after stumbling upon the Robocop vs. The Terminator (Genesis) article after Andrew Rae did a bit of cleanup, I went in and added a bunch of info on how to access the debug screen, since I remembered seeing that on a magazine several years ago.

I figured, maybe the prototypes have the debug mode in there... and they did! Sort of.

The earliest prototype I found (Rev 069) has the debug mode enabled by default and the stage select has a scrapped flying level! It resembles Konami's Scramble game since you have to rescue people from flying Terminator drones (I forget their name.) There's also a test level - and it also still has the female enemies and they behave very, very differently from the final.

The second prototype (Rev 122) is weird. The Debug Mode code -does not work-, but other cheat codes still do. And the debug mode's text is still in the rom, just like in the proto and final. So maybe the button code is different or disabled, but whatever turns it on (a value in RAM, maybe?) may still be in the game. The Scramble and Test levels are not in the game anymore, or at least they're not in the stage list from the debug mode text.

I'm going to start working on the first proto since the differences are more noticeable there, but I may need help from someone who has experience with Genesis ASM to figure out how to turn on the debug mode in the Rev 122 proto.

____________________
My Video Game Collection
rabidabid
Member
Level: 27


Posts: 65/135
EXP: 102371
For next: 13788

Since: 08-25-10


Since last post: 24 days
Last activity: 6 days

Posted on 08-21-12 09:08:59 PM Link | Quote
On the subject of Robocop vs. Terminator, there's also a crash screen. I saw a video of it a while ago on YouTube but can't find it anymore. They loaded a savestate from a different game to get it to appear (Syd of Valis?).

I searched and found this thread about it on GameFAQs though. I guess they just entered the 54 lives code twice?
http://www.gamefaqs.com/boards/586429-robocop-versus-the-terminator/42746888


I tried the savestate method and got a couple different screens:

Fuzn
Member
Level: 23


Posts: 37/97
EXP: 61008
For next: 6715

Since: 02-23-11


Since last post: 317 days
Last activity: 317 days

Posted on 08-22-12 12:44:47 AM Link | Quote
Originally posted by Foxhack
The earliest prototype I found (Rev 069) has the debug mode enabled by default and the stage select has a scrapped flying level! It resembles Konami's Scramble game since you have to rescue people from flying Terminator drones (I forget their name.) There's also a test level - and it also still has the female enemies and they behave very, very differently from the final.


I've been playing through that prototype some, and outside of the debug modes, there are still plenty of differences I've found. Like octagon-shaped plates that can be collected through the Construction Site level. They don't seem to do anything, but maybe there's a variable.

Even all the way back to Rev 069, Robocop's default gun fires faster on ladders than it does on foot, when no other weapon exhibits the same property.

Truth be told, there's a lot you could write up a page on as far as comparisons to the final go.

I'm curious if the octagon plates you can pick up in the construction stage actually do anything that I'm not seeing.

Peardian

  
Magikoopa

16/3/1: KvSG #479 is up!

Level: 157


Posts: 6192/7597
EXP: 48562806
For next: 1016427

Since: 08-02-07

From: Isle Delfino

Since last post: 1 day
Last activity: 8 hours

Posted on 08-22-12 02:55:00 AM (last edited by Peardian at 08-22-12 11:07:21 AM) Link | Quote
Anybody here good with Python and/or C++? If so, I have some code from Super Mario Strikers here that might be worth looking at. Edit: Now with code tags! Thanks!

tag_elf_region.py

import re

import os
import sys

mapFile = open("MarioSoccerZ.map").read()
mapFile = mapFile.splitlines()

sbss2Start = 0
regionOffset = 0

regionOffsetRegexp = re.compile(r'(\w+)\s+.*g_Region.*')
sbss2StartRegexp = re.compile(r'\.sbss\s+\w+\s+\w+\s+(\w+)')


for line in mapFile:
line = line.strip()

m = sbss2StartRegexp.match(line)
if m != None:
sbss2Start = int(m.group(1), 16)

m = regionOffsetRegexp.match(line)
if m != None:
regionOffset = int(m.group(1), 16)

regionAddress = sbss2Start + regionOffset

for arg in sys.argv:
print("setting region to:")
print(arg)

os.spawnl(os.P_WAIT, r'tag_elf_region.exe', 'MarioSoccerZ.elf', str(regionAddress), arg)






tag_elf_region.cpp

#pragma warning(push, 1)

#pragma warning(disable: 4701)

#include <cstdio>
#include <iostream>
#include <boost/scoped_array.hpp>
#include <boost/lexical_cast.hpp>

int main(int argc, char **argv)
{
if (argc != 3)
{
std::cout << "not enough arguments for program\n";
return 0;
}

const char* filename = argv[0];
const int address = boost::lexical_cast<int>(argv[1])
const int region = boost::lexical_cast<int>(argv[2])

std::FILE* f = std::fopen(filename, "rb")
if (!f)
{
std::cout << "unable to open " << filename << '\n';
return 0;
}

std::fseek(f, 0, SEEK_END)
std::size_t size = std::ftell(f)
std::fseek(f, 0, SEEK_SET)

boost::scoped_array<char> buf(new char[size])
size = std::fread(buf.get(), 1, size, f)
fclose(f)

unsigned int r = *reinterpret_cast<unsigned int*>(&buf[address])
if (r != 0xEFBEADDE)
{
std::cout << "Unexpected sentinel value\n";
return 0;
}

*reinterpret_cast<unsigned int*>(&buf[address]) = region << 24;

f = std::fopen(filename, "wb")
if (!f)
{
std::cout << "unable to open " << filename << '\n';
return 0;
}
fwrite(buf.get(), 1, size, f)
fclose(f)
}



____________________
-Peardian-

"Kindness is the language which the deaf can hear and the blind can see." -Mark Twain


Foxhack
Member
Annoying fuzzball
Level: 54


Posts: 153/722
EXP: 1173449
For next: 60421

Since: 04-17-12

From: Mexicali, Mexico

Since last post: 2.0 years
Last activity: 1.8 years

Posted on 08-22-12 04:06:19 AM Link | Quote
Originally posted by Fuzn
Originally posted by Foxhack
The earliest prototype I found (Rev 069) has the debug mode enabled by default and the stage select has a scrapped flying level! It resembles Konami's Scramble game since you have to rescue people from flying Terminator drones (I forget their name.) There's also a test level - and it also still has the female enemies and they behave very, very differently from the final.


I've been playing through that prototype some, and outside of the debug modes, there are still plenty of differences I've found. Like octagon-shaped plates that can be collected through the Construction Site level. They don't seem to do anything, but maybe there's a variable.

Even all the way back to Rev 069, Robocop's default gun fires faster on ladders than it does on foot, when no other weapon exhibits the same property.

Truth be told, there's a lot you could write up a page on as far as comparisons to the final go.

I'm curious if the octagon plates you can pick up in the construction stage actually do anything that I'm not seeing.



Oh definitely, but I'm not very familiar with the Genesis version of the game. Mostly because I think it sucks donkey gonads. I always preferred the SNES version, at least that one doesn't have music that hurts my ears and is ACTUALLY FAIR AND DOESN'T THROW TWENTY BULLETS AT YOU WHAT IS THIS CONTRA HARD CORPS JEEZ

... ahem.

My plan was to create a couple of starter articles and hopefully someone else would do the rest of the stuff. Sorry, I'm just lazy and / or preoccupied with other stuff...

____________________
My Video Game Collection
Joe
Common spammer
🍬
Level: 111


Posts: 2656/3392
EXP: 14489194
For next: 379166

Since: 08-02-07

From: Pororoca

Since last post: 3 days
Last activity: 7 hours

Posted on 08-22-12 04:52:41 AM Link | Quote
Originally posted by Peardian
The post doesn't keep the indentation, but it's there. Just quote it to see it.
You can use [code] to keep indentation.

That code is really interesting. It was used to set the region in the game executable after compiling it. It would have originally had a bogus value, and the developers used the Python script (which launches the C++ program) to set it to the correct value. It saved time on compiling because that variable was (and maybe still is) the only difference between different regions of the game.

____________________
Peardian

  
Magikoopa

16/3/1: KvSG #479 is up!

Level: 157


Posts: 6193/7597
EXP: 48562806
For next: 1016427

Since: 08-02-07

From: Isle Delfino

Since last post: 1 day
Last activity: 8 hours

Posted on 08-22-12 11:40:54 AM Link | Quote
Thank you much! Next Level Games continues to impress me.


So, what do I do when one of the unused files in a game is an HTML file? Because Strikers has about a dozen of them. Do I just describe it?

____________________
-Peardian-

"Kindness is the language which the deaf can hear and the blind can see." -Mark Twain


andlabs
Member
Level: 38


Posts: 32/309
EXP: 361092
For next: 9355

Since: 03-19-10

From: United States

Since last post: 1.1 years
Last activity: 129 days

Posted on 08-22-12 11:13:13 PM (last edited by andlabs at 08-22-12 11:14:32 PM) Link | Quote
SonicFreak94 found this in the Dreamcast version of Ecco the Dolphin: Defender of the Future. Is it used in that version? He checked the PS2 version's Gallery, but did say he didn't unlock everything yet... Thanks.



Also

[20:11] <SonicFreak94> yeah
[20:11] <SonicFreak94> there's also a clean version of the titlescreen without the logo and crap on it
same question.
Celice
Member
Level: 31


Posts: 55/196
EXP: 177836
For next: 7527

Since: 10-24-10


Since last post: 5.7 years
Last activity: 3.9 years

Posted on 08-23-12 04:01:09 PM Link | Quote
Unused command in the DS Fire Emblem(s)?

http://www.heroesofshadow.net/2012/07/shadow-dragon-trivia.html



When NTG was helping me insert the tutorial graphics, she was asking me where file 19 is. The tutorial files are numbered 01 to 38 internally, but there's no 19 and instead a weird gap between 18 and 20.

Well it turns out the missing tutorial 19 actually appeared in Shadow Dragon... or didn't appear, would be more accurate. It seems Intelligent Systems were planning to implement the ability to issue orders to units, like in Path of Radiance and Radiant Dawn, but dropped it at the last moment.

....


For those interested, these are the orders that were planned:

Avoid[X] Order units to stay out of enemy range unless otherwise instructed.[X]

Protect[X] Order units to protect Marth unless otherwise instructed.[X]

Attack[X] Order units to attack nearby enemies unless otherwise instructed.[X]

Wait[X] Order units to stay put unless otherwise instructed.[X]

Follow[X] Order units to stay with Marth unless otherwise instructed.[X]

I wonder if the option is actually dormant, and just tucked away somewhere? Oh yeah, that reminds me: debug options from the prototypes of FE7/FE8 survive in their final respective releases. I was glitching around once and got some of the options to appear in a normal game--not all of the options, but a few. Other than a few honest debugging features, there's also a "warning system" that was introduced in FE9 and onwards, which allows you to highlight the attack range of units. This may have been another feature in development that was ultimately cut (problems with less static attack ranges, like staves?), as I can't really see the usefulness of it in a debug menu... but that might be because I played eight of the Fire Emblem games without ever being shown the range :p
devin

Yoshi
i'm mima irl
Level: 112


Posts: 2636/3519
EXP: 14918976
For next: 419229

Since: 04-29-08

Pronouns: any
From: FL

Since last post: 297 days
Last activity: 1 day

Posted on 08-26-12 04:24:44 AM (last edited by devin at 08-26-12 04:39:03 AM) Link | Quote
Disassembling Touhou games is painful.




____________________
Photo by Luc Viatour
TheMonkeyBob
40
Level: 16


Posts: 31/42
EXP: 17284
For next: 2972

Since: 04-10-11


Since last post: 6.2 years
Last activity: 5.3 years

Posted on 08-27-12 03:32:31 AM Link | Quote
Some unused stuff from Lands of Lore 2.

http://www.youtube.com/watch?v=1A9yhY5ghLE

http://www.youtube.com/watch?v=BO5vKali5K0

____________________
Feel free to add anything I post to the wiki!
TheKins
Member
Level: 21


Posts: 70/80
EXP: 45901
For next: 4042

Since: 01-17-11


Since last post: 9.0 years
Last activity: 9.0 years

Posted on 08-27-12 08:34:04 AM Link | Quote
I should probably start the DOTA 2 page at some vague point. There's more unused voice actor ad-libs left for snoopers and some stuff from The Internal, Valve's internal tournament for testing the International stuff.

On an off note, everybody's favorite placeholder model has become so popular that he's graduated into a proper in-game courier with lore attached and is getting his own t-shirt! Such bold steps for such a shitty wizard.
Fuzn
Member
Level: 23


Posts: 38/97
EXP: 61008
For next: 6715

Since: 02-23-11


Since last post: 317 days
Last activity: 317 days

Posted on 08-30-12 09:45:35 PM Link | Quote
So this is an interesting find.

The R-TYPE series has most of it's tile data facing the way it appears in-game. Player sprites are naturally stored facing to the right, and this goes for most of the player equipment, power-ups and weapons. Except for the 2nd level Force Unit.


In-Game, it normally looks like this when on the front of your fighter:


However, I found that the tile data had it facing the other way around, as if it were mounted onto the back of the fighter and not the front, suggesting it may have looked like this:



Strangely enough, this persists in the tile data of R-Type 2, even though the sprites have been redrawn and re-mapped entirely:



I'm not exactly sure why Irem decided to mirror the 2nd level Force Unit sprites in this manner.
Foxhack
Member
Annoying fuzzball
Level: 54


Posts: 174/722
EXP: 1173449
For next: 60421

Since: 04-17-12

From: Mexicali, Mexico

Since last post: 2.0 years
Last activity: 1.8 years

Posted on 09-05-12 04:12:55 AM (last edited by Foxhack at 09-05-12 04:15:48 AM) Link | Quote
In my quest to find more useless stuff, The Punisher (PC) contains a lot of leftover configuration data from Red Faction II. Apparently I heard about this years ago and even submitted some trivia about it to MobyGames, but I never remembered it until I actually started to mess around in the game with an extraction program that supported the game's data files. I need to reinstall Red Faction II to compare them all.

Sadly, I couldn't find anything that let me rip graphics... but boy oh boy does it have lots of audio files. 2273 environmental sounds, and 8,281 voice clips. I've found a couple of placeholder voice files, and one of the stand-in clips mentioned in the original TCRF article.

And the main configuration file for the US PS2 version is about 85% the same. The main difference is in the text string regions, Volition removed the Spanish / German / Italian text strings for some weird reason. They may still be in the PAL version of the game. (Edit: Wait, maybe not German. The game's banned over there by the BPjM, so they must've not really bothered to translate it to German.)

____________________
My Video Game Collection
nensondubois
seek help please
Level: 49


Posts: 413/551
EXP: 852711
For next: 31172

Since: 05-30-10


Since last post: 7.8 years
Last activity: 7.8 years

Posted on 09-05-12 10:51:00 PM Link | Quote
I am currently looking into the Pagemaster GB debug menu and again and I found something of additional interest. Option setting 1 after EXIT toggles RAM Address DEAA to either 00 or 01 after the initial value of 00. Setting 2 sets RAM addresses DB04, DC02, DC5E from either 00 or 01 from 00. Hidden option for doesn't set anything in RAM. None of modifyable RAM settings have no effect and maybe additional debugging features were planned.

Another item that poked my curiosity is the Save Data Error message that plays the Game Over jingle in all NP Picross volumes. Unfortunately, neither of the eight versions contain a sound test and I couldn't find any other interesting screens aside.

(Image is pretty big)
http://tcrf.net/File:NP_Picross_Vol_1_DATA_ERROR.PNG
Goomba98

Red Koopa
Level: 26


Posts: 123/127
EXP: 89682
For next: 12593

Since: 07-24-11

From: Da UNIVERSE!

Since last post: 9.3 years
Last activity: 9.3 years

Posted on 09-07-12 06:52:24 PM (last edited by Goomba98 at 09-07-12 07:01:06 PM) Link | Quote
Froggiestick alternate palettes.



The cymbals also have another palette, identical to the blue one but darker:



THwomp, too:



THe parasol also has a pink palette, but I'm not posting it here because I'm not sure if it's used.

____________________


Mattrizzle
150
Level: 29


Posts: 112/151
EXP: 136158
For next: 11727

Since: 07-27-07

From: United States

Since last post: 19 days
Last activity: 18 days

Posted on 09-07-12 09:25:08 PM (last edited by Mattrizzle at 09-07-12 09:33:20 PM) Link | Quote
All of those palettes but the brown-spiked variation of Thwomp are used in the game.
  • The alternate Froggie/Ribbit Stick palettes are actually the cymbal palettes.
  • The cymbals' palette is intended for Bowser's Chomp (Shell) and Spiked Link weapons.
  • After you rescue Peach from Booster and return to the Mushroom Kingdom, she escapes from the castle--using the pink parasol to float to the ground--and rejoins your party.



____________________
Rick
M'Lord, there's a knife in your head!
Level: 152


Posts: 6265/7539
EXP: 43669551
For next: 632109

Since: 02-15-10

From: Maine

Since last post: 113 days
Last activity: 45 days

Posted on 09-09-12 04:46:23 PM Link | Quote
The people in the stream will love this, but they probably already know!

I think I found some unused text in SNES Clue. I'm going to go visit a friend of mine who also knows this game quite well so I can confirm if it is or isn't unused.

____________________


_______________________
| 6265 | 13735 | 936 | 13 |
Rick
M'Lord, there's a knife in your head!
Level: 152


Posts: 6268/7539
EXP: 43669551
For next: 632109

Since: 02-15-10

From: Maine

Since last post: 113 days
Last activity: 45 days

Posted on 09-10-12 04:36:46 AM (last edited by Rick at 09-10-12 04:52:33 AM) Link | Quote


Someone forgot to take out something! Can you guess what it is?

____________________


_______________________
| 6268 | 13732 | 937 | 13 |
Pages: 1 2 3 4 5 6 7 8 9 10 ... 27 28 29 30 31 32 33 34 35 ... 92 93 94 95 96 97 98 99 100 101 Next newer thread | Next older thread
Jul - The Cutting Room Floor - Weird Discoveries New poll - New thread - New reply


Rusted Logic

Acmlmboard - commit 47be4dc [2021-08-23]
©2000-2022 Acmlm, Xkeeper, Kaito Sinclaire, et al.

37 database queries, 4 query cache hits.
Query execution time:  0.114027 seconds
Script execution time:  0.036705 seconds
Total render time:  0.150732 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 301 - Warning: unescaped & or unknown entity "&page"
line 119 column 11 - Warning: <form> isn't allowed in <table> elements
line 118 column 10 - Info: <table> previously mentioned
line 120 column 11 - Warning: missing <tr>
line 120 column 119 - Warning: missing </font> before </td>
line 124 column 16 - Warning: plain text isn't allowed in <tr> elements
line 120 column 11 - Info: <tr> previously mentioned
line 125 column 68 - Warning: missing </nobr> before </td>
line 141 column 68 - Warning: missing </nobr> before <tr>
line 147 column 35 - Warning: missing <tr>
line 147 column 50 - Warning: missing </font> before </td>
line 148 column 37 - Warning: unescaped & or unknown entity "&id"
line 147 column 188 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 95 - Warning: unescaped & or unknown entity "&page"
line 149 column 128 - Warning: unescaped & or unknown entity "&page"
line 149 column 161 - Warning: unescaped & or unknown entity "&page"
line 149 column 194 - Warning: unescaped & or unknown entity "&page"
line 149 column 227 - Warning: unescaped & or unknown entity "&page"
line 149 column 260 - Warning: unescaped & or unknown entity "&page"
line 149 column 293 - Warning: unescaped & or unknown entity "&page"
line 149 column 326 - Warning: unescaped & or unknown entity "&page"
line 149 column 359 - Warning: unescaped & or unknown entity "&page"
line 149 column 392 - Warning: unescaped & or unknown entity "&page"
line 149 column 430 - Warning: unescaped & or unknown entity "&page"
line 149 column 465 - Warning: unescaped & or unknown entity "&page"
line 149 column 500 - Warning: unescaped & or unknown entity "&page"
line 149 column 535 - Warning: unescaped & or unknown entity "&page"
line 149 column 573 - Warning: unescaped & or unknown entity "&page"
line 149 column 608 - Warning: unescaped & or unknown entity "&page"
line 149 column 643 - Warning: unescaped & or unknown entity "&page"
line 149 column 678 - Warning: unescaped & or unknown entity "&page"
line 149 column 717 - Warning: unescaped & or unknown entity "&page"
line 149 column 752 - Warning: unescaped & or unknown entity "&page"
line 149 column 787 - Warning: unescaped & or unknown entity "&page"
line 149 column 822 - Warning: unescaped & or unknown entity "&page"
line 149 column 857 - Warning: unescaped & or unknown entity "&page"
line 149 column 892 - Warning: unescaped & or unknown entity "&page"
line 149 column 927 - Warning: unescaped & or unknown entity "&page"
line 149 column 962 - Warning: unescaped & or unknown entity "&page"
line 149 column 997 - Warning: unescaped & or unknown entity "&page"
line 149 column 1033 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 1072 - Warning: missing </font> before </table>
line 156 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 158 column 9 - Warning: missing <tr>
line 176 column 13 - Warning: missing <tr>
line 177 column 102 - Warning: unescaped & or unknown entity "&postid"
line 186 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 188 column 9 - Warning: missing <tr>
line 206 column 13 - Warning: missing <tr>
line 207 column 102 - Warning: unescaped & or unknown entity "&postid"
line 220 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 222 column 9 - Warning: missing <tr>
line 240 column 13 - Warning: missing <tr>
line 241 column 102 - Warning: unescaped & or unknown entity "&postid"
line 254 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 256 column 9 - Warning: missing <tr>
line 274 column 13 - Warning: missing <tr>
line 275 column 102 - Warning: unescaped & or unknown entity "&postid"
line 290 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 292 column 9 - Warning: missing <tr>
line 310 column 13 - Warning: missing <tr>
line 311 column 102 - Warning: unescaped & or unknown entity "&postid"
line 313 column 74 - Warning: <style> isn't allowed in <td> elements
line 313 column 9 - Info: <td> previously mentioned
line 313 column 363 - Warning: missing </font> before <center>
line 313 column 437 - Warning: inserting implicit <font>
line 313 column 538 - Warning: inserting implicit <font>
line 313 column 538 - Warning: missing </font> before <blockquote>
line 316 column 761 - Warning: inserting implicit <font>
line 316 column 761 - Warning: missing </font> before <hr>
line 348 column 1 - Warning: inserting implicit <font>
line 348 column 1 - Warning: missing </font> before <blockquote>
line 353 column 1739 - Warning: inserting implicit <font>
line 353 column 1739 - Warning: missing </font> before <hr>
line 388 column 2806 - Warning: unescaped & or unknown entity "&buf"
line 395 column 3005 - Warning: unescaped & or unknown entity "&buf"
line 405 column 3325 - Warning: inserting implicit <font>
line 413 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 415 column 9 - Warning: missing <tr>
line 433 column 13 - Warning: missing <tr>
line 434 column 102 - Warning: unescaped & or unknown entity "&postid"
line 454 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 456 column 9 - Warning: missing <tr>
line 474 column 13 - Warning: missing <tr>
line 475 column 102 - Warning: unescaped & or unknown entity "&postid"
line 477 column 74 - Warning: <style> isn't allowed in <td> elements
line 477 column 9 - Info: <td> previously mentioned
line 477 column 853 - Error: <z> is not recognized!
line 477 column 853 - Warning: discarding unexpected <z>
line 477 column 856 - Warning: discarding unexpected </z>
line 482 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 484 column 9 - Warning: missing <tr>
line 502 column 13 - Warning: missing <tr>
line 503 column 102 - Warning: unescaped & or unknown entity "&postid"
line 505 column 74 - Warning: <style> isn't allowed in <td> elements
line 505 column 9 - Info: <td> previously mentioned
line 505 column 363 - Warning: missing </font> before <center>
line 505 column 437 - Warning: inserting implicit <font>
line 505 column 538 - Warning: inserting implicit <font>
line 516 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 518 column 9 - Warning: missing <tr>
line 536 column 13 - Warning: missing <tr>
line 537 column 102 - Warning: unescaped & or unknown entity "&postid"
line 548 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 550 column 9 - Warning: missing <tr>
line 568 column 13 - Warning: missing <tr>
line 569 column 102 - Warning: unescaped & or unknown entity "&postid"
line 597 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 599 column 9 - Warning: missing <tr>
line 617 column 13 - Warning: missing <tr>
line 618 column 102 - Warning: unescaped & or unknown entity "&postid"
line 626 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 628 column 9 - Warning: missing <tr>
line 646 column 13 - Warning: missing <tr>
line 647 column 102 - Warning: unescaped & or unknown entity "&postid"
line 656 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 658 column 9 - Warning: missing <tr>
line 676 column 13 - Warning: missing <tr>
line 677 column 102 - Warning: unescaped & or unknown entity "&postid"
line 684 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 686 column 9 - Warning: missing <tr>
line 704 column 13 - Warning: missing <tr>
line 705 column 102 - Warning: unescaped & or unknown entity "&postid"
line 726 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 728 column 9 - Warning: missing <tr>
line 746 column 13 - Warning: missing <tr>
line 747 column 102 - Warning: unescaped & or unknown entity "&postid"
line 756 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 758 column 9 - Warning: missing <tr>
line 776 column 13 - Warning: missing <tr>
line 777 column 102 - Warning: unescaped & or unknown entity "&postid"
line 787 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 789 column 9 - Warning: missing <tr>
line 807 column 13 - Warning: missing <tr>
line 808 column 102 - Warning: unescaped & or unknown entity "&postid"
line 827 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 829 column 9 - Warning: missing <tr>
line 847 column 13 - Warning: missing <tr>
line 848 column 102 - Warning: unescaped & or unknown entity "&postid"
line 850 column 74 - Warning: <link> isn't allowed in <td> elements
line 850 column 9 - Info: <td> previously mentioned
line 855 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 857 column 9 - Warning: missing <tr>
line 875 column 13 - Warning: missing <tr>
line 876 column 102 - Warning: unescaped & or unknown entity "&postid"
line 886 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 888 column 9 - Warning: missing <tr>
line 906 column 13 - Warning: missing <tr>
line 907 column 102 - Warning: unescaped & or unknown entity "&postid"
line 917 column 17 - Warning: missing <tr>
line 917 column 17 - Warning: discarding unexpected <table>
line 920 column 35 - Warning: missing <tr>
line 920 column 95 - Warning: unescaped & or unknown entity "&page"
line 920 column 128 - Warning: unescaped & or unknown entity "&page"
line 920 column 161 - Warning: unescaped & or unknown entity "&page"
line 920 column 194 - Warning: unescaped & or unknown entity "&page"
line 920 column 227 - Warning: unescaped & or unknown entity "&page"
line 920 column 260 - Warning: unescaped & or unknown entity "&page"
line 920 column 293 - Warning: unescaped & or unknown entity "&page"
line 920 column 326 - Warning: unescaped & or unknown entity "&page"
line 920 column 359 - Warning: unescaped & or unknown entity "&page"
line 920 column 392 - Warning: unescaped & or unknown entity "&page"
line 920 column 430 - Warning: unescaped & or unknown entity "&page"
line 920 column 465 - Warning: unescaped & or unknown entity "&page"
line 920 column 500 - Warning: unescaped & or unknown entity "&page"
line 920 column 535 - Warning: unescaped & or unknown entity "&page"
line 920 column 573 - Warning: unescaped & or unknown entity "&page"
line 920 column 608 - Warning: unescaped & or unknown entity "&page"
line 920 column 643 - Warning: unescaped & or unknown entity "&page"
line 920 column 678 - Warning: unescaped & or unknown entity "&page"
line 920 column 717 - Warning: unescaped & or unknown entity "&page"
line 920 column 752 - Warning: unescaped & or unknown entity "&page"
line 920 column 787 - Warning: unescaped & or unknown entity "&page"
line 920 column 822 - Warning: unescaped & or unknown entity "&page"
line 920 column 857 - Warning: unescaped & or unknown entity "&page"
line 920 column 892 - Warning: unescaped & or unknown entity "&page"
line 920 column 927 - Warning: unescaped & or unknown entity "&page"
line 920 column 962 - Warning: unescaped & or unknown entity "&page"
line 920 column 997 - Warning: unescaped & or unknown entity "&page"
line 920 column 1033 - Warning: unescaped & or unknown entity "&page"
line 920 column 50 - Warning: missing </font> before </td>
line 920 column 1072 - Warning: missing </font> before </table>
line 922 column 35 - Warning: missing <tr>
line 922 column 50 - Warning: missing </font> before </td>
line 923 column 37 - Warning: unescaped & or unknown entity "&id"
line 922 column 188 - Warning: missing </font> before </table>
line 924 column 17 - Warning: discarding unexpected </textarea>
line 924 column 28 - Warning: discarding unexpected </form>
line 924 column 35 - Warning: discarding unexpected </embed>
line 924 column 43 - Warning: discarding unexpected </noembed>
line 924 column 53 - Warning: discarding unexpected </noscript>
line 924 column 64 - Warning: discarding unexpected </noembed>
line 924 column 74 - Warning: discarding unexpected </embed>
line 924 column 82 - Warning: discarding unexpected </table>
line 924 column 90 - Warning: discarding unexpected </table>
line 926 column 9 - Warning: missing </font> before <table>
line 938 column 25 - Warning: discarding unexpected </font>
line 947 column 57 - Warning: discarding unexpected </font>
line 925 column 1 - Warning: missing </center>
line 120 column 63 - Warning: <img> lacks "alt" attribute
line 125 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 125 column 93 - Warning: <img> lacks "alt" attribute
line 141 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 141 column 98 - Warning: <img> lacks "alt" attribute
line 148 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 148 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 161 column 22 - Warning: <img> lacks "alt" attribute
line 161 column 63 - Warning: <img> lacks "alt" attribute
line 161 column 112 - Warning: <img> lacks "alt" attribute
line 161 column 162 - Warning: <img> lacks "alt" attribute
line 162 column 11 - Warning: <img> lacks "alt" attribute
line 172 column 15 - Warning: <img> lacks "alt" attribute
line 191 column 22 - Warning: <img> lacks "alt" attribute
line 191 column 63 - Warning: <img> lacks "alt" attribute
line 191 column 112 - Warning: <img> lacks "alt" attribute
line 191 column 162 - Warning: <img> lacks "alt" attribute
line 192 column 11 - Warning: <img> lacks "alt" attribute
line 202 column 15 - Warning: <img> lacks "alt" attribute
line 206 column 92 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 225 column 22 - Warning: <img> lacks "alt" attribute
line 225 column 63 - Warning: <img> lacks "alt" attribute
line 225 column 111 - Warning: <img> lacks "alt" attribute
line 225 column 161 - Warning: <img> lacks "alt" attribute
line 226 column 11 - Warning: <img> lacks "alt" attribute
line 236 column 15 - Warning: <img> lacks "alt" attribute
line 251 column 581 - Warning: <img> lacks "alt" attribute
line 251 column 643 - Warning: <img> lacks "alt" attribute
line 259 column 22 - Warning: <img> lacks "alt" attribute
line 259 column 63 - Warning: <img> lacks "alt" attribute
line 259 column 112 - Warning: <img> lacks "alt" attribute
line 259 column 162 - Warning: <img> lacks "alt" attribute
line 260 column 11 - Warning: <img> lacks "alt" attribute
line 270 column 15 - Warning: <img> lacks "alt" attribute
line 294 column 17 - Warning: <img> lacks "alt" attribute
line 295 column 23 - Warning: <img> lacks "alt" attribute
line 295 column 64 - Warning: <img> lacks "alt" attribute
line 295 column 112 - Warning: <img> lacks "alt" attribute
line 295 column 162 - Warning: <img> lacks "alt" attribute
line 296 column 11 - Warning: <img> lacks "alt" attribute
line 306 column 15 - Warning: <img> lacks "alt" attribute
line 310 column 91 - Warning: <font> attribute "color" had invalid value "F185C9" and has been replaced
line 313 column 437 - Warning: <img> lacks "alt" attribute
line 408 column 3749 - Warning: <img> lacks "alt" attribute
line 418 column 22 - Warning: <img> lacks "alt" attribute
line 418 column 63 - Warning: <img> lacks "alt" attribute
line 418 column 112 - Warning: <img> lacks "alt" attribute
line 418 column 162 - Warning: <img> lacks "alt" attribute
line 419 column 11 - Warning: <img> lacks "alt" attribute
line 429 column 15 - Warning: <img> lacks "alt" attribute
line 447 column 1441 - Warning: <img> proprietary attribute value "absmiddle"
line 447 column 1441 - Warning: <img> lacks "alt" attribute
line 451 column 1817 - Warning: <img> proprietary attribute value "absmiddle"
line 451 column 1817 - Warning: <img> lacks "alt" attribute
line 459 column 23 - Warning: <img> lacks "alt" attribute
line 459 column 64 - Warning: <img> lacks "alt" attribute
line 459 column 113 - Warning: <img> lacks "alt" attribute
line 459 column 163 - Warning: <img> lacks "alt" attribute
line 460 column 11 - Warning: <img> lacks "alt" attribute
line 470 column 15 - Warning: <img> lacks "alt" attribute
line 486 column 17 - Warning: <img> lacks "alt" attribute
line 487 column 23 - Warning: <img> lacks "alt" attribute
line 487 column 64 - Warning: <img> lacks "alt" attribute
line 487 column 112 - Warning: <img> lacks "alt" attribute
line 487 column 162 - Warning: <img> lacks "alt" attribute
line 488 column 11 - Warning: <img> lacks "alt" attribute
line 498 column 15 - Warning: <img> lacks "alt" attribute
line 505 column 437 - Warning: <img> lacks "alt" attribute
line 511 column 1177 - Warning: <img> lacks "alt" attribute
line 521 column 22 - Warning: <img> lacks "alt" attribute
line 521 column 63 - Warning: <img> lacks "alt" attribute
line 521 column 112 - Warning: <img> lacks "alt" attribute
line 521 column 162 - Warning: <img> lacks "alt" attribute
line 522 column 11 - Warning: <img> lacks "alt" attribute
line 532 column 15 - Warning: <img> lacks "alt" attribute
line 536 column 92 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 541 column 296 - Warning: <img> lacks "alt" attribute
line 553 column 22 - Warning: <img> lacks "alt" attribute
line 553 column 63 - Warning: <img> lacks "alt" attribute
line 553 column 112 - Warning: <img> lacks "alt" attribute
line 553 column 162 - Warning: <img> lacks "alt" attribute
line 564 column 15 - Warning: <img> lacks "alt" attribute
line 601 column 11 - Warning: <img> lacks "alt" attribute
line 602 column 23 - Warning: <img> lacks "alt" attribute
line 602 column 64 - Warning: <img> lacks "alt" attribute
line 602 column 113 - Warning: <img> lacks "alt" attribute
line 602 column 163 - Warning: <img> lacks "alt" attribute
line 603 column 11 - Warning: <img> lacks "alt" attribute
line 613 column 15 - Warning: <img> lacks "alt" attribute
line 617 column 91 - Warning: <font> attribute "color" had invalid value "7C60B0" and has been replaced
line 622 column 660 - Warning: <img> lacks "alt" attribute
line 623 column 723 - Warning: <img> lacks "alt" attribute
line 630 column 14 - Warning: <img> proprietary attribute value "absmiddle"
line 630 column 14 - Warning: <img> lacks "alt" attribute
line 630 column 57 - Warning: <img> proprietary attribute value "absmiddle"
line 630 column 57 - Warning: <img> lacks "alt" attribute
line 630 column 100 - Warning: <img> proprietary attribute value "absmiddle"
line 630 column 100 - Warning: <img> lacks "alt" attribute
line 630 column 143 - Warning: <img> proprietary attribute value "absmiddle"
line 630 column 143 - Warning: <img> lacks "alt" attribute
line 631 column 22 - Warning: <img> lacks "alt" attribute
line 631 column 63 - Warning: <img> lacks "alt" attribute
line 631 column 112 - Warning: <img> lacks "alt" attribute
line 631 column 162 - Warning: <img> lacks "alt" attribute
line 632 column 11 - Warning: <img> lacks "alt" attribute
line 642 column 15 - Warning: <img> lacks "alt" attribute
line 661 column 22 - Warning: <img> lacks "alt" attribute
line 661 column 63 - Warning: <img> lacks "alt" attribute
line 661 column 112 - Warning: <img> lacks "alt" attribute
line 661 column 162 - Warning: <img> lacks "alt" attribute
line 672 column 15 - Warning: <img> lacks "alt" attribute
line 689 column 22 - Warning: <img> lacks "alt" attribute
line 689 column 63 - Warning: <img> lacks "alt" attribute
line 689 column 112 - Warning: <img> lacks "alt" attribute
line 689 column 162 - Warning: <img> lacks "alt" attribute
line 690 column 11 - Warning: <img> lacks "alt" attribute
line 700 column 15 - Warning: <img> lacks "alt" attribute
line 713 column 446 - Warning: <img> lacks "alt" attribute
line 716 column 693 - Warning: <img> lacks "alt" attribute
line 720 column 889 - Warning: <img> lacks "alt" attribute
line 731 column 22 - Warning: <img> lacks "alt" attribute
line 731 column 63 - Warning: <img> lacks "alt" attribute
line 731 column 112 - Warning: <img> lacks "alt" attribute
line 731 column 162 - Warning: <img> lacks "alt" attribute
line 732 column 11 - Warning: <img> lacks "alt" attribute
line 742 column 15 - Warning: <img> lacks "alt" attribute
line 746 column 92 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 761 column 22 - Warning: <img> lacks "alt" attribute
line 761 column 63 - Warning: <img> lacks "alt" attribute
line 761 column 112 - Warning: <img> lacks "alt" attribute
line 761 column 162 - Warning: <img> lacks "alt" attribute
line 762 column 11 - Warning: <img> lacks "alt" attribute
line 772 column 15 - Warning: <img> lacks "alt" attribute
line 791 column 11 - Warning: <img> lacks "alt" attribute
line 792 column 22 - Warning: <img> lacks "alt" attribute
line 792 column 63 - Warning: <img> lacks "alt" attribute
line 792 column 113 - Warning: <img> lacks "alt" attribute
line 793 column 11 - Warning: <img> lacks "alt" attribute
line 803 column 15 - Warning: <img> lacks "alt" attribute
line 807 column 92 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 812 column 114 - Warning: <img> lacks "alt" attribute
line 816 column 265 - Warning: <img> lacks "alt" attribute
line 820 column 347 - Warning: <img> lacks "alt" attribute
line 822 column 539 - Warning: <marquee> attribute "bgcolor" had invalid value "FFFFFF" and has been replaced
line 822 column 592 - Warning: <img> lacks "alt" attribute
line 831 column 15 - Warning: <img> proprietary attribute value "absmiddle"
line 831 column 15 - Warning: <img> lacks "alt" attribute
line 831 column 58 - Warning: <img> proprietary attribute value "absmiddle"
line 831 column 58 - Warning: <img> lacks "alt" attribute
line 831 column 101 - Warning: <img> proprietary attribute value "absmiddle"
line 831 column 101 - Warning: <img> lacks "alt" attribute
line 832 column 22 - Warning: <img> lacks "alt" attribute
line 832 column 63 - Warning: <img> lacks "alt" attribute
line 832 column 112 - Warning: <img> lacks "alt" attribute
line 832 column 162 - Warning: <img> lacks "alt" attribute
line 833 column 11 - Warning: <img> lacks "alt" attribute
line 843 column 15 - Warning: <img> lacks "alt" attribute
line 847 column 90 - Warning: <font> attribute "color" had invalid value "97ACEF" and has been replaced
line 860 column 23 - Warning: <img> lacks "alt" attribute
line 860 column 64 - Warning: <img> lacks "alt" attribute
line 860 column 113 - Warning: <img> lacks "alt" attribute
line 860 column 163 - Warning: <img> lacks "alt" attribute
line 861 column 11 - Warning: <img> lacks "alt" attribute
line 871 column 15 - Warning: <img> lacks "alt" attribute
line 880 column 350 - Warning: <img> lacks "alt" attribute
line 883 column 480 - Warning: <img> lacks "alt" attribute
line 891 column 23 - Warning: <img> lacks "alt" attribute
line 891 column 64 - Warning: <img> lacks "alt" attribute
line 891 column 113 - Warning: <img> lacks "alt" attribute
line 891 column 163 - Warning: <img> lacks "alt" attribute
line 892 column 11 - Warning: <img> lacks "alt" attribute
line 902 column 15 - Warning: <img> lacks "alt" attribute
line 906 column 92 - Warning: <font> attribute "color" had invalid value "E2D315" and has been replaced
line 909 column 74 - Warning: <img> lacks "alt" attribute
line 911 column 229 - Warning: <img> proprietary attribute value "absmiddle"
line 911 column 229 - Warning: <img> lacks "alt" attribute
line 911 column 312 - Warning: <img> lacks "alt" attribute
line 914 column 442 - Warning: <img> lacks "alt" attribute
line 923 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 923 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 923 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 932 column 25 - Warning: <img> lacks "alt" attribute
line 937 column 267 - Warning: <img> lacks "alt" attribute
line 313 column 363 - Warning: trimming empty <font>
line 316 column 761 - Warning: trimming empty <font>
line 353 column 1739 - Warning: trimming empty <font>
line 505 column 363 - Warning: trimming empty <font>
line 917 column 17 - Warning: trimming empty <tr>
line 125 column 68 - Warning: <nobr> is not approved by W3C
line 141 column 68 - Warning: <nobr> is not approved by W3C
line 177 column 27 - Warning: <nobr> is not approved by W3C
line 207 column 27 - Warning: <nobr> is not approved by W3C
line 241 column 27 - Warning: <nobr> is not approved by W3C
line 275 column 27 - Warning: <nobr> is not approved by W3C
line 311 column 27 - Warning: <nobr> is not approved by W3C
line 407 column 3396 - Warning: <td> proprietary attribute "background"
line 434 column 27 - Warning: <nobr> is not approved by W3C
line 475 column 27 - Warning: <nobr> is not approved by W3C
line 503 column 27 - Warning: <nobr> is not approved by W3C
line 510 column 824 - Warning: <td> proprietary attribute "background"
line 537 column 27 - Warning: <nobr> is not approved by W3C
line 569 column 27 - Warning: <nobr> is not approved by W3C
line 618 column 27 - Warning: <nobr> is not approved by W3C
line 647 column 27 - Warning: <nobr> is not approved by W3C
line 677 column 27 - Warning: <nobr> is not approved by W3C
line 705 column 27 - Warning: <nobr> is not approved by W3C
line 747 column 27 - Warning: <nobr> is not approved by W3C
line 777 column 27 - Warning: <nobr> is not approved by W3C
line 808 column 27 - Warning: <nobr> is not approved by W3C
line 822 column 539 - Warning: <marquee> is not approved by W3C
line 848 column 27 - Warning: <nobr> is not approved by W3C
line 876 column 27 - Warning: <nobr> is not approved by W3C
line 907 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 409 warnings and 1 error!

The alt attribute should be used to give a short description
of an image; longer descriptions should be given with the
longdesc attribute which takes a URL linked to the description.
These measures are needed for people using non-graphical browsers.

For further advice on how to make your pages accessible
see http://www.w3.org/WAI/GL.
You are recommended to use CSS to specify the font and
properties such as its size and color. This will reduce
the size of HTML files and make them easier to maintain
compared with using <FONT> elements.

You are recommended to use CSS to control line wrapping.
Use "white-space: nowrap" to inhibit wrapping in place
of inserting <NOBR>...</NOBR> into the markup.

About HTML Tidy: https://github.com/htacg/tidy-html5
Bug reports and comments: https://github.com/htacg/tidy-html5/issues
Official mailing list: https://lists.w3.org/Archives/Public/public-htacg/
Latest HTML specification: http://dev.w3.org/html5/spec-author-view/
Validate your HTML documents: http://validator.w3.org/nu/
Lobby your company to join the W3C: http://www.w3.org/Consortium

Do you speak a language other than English, or a different variant of
English? Consider helping us to localize HTML Tidy. For details please see
https://github.com/htacg/tidy-html5/blob/master/README/LOCALIZE.md