Warning: You are using TidyHTML mode! Pages MAY and probably WILL break. To disable, click here or append 'xxx-off=1' to the URL!

Register - Login
Views: 57890708
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - JCS - Stats - Latest Posts - Color Chart - Smilies
10-16-14 06:00:10 PM

Jul - Posts by NsmB_PrO
Pages: 1 2 3 4 5 6 7 8 9 10 ... 14 15 16 17 18 19 20 21 22 23
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 2/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-15-10 11:10:54 AM, in Help/Questions thread. ASK QUESTIONS HERE! Link
sorry but where i can get visual studio from?
there is only a test version what needs 10 hours downloadtime
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 3/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-15-10 11:54:01 AM, in Help/Questions thread. ASK QUESTIONS HERE! Link
Originally posted by angelsl
Originally posted by NsmB_PrO
sorry but where i can get visual studio from?
there is only a test version what needs 10 hours downloadtime


http://go.microsoft.com/?linkid=7729278

I suggest you just stick with 5.1 for now. Visual Studio is not a typical 1MB-20MB application.

It's a full fledged IDE (yes, the Express versions too!) that go more than 100MB.





thank you guy
no i have worked with 5.2 already.
but i apprehended that there is a better version 5.2 of the editor (more sprites are now previewed i think)
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 4/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-15-10 12:45:05 PM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-15-10 12:45 PM) Link
there are 4 errors and 2 warnings after pressing build > build solution:
The type or namespace name "Be" could not be found (are you missing a usingdirective or an assembly reference?)
can anyone help me?
everytime when i make somthing it goes wrong xD
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 5/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-15-10 01:55:00 PM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-15-10 01:55 PM) Link
sorry
i can't do that! thats impossible for me...
could you tell me how i can put a reference to it from the nsmbe project?
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 6/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-16-10 04:50:18 AM, in Help/Questions thread. ASK QUESTIONS HERE! Link
Originally posted by Lokao0
I am having problems with entering in pipes and changing areas.
I have a entrance on Area 2, i want to go to another entrance in Area 1. Can someone help me?

whats the problem exactly?
what happens when you make an entrance from area 2 to area 1?
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 8/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-16-10 12:31:43 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
you must hex edit your level:
1) Make a couple pipes, and put the entrances on them. Give unique values for the Entrance Number. Give them the same Connected Pipe ID number, and click "Connected Pipe" on both. Camera, Destination Entrance, and View should be 0 (there might be some exceptions for this, i dunno). However, for the Destination Area field: the first entrance should have a value of 0, and the second entrance should have a value of 1. Okay, thats the easy part.

2) Open up the level in Hex Editor. The blocks we're going to be playing with are blocks 11 and 13.

---- Block 11 ----

This block is like a table of contents. Each 'entry' is 8 bits (or whatever) long. The structure is as follows:


Format:

CC CC RR RR TT TT 00 00



Example:

01 00 00 00 02 00 00 00



CC: This is the Pipe Connector ID. A pipe will only work if an entry in block 11 starts with its Connector ID.
RR: This value points to the row in Block 13 that contains its information.
TT: This value is the number of twists and turns the camera will follow, PLUS one. If you have a pipe with no bends, this value will be 2. If you have a pipe that goes left for a while, then up, then right, then goes down and exits you out, there are 4 twists and turns, so this value will be a 5.
00: While looking through the rom, these values are always 0. They might mean something, but then they might not.

---- Block 13 ----

This block contains the information for the twists and turns.


Format:

XX XX YY YY 00 00 00 00 00 00 00 00 00 00 DD 00



Example:

30 01 60 06 00 00 00 00 00 00 00 00 00 00 02 00



XX: The X position of the current destination. There appears to be an offset of 16 to 32... not sure why, tho.
YY: The Y position of the current destination. There is also an offset of 16 to 32 here. These values might take some denial and error (TPB reference )
00: These values appear to be 00 every time throughout the rom.
DD: This is the direction you come out of this pipe. Sometimes, it doesn't seem to matter what this value is, and Mario will come out of the pipe the right way, but other times, he wont. 00: Down | 01: Right | 02: Up 03: Left


First of all, the row that this data is on is important. the RR value in block 11 points to this row. The first row is, of course, 00. Then, 10, 20, etc.
The number of rows for each Connection ID is equal to the number of Twists and Turns (the value of TT in block 11).

Each row is a destination to a 'node' in the pipe. For a pipe with no bends, there are two nodes: The entrance and the exit. For a pipe with a couple bends, each bend is also a node and needs a row. If you have a pipe that has bends, but you only make rows for the entrance and the exit, the camera will pan to the exit automatically, even if the pan is diagonal.

If you make an L shaped pipe where you go Down, then you exit to the right after just a couple tiles, you wont need a third node - the camera will just focus on Mario as he exits the pipe.

So lets say you have a pipe that goes right, down, right. Lets also say that the pipe is long enough that we want four nodes.

Row 00 is the Entrance point. It should have an appropriate value for DD.
Row 10 is the first Bend. It doesn't matter what its DD is, though i think its best if you make it 00.
Row 20 is the second Bend.
Row 30 is the Exit end of the pipe. It should have an appropriate value for DD as well.


Row 40 should be the start of your NEXT Connected Pipe ID, and 40 should be entered into spot RR in Block 11.


If you want some in game examples, check out level 7-A Area 2, 4-Ghost House Area 1, and 7-3 Area 1.


I think it was first posted from Garmichael
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 9/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-16-10 01:04:58 PM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-16-10 01:10 PM) Link
Originally posted by dirbaio
yeah, it's from a VERY OLD POST from Garmichael.

There's no longer need to hex edit levels. The editor supports path and zone edition.

yes....but you can't add nodes in the path -.-
what does the new buttons (pad arm 7; parse read list; crypt FAT) does?
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 10/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-16-10 01:50:04 PM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-16-10 02:17 PM) Link
Originally posted by Lokao0
Originally posted by NsmB_PrO
Originally posted by Lokao0
I am having problems with entering in pipes and changing areas.
I have a entrance on Area 2, i want to go to another entrance in Area 1. Can someone help me?

whats the problem exactly?
what happens when you make an entrance from area 2 to area 1?


Black Screen of death.

i have that problem too....sometimes
but i have it when i make a "warp to level"-sprite
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 11/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-16-10 02:49:20 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
is it possible to hack the title_screen logo?
I extracted the file:
FILESYSTEM/Files/enemy/s_logo.nsbmd
and then i edited it with Photo Shop cs4
I saved it and have done it into the game again
when i start my game the title screen is'nt hacked :-(
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 13/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-17-10 09:40:21 AM, in Help/Questions thread. ASK QUESTIONS HERE! Link
put the sprite (number: 155) to a place, choose its lenght and/or height and then make the destination.
in my game it isn't working everytime, but nearly always it work
good luck
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 14/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-17-10 09:45:26 AM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-17-10 09:46 AM) Link
Originally posted by dirbaio
I didnt know that you could edit nsbmd files with Photoshop... Seems kinda weird.
Anyways, that file is only used for the fading in the logo that happens if you leave the title screen running for a while.
The actual logo data is stored as 2d tiles in the ui_studio folder.

if i open the file with tile molestor, the colours are wrong!
i set it to 4 bp linear reverse order and before i extracted the file, i decompressed the file!
Is there a programm what can open that weird files and can show true colours?
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 15/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-17-10 09:58:03 AM, in 100 Years (last edited by NsmB_PrO at 05-17-10 09:58 AM) Link
Originally posted by Link 70222
And don't even bother telling me how bad 1-5 is, I know it's horrible.

i think 1-5 isn't bad ^^
i played 2-1 and i think 1-5 is better
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 16/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-17-10 02:23:18 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
Originally posted by dirbaio
You have to get a palette file to get the correct colors in Tile Molester.
Palette files are named *_ncl.bin
I dont know what palette file is used with the logo, if you could find it it would be nice.

To load a palette in Tile Molester: Extract the file, go to TM, Palette->Load->From file (if i remember correctly...)

you can't open _ncl.bin files with the tile molester
have an idea how to edit video files in nsmb?
that would be interesting!
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 17/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-18-10 01:34:42 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
How i get to the pallette menu?
i go to pallette ---> and what i must do now?
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 18/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-22-10 12:58:25 PM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-22-10 12:59 PM) Link
Hey, guys!
I made 4 pipe cannons (1 in view 0 and 3 in view 1)
My problem is, the 3rd pipe cannon in view 1 isn't there (the pipe cannon is invisible)
all other sprites work!
hope for help
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 19/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-22-10 01:32:01 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
it works on each other position! It doesn't work only on a little area of approximately 7x7. This little area is over the starting entrance.
if i move it only 4 boxes right it works
it is non existant, i can't touch it
My starting entrance is a "jumping-entrance"
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 20/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-29-10 07:02:08 AM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-29-10 07:20 AM) Link
Originally posted by dirbaio
weird...
Maybe it's a bug..
I dont think that it can be fixed, then...

Try to adapt your level to it




sorry, but when I throw a fireball in that area, the fireball disappears!
and there are working no other sprites!
hope for help
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 22/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-29-10 07:20:55 AM, in Help/Questions thread. ASK QUESTIONS HERE! Link
and my other problem is, that when I want to play some of my levels, at the begin of the level, the view slides 2-3 boxes up or down immediately. It isn't really disturbing, but it looks really buggy.
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 23/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-29-10 10:41:51 AM, in Help/Questions thread. ASK QUESTIONS HERE! (last edited by NsmB_PrO at 05-29-10 10:42 AM) Link
Originally posted by dirbaio
Try to play with the Camera X and Camera Y options of the starting entrance...
It will probably solve it

no, using the camera x and y buttons doesn't solve the problem...
I experimented a bit with the block 2 (hex editor) and now I know how to solve the problem:
copy that code (hex editor) and paste it in block 2 (hex editor) of your level:
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0F 00 00 00 00 00
don't copy the block 2 of 1-2 area 1 because then at the begin it looks a bit buggy^^
NsmB_PrO
Member
Picture Resized!
Level: 40


Posts: 24/467
EXP: 407608
For next: 33701

Since: 04-29-10


Since last post: 1179 days
Last activity: 569 days

Posted on 05-29-10 02:16:20 PM, in Help/Questions thread. ASK QUESTIONS HERE! Link
i edited the overworld too^^
here a screenshot (i made an ice-level instead of a grass level^^)
Bilder Upload
Pages: 1 2 3 4 5 6 7 8 9 10 ... 14 15 16 17 18 19 20 21 22 23
Jul - Posts by NsmB_PrO






Rusted Logic

Acmlmboard - 07/23/2013 b378.03
©2000-2013 Acmlm, Xkeeper, Inuyasha, et al.
bargaining-tycoon

21 database queries, 56 query cache hits.
Query execution time:  0.071556 seconds
Script execution time:  0.096615 seconds
Total render time:  0.168171 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 94 column 11 - Warning: <form> isn't allowed in <table> elements
line 93 column 10 - Info: <table> previously mentioned
line 95 column 11 - Warning: missing <tr>
line 95 column 124 - Warning: missing </font> before </td>
line 99 column 16 - Warning: plain text isn't allowed in <tr> elements
line 95 column 11 - Info: <tr> previously mentioned
line 100 column 68 - Warning: <nobr> is not approved by W3C
line 100 column 68 - Warning: missing </nobr> before </td>
line 117 column 68 - Warning: <nobr> is not approved by W3C
line 117 column 68 - Warning: missing </nobr> before <tr>
line 141 column 35 - Warning: missing <tr>
line 141 column 50 - Warning: missing </font> before </td>
line 141 column 135 - Warning: missing </font> before </table>
line 143 column 35 - Warning: missing <tr>
line 143 column 98 - Warning: unescaped & or unknown entity "&page"
line 143 column 132 - Warning: unescaped & or unknown entity "&page"
line 143 column 166 - Warning: unescaped & or unknown entity "&page"
line 143 column 200 - Warning: unescaped & or unknown entity "&page"
line 143 column 234 - Warning: unescaped & or unknown entity "&page"
line 143 column 268 - Warning: unescaped & or unknown entity "&page"
line 143 column 302 - Warning: unescaped & or unknown entity "&page"
line 143 column 336 - Warning: unescaped & or unknown entity "&page"
line 143 column 370 - Warning: unescaped & or unknown entity "&page"
line 143 column 409 - Warning: unescaped & or unknown entity "&page"
line 143 column 445 - Warning: unescaped & or unknown entity "&page"
line 143 column 481 - Warning: unescaped & or unknown entity "&page"
line 143 column 517 - Warning: unescaped & or unknown entity "&page"
line 143 column 553 - Warning: unescaped & or unknown entity "&page"
line 143 column 589 - Warning: unescaped & or unknown entity "&page"
line 143 column 625 - Warning: unescaped & or unknown entity "&page"
line 143 column 661 - Warning: unescaped & or unknown entity "&page"
line 143 column 697 - Warning: unescaped & or unknown entity "&page"
line 143 column 733 - Warning: unescaped & or unknown entity "&page"
line 143 column 50 - Warning: missing </font> before </td>
line 143 column 770 - Warning: missing </font> before </table>
line 150 column 9 - Warning: <div> isn't allowed in <tr> elements
line 149 column 9 - Info: <tr> previously mentioned
line 152 column 9 - Warning: missing <tr>
line 166 column 13 - Warning: missing <tr>
line 167 column 27 - Warning: <nobr> is not approved by W3C
line 172 column 15 - Warning: missing <td>
line 173 column 9 - Warning: <div> isn't allowed in <tr> elements
line 172 column 15 - Info: <tr> previously mentioned
line 175 column 9 - Warning: missing <tr>
line 189 column 13 - Warning: missing <tr>
line 190 column 27 - Warning: <nobr> is not approved by W3C
line 209 column 15 - Warning: missing <td>
line 210 column 9 - Warning: <div> isn't allowed in <tr> elements
line 209 column 15 - Info: <tr> previously mentioned
line 212 column 9 - Warning: missing <tr>
line 226 column 13 - Warning: missing <tr>
line 227 column 27 - Warning: <nobr> is not approved by W3C
line 234 column 15 - Warning: missing <td>
line 235 column 9 - Warning: <div> isn't allowed in <tr> elements
line 234 column 15 - Info: <tr> previously mentioned
line 237 column 9 - Warning: missing <tr>
line 251 column 13 - Warning: missing <tr>
line 252 column 27 - Warning: <nobr> is not approved by W3C
line 258 column 15 - Warning: missing <td>
line 259 column 9 - Warning: <div> isn't allowed in <tr> elements
line 258 column 15 - Info: <tr> previously mentioned
line 261 column 9 - Warning: missing <tr>
line 275 column 13 - Warning: missing <tr>
line 276 column 27 - Warning: <nobr> is not approved by W3C
line 283 column 15 - Warning: missing <td>
line 284 column 9 - Warning: <div> isn't allowed in <tr> elements
line 283 column 15 - Info: <tr> previously mentioned
line 286 column 9 - Warning: missing <tr>
line 300 column 13 - Warning: missing <tr>
line 301 column 27 - Warning: <nobr> is not approved by W3C
line 376 column 15 - Warning: missing <td>
line 377 column 9 - Warning: <div> isn't allowed in <tr> elements
line 376 column 15 - Info: <tr> previously mentioned
line 379 column 9 - Warning: missing <tr>
line 393 column 13 - Warning: missing <tr>
line 394 column 27 - Warning: <nobr> is not approved by W3C
line 402 column 15 - Warning: missing <td>
line 403 column 9 - Warning: <div> isn't allowed in <tr> elements
line 402 column 15 - Info: <tr> previously mentioned
line 405 column 9 - Warning: missing <tr>
line 419 column 13 - Warning: missing <tr>
line 420 column 27 - Warning: <nobr> is not approved by W3C
line 431 column 15 - Warning: missing <td>
line 432 column 9 - Warning: <div> isn't allowed in <tr> elements
line 431 column 15 - Info: <tr> previously mentioned
line 434 column 9 - Warning: missing <tr>
line 448 column 13 - Warning: missing <tr>
line 449 column 27 - Warning: <nobr> is not approved by W3C
line 458 column 15 - Warning: missing <td>
line 459 column 9 - Warning: <div> isn't allowed in <tr> elements
line 458 column 15 - Info: <tr> previously mentioned
line 461 column 9 - Warning: missing <tr>
line 475 column 13 - Warning: missing <tr>
line 476 column 27 - Warning: <nobr> is not approved by W3C
line 482 column 15 - Warning: missing <td>
line 483 column 9 - Warning: <div> isn't allowed in <tr> elements
line 482 column 15 - Info: <tr> previously mentioned
line 485 column 9 - Warning: missing <tr>
line 499 column 13 - Warning: missing <tr>
line 500 column 27 - Warning: <nobr> is not approved by W3C
line 509 column 15 - Warning: missing <td>
line 510 column 9 - Warning: <div> isn't allowed in <tr> elements
line 509 column 15 - Info: <tr> previously mentioned
line 512 column 9 - Warning: missing <tr>
line 526 column 13 - Warning: missing <tr>
line 527 column 27 - Warning: <nobr> is not approved by W3C
line 533 column 15 - Warning: missing <td>
line 534 column 9 - Warning: <div> isn't allowed in <tr> elements
line 533 column 15 - Info: <tr> previously mentioned
line 536 column 9 - Warning: missing <tr>
line 550 column 13 - Warning: missing <tr>
line 551 column 27 - Warning: <nobr> is not approved by W3C
line 562 column 15 - Warning: missing <td>
line 563 column 9 - Warning: <div> isn't allowed in <tr> elements
line 562 column 15 - Info: <tr> previously mentioned
line 565 column 9 - Warning: missing <tr>
line 579 column 13 - Warning: missing <tr>
line 580 column 27 - Warning: <nobr> is not approved by W3C
line 585 column 15 - Warning: missing <td>
line 586 column 9 - Warning: <div> isn't allowed in <tr> elements
line 585 column 15 - Info: <tr> previously mentioned
line 588 column 9 - Warning: missing <tr>
line 602 column 13 - Warning: missing <tr>
line 603 column 27 - Warning: <nobr> is not approved by W3C
line 611 column 15 - Warning: missing <td>
line 612 column 9 - Warning: <div> isn't allowed in <tr> elements
line 611 column 15 - Info: <tr> previously mentioned
line 614 column 9 - Warning: missing <tr>
line 628 column 13 - Warning: missing <tr>
line 629 column 27 - Warning: <nobr> is not approved by W3C
line 636 column 15 - Warning: missing <td>
line 637 column 9 - Warning: <div> isn't allowed in <tr> elements
line 636 column 15 - Info: <tr> previously mentioned
line 639 column 9 - Warning: missing <tr>
line 653 column 13 - Warning: missing <tr>
line 654 column 27 - Warning: <nobr> is not approved by W3C
line 669 column 15 - Warning: missing <td>
line 670 column 9 - Warning: <div> isn't allowed in <tr> elements
line 669 column 15 - Info: <tr> previously mentioned
line 672 column 9 - Warning: missing <tr>
line 686 column 13 - Warning: missing <tr>
line 687 column 27 - Warning: <nobr> is not approved by W3C
line 691 column 15 - Warning: missing <td>
line 692 column 9 - Warning: <div> isn't allowed in <tr> elements
line 691 column 15 - Info: <tr> previously mentioned
line 694 column 9 - Warning: missing <tr>
line 708 column 13 - Warning: missing <tr>
line 709 column 27 - Warning: <nobr> is not approved by W3C
line 720 column 15 - Warning: missing <td>
line 721 column 9 - Warning: <div> isn't allowed in <tr> elements
line 720 column 15 - Info: <tr> previously mentioned
line 723 column 9 - Warning: missing <tr>
line 737 column 13 - Warning: missing <tr>
line 738 column 27 - Warning: <nobr> is not approved by W3C
line 745 column 17 - Warning: discarding unexpected <table>
line 748 column 35 - Warning: missing <tr>
line 748 column 98 - Warning: unescaped & or unknown entity "&page"
line 748 column 132 - Warning: unescaped & or unknown entity "&page"
line 748 column 166 - Warning: unescaped & or unknown entity "&page"
line 748 column 200 - Warning: unescaped & or unknown entity "&page"
line 748 column 234 - Warning: unescaped & or unknown entity "&page"
line 748 column 268 - Warning: unescaped & or unknown entity "&page"
line 748 column 302 - Warning: unescaped & or unknown entity "&page"
line 748 column 336 - Warning: unescaped & or unknown entity "&page"
line 748 column 370 - Warning: unescaped & or unknown entity "&page"
line 748 column 409 - Warning: unescaped & or unknown entity "&page"
line 748 column 445 - Warning: unescaped & or unknown entity "&page"
line 748 column 481 - Warning: unescaped & or unknown entity "&page"
line 748 column 517 - Warning: unescaped & or unknown entity "&page"
line 748 column 553 - Warning: unescaped & or unknown entity "&page"
line 748 column 589 - Warning: unescaped & or unknown entity "&page"
line 748 column 625 - Warning: unescaped & or unknown entity "&page"
line 748 column 661 - Warning: unescaped & or unknown entity "&page"
line 748 column 697 - Warning: unescaped & or unknown entity "&page"
line 748 column 733 - Warning: unescaped & or unknown entity "&page"
line 748 column 50 - Warning: missing </font> before </td>
line 748 column 770 - Warning: missing </font> before </table>
line 750 column 35 - Warning: missing <tr>
line 750 column 50 - Warning: missing </font> before </td>
line 750 column 135 - Warning: missing </font> before </table>
line 752 column 17 - Warning: discarding unexpected </textarea>
line 752 column 28 - Warning: discarding unexpected </form>
line 752 column 35 - Warning: discarding unexpected </embed>
line 752 column 43 - Warning: discarding unexpected </noembed>
line 752 column 53 - Warning: discarding unexpected </noscript>
line 752 column 64 - Warning: discarding unexpected </noembed>
line 752 column 74 - Warning: discarding unexpected </embed>
line 752 column 82 - Warning: discarding unexpected </table>
line 752 column 90 - Warning: discarding unexpected </table>
line 761 column 9 - Warning: missing </font> before <table>
line 777 column 69 - Warning: inserting implicit <font>
line 780 column 1 - Warning: inserting implicit <font>
line 789 column 23 - Warning: inserting implicit <font>
line 796 column 58 - Warning: discarding unexpected </font>
line 754 column 1 - Warning: missing </center>
line 91 column 9 - Warning: <img> lacks "alt" attribute
line 93 column 10 - Warning: <table> lacks "summary" attribute
line 95 column 63 - Warning: <img> lacks "alt" attribute
line 100 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 100 column 93 - Warning: <img> lacks "alt" attribute
line 117 column 19 - Warning: <td> attribute "width" has invalid value "120px"
line 117 column 98 - Warning: <img> lacks "alt" attribute
line 136 column 1 - Warning: <table> lacks "summary" attribute
line 136 column 240 - Warning: <td> attribute "bgcolor" lacks value
line 141 column 17 - Warning: <table> lacks "summary" attribute
line 143 column 17 - Warning: <table> lacks "summary" attribute
line 151 column 9 - Warning: <table> lacks "summary" attribute
line 155 column 22 - Warning: <img> lacks "alt" attribute
line 155 column 63 - Warning: <img> lacks "alt" attribute
line 155 column 111 - Warning: <img> lacks "alt" attribute
line 155 column 161 - Warning: <img> lacks "alt" attribute
line 156 column 11 - Warning: <img> lacks "alt" attribute
line 162 column 15 - Warning: <img> lacks "alt" attribute
line 165 column 11 - Warning: <table> lacks "summary" attribute
line 174 column 9 - Warning: <table> lacks "summary" attribute
line 178 column 22 - Warning: <img> lacks "alt" attribute
line 178 column 63 - Warning: <img> lacks "alt" attribute
line 178 column 111 - Warning: <img> lacks "alt" attribute
line 178 column 161 - Warning: <img> lacks "alt" attribute
line 179 column 11 - Warning: <img> lacks "alt" attribute
line 185 column 15 - Warning: <img> lacks "alt" attribute
line 188 column 11 - Warning: <table> lacks "summary" attribute
line 211 column 9 - Warning: <table> lacks "summary" attribute
line 215 column 22 - Warning: <img> lacks "alt" attribute
line 215 column 63 - Warning: <img> lacks "alt" attribute
line 215 column 111 - Warning: <img> lacks "alt" attribute
line 215 column 161 - Warning: <img> lacks "alt" attribute
line 216 column 11 - Warning: <img> lacks "alt" attribute
line 222 column 15 - Warning: <img> lacks "alt" attribute
line 225 column 11 - Warning: <table> lacks "summary" attribute
line 236 column 9 - Warning: <table> lacks "summary" attribute
line 240 column 22 - Warning: <img> lacks "alt" attribute
line 240 column 63 - Warning: <img> lacks "alt" attribute
line 240 column 111 - Warning: <img> lacks "alt" attribute
line 240 column 161 - Warning: <img> lacks "alt" attribute
line 241 column 11 - Warning: <img> lacks "alt" attribute
line 247 column 15 - Warning: <img> lacks "alt" attribute
line 250 column 11 - Warning: <table> lacks "summary" attribute
line 260 column 9 - Warning: <table> lacks "summary" attribute
line 264 column 22 - Warning: <img> lacks "alt" attribute
line 264 column 63 - Warning: <img> lacks "alt" attribute
line 264 column 111 - Warning: <img> lacks "alt" attribute
line 264 column 161 - Warning: <img> lacks "alt" attribute
line 265 column 11 - Warning: <img> lacks "alt" attribute
line 271 column 15 - Warning: <img> lacks "alt" attribute
line 274 column 11 - Warning: <table> lacks "summary" attribute
line 285 column 9 - Warning: <table> lacks "summary" attribute
line 289 column 22 - Warning: <img> lacks "alt" attribute
line 289 column 63 - Warning: <img> lacks "alt" attribute
line 289 column 111 - Warning: <img> lacks "alt" attribute
line 289 column 161 - Warning: <img> lacks "alt" attribute
line 290 column 11 - Warning: <img> lacks "alt" attribute
line 296 column 15 - Warning: <img> lacks "alt" attribute
line 299 column 11 - Warning: <table> lacks "summary" attribute
line 378 column 9 - Warning: <table> lacks "summary" attribute
line 382 column 22 - Warning: <img> lacks "alt" attribute
line 382 column 63 - Warning: <img> lacks "alt" attribute
line 382 column 111 - Warning: <img> lacks "alt" attribute
line 382 column 161 - Warning: <img> lacks "alt" attribute
line 383 column 11 - Warning: <img> lacks "alt" attribute
line 389 column 15 - Warning: <img> lacks "alt" attribute
line 392 column 11 - Warning: <table> lacks "summary" attribute
line 404 column 9 - Warning: <table> lacks "summary" attribute
line 408 column 22 - Warning: <img> lacks "alt" attribute
line 408 column 63 - Warning: <img> lacks "alt" attribute
line 408 column 111 - Warning: <img> lacks "alt" attribute
line 408 column 161 - Warning: <img> lacks "alt" attribute
line 409 column 11 - Warning: <img> lacks "alt" attribute
line 415 column 15 - Warning: <img> lacks "alt" attribute
line 418 column 11 - Warning: <table> lacks "summary" attribute
line 428 column 678 - Warning: <img> proprietary attribute value "absmiddle"
line 428 column 678 - Warning: <img> lacks "alt" attribute
line 429 column 784 - Warning: <img> proprietary attribute value "absmiddle"
line 429 column 784 - Warning: <img> lacks "alt" attribute
line 433 column 9 - Warning: <table> lacks "summary" attribute
line 437 column 22 - Warning: <img> lacks "alt" attribute
line 437 column 63 - Warning: <img> lacks "alt" attribute
line 437 column 111 - Warning: <img> lacks "alt" attribute
line 437 column 161 - Warning: <img> lacks "alt" attribute
line 438 column 11 - Warning: <img> lacks "alt" attribute
line 444 column 15 - Warning: <img> lacks "alt" attribute
line 447 column 11 - Warning: <table> lacks "summary" attribute
line 460 column 9 - Warning: <table> lacks "summary" attribute
line 464 column 22 - Warning: <img> lacks "alt" attribute
line 464 column 63 - Warning: <img> lacks "alt" attribute
line 464 column 111 - Warning: <img> lacks "alt" attribute
line 464 column 161 - Warning: <img> lacks "alt" attribute
line 465 column 11 - Warning: <img> lacks "alt" attribute
line 471 column 15 - Warning: <img> lacks "alt" attribute
line 474 column 11 - Warning: <table> lacks "summary" attribute
line 480 column 259 - Warning: <img> proprietary attribute value "absmiddle"
line 480 column 259 - Warning: <img> lacks "alt" attribute
line 484 column 9 - Warning: <table> lacks "summary" attribute
line 488 column 22 - Warning: <img> lacks "alt" attribute
line 488 column 63 - Warning: <img> lacks "alt" attribute
line 488 column 111 - Warning: <img> lacks "alt" attribute
line 488 column 161 - Warning: <img> lacks "alt" attribute
line 489 column 11 - Warning: <img> lacks "alt" attribute
line 495 column 15 - Warning: <img> lacks "alt" attribute
line 498 column 11 - Warning: <table> lacks "summary" attribute
line 511 column 9 - Warning: <table> lacks "summary" attribute
line 515 column 22 - Warning: <img> lacks "alt" attribute
line 515 column 63 - Warning: <img> lacks "alt" attribute
line 515 column 111 - Warning: <img> lacks "alt" attribute
line 515 column 161 - Warning: <img> lacks "alt" attribute
line 516 column 11 - Warning: <img> lacks "alt" attribute
line 522 column 15 - Warning: <img> lacks "alt" attribute
line 525 column 11 - Warning: <table> lacks "summary" attribute
line 531 column 311 - Warning: <img> proprietary attribute value "absmiddle"
line 531 column 311 - Warning: <img> lacks "alt" attribute
line 535 column 9 - Warning: <table> lacks "summary" attribute
line 539 column 22 - Warning: <img> lacks "alt" attribute
line 539 column 63 - Warning: <img> lacks "alt" attribute
line 539 column 111 - Warning: <img> lacks "alt" attribute
line 539 column 161 - Warning: <img> lacks "alt" attribute
line 540 column 11 - Warning: <img> lacks "alt" attribute
line 546 column 15 - Warning: <img> lacks "alt" attribute
line 549 column 11 - Warning: <table> lacks "summary" attribute
line 564 column 9 - Warning: <table> lacks "summary" attribute
line 568 column 22 - Warning: <img> lacks "alt" attribute
line 568 column 63 - Warning: <img> lacks "alt" attribute
line 568 column 111 - Warning: <img> lacks "alt" attribute
line 568 column 161 - Warning: <img> lacks "alt" attribute
line 569 column 11 - Warning: <img> lacks "alt" attribute
line 575 column 15 - Warning: <img> lacks "alt" attribute
line 578 column 11 - Warning: <table> lacks "summary" attribute
line 587 column 9 - Warning: <table> lacks "summary" attribute
line 591 column 22 - Warning: <img> lacks "alt" attribute
line 591 column 63 - Warning: <img> lacks "alt" attribute
line 591 column 111 - Warning: <img> lacks "alt" attribute
line 591 column 161 - Warning: <img> lacks "alt" attribute
line 592 column 11 - Warning: <img> lacks "alt" attribute
line 598 column 15 - Warning: <img> lacks "alt" attribute
line 601 column 11 - Warning: <table> lacks "summary" attribute
line 613 column 9 - Warning: <table> lacks "summary" attribute
line 617 column 22 - Warning: <img> lacks "alt" attribute
line 617 column 63 - Warning: <img> lacks "alt" attribute
line 617 column 111 - Warning: <img> lacks "alt" attribute
line 617 column 161 - Warning: <img> lacks "alt" attribute
line 618 column 11 - Warning: <img> lacks "alt" attribute
line 624 column 15 - Warning: <img> lacks "alt" attribute
line 627 column 11 - Warning: <table> lacks "summary" attribute
line 638 column 9 - Warning: <table> lacks "summary" attribute
line 642 column 22 - Warning: <img> lacks "alt" attribute
line 642 column 63 - Warning: <img> lacks "alt" attribute
line 642 column 111 - Warning: <img> lacks "alt" attribute
line 642 column 161 - Warning: <img> lacks "alt" attribute
line 643 column 11 - Warning: <img> lacks "alt" attribute
line 649 column 15 - Warning: <img> lacks "alt" attribute
line 652 column 11 - Warning: <table> lacks "summary" attribute
line 660 column 264 - Warning: <img> proprietary attribute value "absmiddle"
line 660 column 264 - Warning: <img> lacks "alt" attribute
line 662 column 401 - Warning: <img> lacks "alt" attribute
line 671 column 9 - Warning: <table> lacks "summary" attribute
line 675 column 22 - Warning: <img> lacks "alt" attribute
line 675 column 63 - Warning: <img> lacks "alt" attribute
line 675 column 111 - Warning: <img> lacks "alt" attribute
line 675 column 161 - Warning: <img> lacks "alt" attribute
line 676 column 11 - Warning: <img> lacks "alt" attribute
line 682 column 15 - Warning: <img> lacks "alt" attribute
line 685 column 11 - Warning: <table> lacks "summary" attribute
line 693 column 9 - Warning: <table> lacks "summary" attribute
line 697 column 22 - Warning: <img> lacks "alt" attribute
line 697 column 63 - Warning: <img> lacks "alt" attribute
line 697 column 111 - Warning: <img> lacks "alt" attribute
line 697 column 161 - Warning: <img> lacks "alt" attribute
line 698 column 11 - Warning: <img> lacks "alt" attribute
line 704 column 15 - Warning: <img> lacks "alt" attribute
line 707 column 11 - Warning: <table> lacks "summary" attribute
line 712 column 258 - Warning: <img> proprietary attribute value "absmiddle"
line 712 column 258 - Warning: <img> lacks "alt" attribute
line 722 column 9 - Warning: <table> lacks "summary" attribute
line 726 column 22 - Warning: <img> lacks "alt" attribute
line 726 column 63 - Warning: <img> lacks "alt" attribute
line 726 column 111 - Warning: <img> lacks "alt" attribute
line 726 column 161 - Warning: <img> lacks "alt" attribute
line 727 column 11 - Warning: <img> lacks "alt" attribute
line 733 column 15 - Warning: <img> lacks "alt" attribute
line 736 column 11 - Warning: <table> lacks "summary" attribute
line 146 column 17 - Warning: <table> lacks "summary" attribute
line 748 column 17 - Warning: <table> lacks "summary" attribute
line 750 column 17 - Warning: <table> lacks "summary" attribute
line 756 column 1 - Warning: <img> lacks "alt" attribute
line 757 column 1 - Warning: <img> lacks "alt" attribute
line 758 column 1 - Warning: <img> lacks "alt" attribute
line 765 column 9 - Warning: <table> lacks "summary" attribute
line 767 column 25 - Warning: <img> lacks "alt" attribute
line 797 column 17 - Warning: <table> lacks "summary" attribute
line 141 column 135 - Warning: trimming empty <font>
line 143 column 770 - Warning: trimming empty <font>
line 720 column 15 - Warning: trimming empty <tr>
line 748 column 770 - Warning: trimming empty <font>
line 750 column 135 - Warning: trimming empty <font>
line 153 column 11 - Warning: <a> cannot copy name attribute to id
line 176 column 11 - Warning: <a> cannot copy name attribute to id
line 213 column 11 - Warning: <a> cannot copy name attribute to id
line 238 column 11 - Warning: <a> cannot copy name attribute to id
line 262 column 11 - Warning: <a> cannot copy name attribute to id
line 287 column 11 - Warning: <a> cannot copy name attribute to id
line 380 column 11 - Warning: <a> cannot copy name attribute to id
line 406 column 11 - Warning: <a> cannot copy name attribute to id
line 435 column 11 - Warning: <a> cannot copy name attribute to id
line 462 column 11 - Warning: <a> cannot copy name attribute to id
line 486 column 11 - Warning: <a> cannot copy name attribute to id
line 513 column 11 - Warning: <a> cannot copy name attribute to id
line 537 column 11 - Warning: <a> cannot copy name attribute to id
line 566 column 11 - Warning: <a> cannot copy name attribute to id
line 589 column 11 - Warning: <a> cannot copy name attribute to id
line 615 column 11 - Warning: <a> cannot copy name attribute to id
line 640 column 11 - Warning: <a> cannot copy name attribute to id
line 673 column 11 - Warning: <a> cannot copy name attribute to id
line 695 column 11 - Warning: <a> cannot copy name attribute to id
line 724 column 11 - Warning: <a> cannot copy name attribute to id
Info: Document content looks like HTML Proprietary
Info: No system identifier in emitted doctype
392 warnings, 0 errors were found!


The table summary attribute should be used to describe
the table structure. It is very helpful for people using
non-visual browsers. The scope and headers attributes for
table cells are useful for specifying which headers apply
to each table cell, enabling non-visual browsers to provide
a meaningful context for each cell.

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 may also want to try
"http://www.cast.org/bobby/" which is a free Web-based
service for checking URLs for accessibility.

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.

To learn more about HTML Tidy see http://tidy.sourceforge.net
Please fill bug reports and queries using the "tracker" on the Tidy web site.
Additionally, questions can be sent to html-tidy@w3.org
HTML and CSS specifications are available from http://www.w3.org/
Lobby your company to join W3C, see http://www.w3.org/Consortium