Register - Login
Views: 99397340
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-24-22 01:47:06 PM
Jul - General Game/ROM Hacking - Super Monkey Ball hacking! New poll - New thread - New reply
Pages: 1 2 Next newer thread | Next older thread
PatSter21

Level: 18


Posts: 61/61
EXP: 28468
For next: 1429

Since: 07-14-12

From: California, US

Since last post: 7.7 years
Last activity: 2.7 years

Posted on 07-31-14 09:39:21 PM Link | Quote
Thank you for this tool.

This will help me view certain levels in Super Monkey Ball 2 which cannot be viewed in-game (crash the game).
Yoshimaster96

Shyguy
Level: 21


Posts: 39/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 08-06-14 10:50:35 PM Link | Quote
Originally posted by PatSter21
Thank you for this tool.

This will help me view certain levels in Super Monkey Ball 2 which cannot be viewed in-game (crash the game).
Glad i could help. Currently adding tpl support for my viewer (soon to be editor).

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
Yoshimaster96

Shyguy
Level: 21


Posts: 40/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 10-02-14 12:04:24 PM Link | Quote
Tried:

-1
-1
1
1

-1
0
-1
0
1
0
-1
-1
1
-1
1
1
-1
0
1
-1

and got:

(-1,0,-1),(0,0,0),(-2,0,0).

Also, replacing -1,-1,1,1 with -2,-2,2,2 gives me the same results.

[EDIT]

-0,-0,0,0 resulted in no triangle, and -90,-90,90,90 moved it a bit. I presume -1,-1,1,1 is base position, and -2,-2,2,2 moved it just so I didn't notice it.

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
Yoshimaster96

Shyguy
Level: 21


Posts: 44/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 10-05-14 12:45:00 PM Link | Quote
My thoughts on the collision:
The first 3 values match the first coordinate, and the next 3 values match a normal. Since we have a point and a normal, we have a plane. Thus, the next two points need only have 2 coordinates. How to derive these points, I have no idea.

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
Yoshimaster96

Shyguy
Level: 21


Posts: 56/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 11-09-14 10:42:34 PM Link | Quote
LZ file tutorial:

You'll need a SMB1 ISO and this program:
http://gamehacking.org/downloads/LZSCDec.7z

Extract an lz file.
To decompress, delete the first 4 bytes with a hex editor (or any 4 bytes of the first 8 bytes), then decompress with the program.
To compress, compress with the program, then edit the first 4 bytes to 8 bytes:
CC CC CC CC UU UU UU UU
C: Total compressed size (including these 8 bytes)
U: Uncompressed size
These values are in little endian.

For levels:
File header (0xA0 bytes):

## ## ## ## - ??? (Usually 00 00 00 01)
## ## ## ## - ??? (Usually 00 00 00 64)
## ## ## ## - COLLISION
## ## ## ## - OFFSET 1
00 00 00 A0 ## ## ## ## - ALWAYS
## ## ## ## - NO. GOALS???
## ## ## ## - OFFSET 2
## ## ## ## - NO. GOALS???
00 00 00 00 - ALWAYS
## ## ## ## - BUMPERS
## ## ## ## - OFFSET 3
## ## ## ## - NO. JAMABARS (SEE AD14 AND AD25)
## ## ## ## - OFFSET
## ## ## ## - BANANAS
## ## ## ## - OFFSET 4
00 00 00 00 00 00 00 00 - ALWAYS
00 00 00 00 00 00 00 00 - ALWAYS
## ## ## ## - NO. SOMETHING
## ## ## ## - OFFSET 5
## ## ## ## - LEVEL MODELS
## ## ## ## - OFFSET 6
00 00 00 00 00 00 00 00 - ALWAYS
## ## ## ## - MODELS
## ## ## ## - OFFSET 7
## ## ## ## - NO. SOMETHING
## ## ## ## - OFFSET
## ## ## ## ## ## ## ## - ???
## ## ## ## - REFLECTION FLAG?
## ## ## ## - OFFSET 8
00 00 00 00 00 00 00 00 - ALWAYS
00 00 00 00 00 00 00 00 - ALWAYS
00 00 00 00 00 00 00 00 - ALWAYS



GOAL FORMAT:
XX XX XX XX - X POSITION (FLOAT)
YY YY YY YY - Y POSITION (FLOAT)
ZZ ZZ ZZ ZZ - Z POSITION (FLOAT)
XX XX - X ROTATION (INT, FULL RANGE IS 360 DEGREES)
YY YY - Y ROTATION (INT, FULL RANGE IS 360 DEGREES)
ZZ ZZ - Z ROTATION (INT, FULL RANGE IS 360 DEGREES)
CC CC - GOAL COLOR (0042 IS BLUE, 0047 IS GREEN, 0052 IS RED)

JAMABAR FORMAT:
XX XX XX XX - X POSITION (FLOAT)
YY YY YY YY - Y POSITION (FLOAT)
ZZ ZZ ZZ ZZ - Z POSITION (FLOAT)
XX XX - X ROTATION (INT, FULL RANGE IS 360 DEGREES)
YY YY - Y ROTATION (INT, FULL RANGE IS 360 DEGREES)
ZZ ZZ - Z ROTATION (INT, FULL RANGE IS 360 DEGREES)
00 00 - ALWAYS 0

BUMPER FORMAT:
XX XX XX XX - X POSITION (FLOAT)
YY YY YY YY - Y POSITION (FLOAT)
ZZ ZZ ZZ ZZ - Z POSITION (FLOAT)
XX XX - X ROTATION (INT, FULL RANGE IS 360 DEGREES)
YY YY - Y ROTATION (INT, FULL RANGE IS 360 DEGREES)
ZZ ZZ - Z ROTATION (INT, FULL RANGE IS 360 DEGREES)
00 00 - ALWAYS 0
XX XX XX XX - X SCALE (FLOAT)
YY YY YY YY - Y SCALE (FLOAT)
ZZ ZZ ZZ ZZ - Z SCALE (FLOAT)

BANANA FORMAT:
XX XX XX XX - X POSITION (FLOAT)
YY YY YY YY - Y POSITION (FLOAT)
ZZ ZZ ZZ ZZ - Z POSITION (FLOAT)
TT TT TT TT - TYPE OF BANANA (00000000 SINGLE, 00000001 BUNCH)

MODEL FORMAT:
UNKNOWN, SEEMS TO BE SOME KIND OF TREE/HIERARCHY

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
MainMemory
Member
Level: 13


Posts: 22/28
EXP: 8844
For next: 1423

Since: 07-22-12


Since last post: 6.3 years
Last activity: 4.9 years

Posted on 11-12-14 05:04:17 PM Link | Quote
Is the model format one of the NINJA formats, or a variant thereof?
Yoshimaster96

Shyguy
Level: 21


Posts: 57/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 11-12-14 09:29:04 PM Link | Quote
Not even close to the NINJA format. I documented it here, however:
http://bin.smwcentral.net/u/21732/GMATPL_V2.txt
I also coded an OBJ/MTL to GMA/TPL converter:
bin.smwcentral.net/u/21732/objmtl2gmatpl.zip
The converter only accepts non-indexed (palette-less) PNGs with 8 bits per color channel (Gray, RGB, Gray-Alpha and RGBA are supported.). For now, due to a bug, only one texture per model.

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
MainMemory
Member
Level: 13


Posts: 23/28
EXP: 8844
For next: 1423

Since: 07-22-12


Since last post: 6.3 years
Last activity: 4.9 years

Posted on 11-13-14 01:57:29 AM Link | Quote
You just said in the last post that the format was unknown though?
Yoshimaster96

Shyguy
Level: 21


Posts: 58/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 11-13-14 11:05:13 AM Link | Quote
That was for the arcade version. This is the Gamecube version.

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
Yoshimaster96

Shyguy
Level: 21


Posts: 59/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 11-15-14 10:04:40 PM Link | Quote
YAY! I FINALLY CRACKED THE COLLISION !!!1!!11!!11one
But it's so glitchy that the ball falls through the floor at random places

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!


-Yoshimaster96
Yoshimaster96

Shyguy
Level: 21


Posts: 68/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 12-22-14 08:25:01 PM Link | Quote
For some unknown reason, the collision doesn't work as expected. I will edit this with a YouTube video when fixed.

I also put a new message in my layout!

____________________
Yoshimaster96

Shyguy
Level: 21


Posts: 91/91
EXP: 47162
For next: 2781

Since: 03-25-14


Since last post: 5.9 years
Last activity: 194 days

Posted on 06-11-16 06:50:22 PM Link | Quote
I'M BACK!

Cool converter you should TOTALLY check out!

(I know, total necropost)

____________________


My Youtube Channel:
Yoshimaster96smwc
Super Monkey Ball hacking!

Come visit my forum! Link

-Yoshimaster96
Pages: 1 2 Next newer thread | Next older thread
Jul - General Game/ROM Hacking - Super Monkey Ball hacking! New poll - New thread - New reply


Rusted Logic

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

30 database queries, 9 query cache hits.
Query execution time:  0.081870 seconds
Script execution time:  0.019762 seconds
Total render time:  0.101632 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 199 - 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 50 - Warning: missing </font> before </td>
line 149 column 132 - 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 184 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 186 column 9 - Warning: missing <tr>
line 204 column 13 - Warning: missing <tr>
line 205 column 102 - Warning: unescaped & or unknown entity "&postid"
line 209 column 633 - Warning: <div> missing '>' for end of tag
line 219 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 221 column 9 - Warning: missing <tr>
line 239 column 13 - Warning: missing <tr>
line 240 column 102 - Warning: unescaped & or unknown entity "&postid"
line 274 column 743 - Warning: <div> missing '>' for end of tag
line 284 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 286 column 9 - Warning: missing <tr>
line 304 column 13 - Warning: missing <tr>
line 305 column 102 - Warning: unescaped & or unknown entity "&postid"
line 308 column 585 - Warning: <div> missing '>' for end of tag
line 318 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 320 column 9 - Warning: missing <tr>
line 338 column 13 - Warning: missing <tr>
line 339 column 102 - Warning: unescaped & or unknown entity "&postid"
line 429 column 3275 - Warning: <div> missing '>' for end of tag
line 439 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 441 column 9 - Warning: missing <tr>
line 459 column 13 - Warning: missing <tr>
line 460 column 102 - Warning: unescaped & or unknown entity "&postid"
line 465 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 467 column 9 - Warning: missing <tr>
line 485 column 13 - Warning: missing <tr>
line 486 column 102 - Warning: unescaped & or unknown entity "&postid"
line 492 column 721 - Warning: <div> missing '>' for end of tag
line 502 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 504 column 9 - Warning: missing <tr>
line 522 column 13 - Warning: missing <tr>
line 523 column 102 - Warning: unescaped & or unknown entity "&postid"
line 528 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 530 column 9 - Warning: missing <tr>
line 548 column 13 - Warning: missing <tr>
line 549 column 102 - Warning: unescaped & or unknown entity "&postid"
line 551 column 377 - Warning: <div> missing '>' for end of tag
line 561 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 563 column 9 - Warning: missing <tr>
line 581 column 13 - Warning: missing <tr>
line 582 column 102 - Warning: unescaped & or unknown entity "&postid"
line 585 column 495 - Warning: <div> missing '>' for end of tag
line 595 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 597 column 9 - Warning: missing <tr>
line 615 column 13 - Warning: missing <tr>
line 616 column 102 - Warning: unescaped & or unknown entity "&postid"
line 620 column 475 - Warning: <div> missing '>' for end of tag
line 631 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 633 column 9 - Warning: missing <tr>
line 651 column 13 - Warning: missing <tr>
line 652 column 102 - Warning: unescaped & or unknown entity "&postid"
line 658 column 473 - Warning: <div> missing '>' for end of tag
line 669 column 17 - Warning: missing <tr>
line 669 column 17 - Warning: discarding unexpected <table>
line 672 column 35 - Warning: missing <tr>
line 672 column 95 - Warning: unescaped & or unknown entity "&page"
line 672 column 50 - Warning: missing </font> before </td>
line 672 column 132 - Warning: missing </font> before </table>
line 674 column 35 - Warning: missing <tr>
line 674 column 50 - Warning: missing </font> before </td>
line 675 column 37 - Warning: unescaped & or unknown entity "&id"
line 674 column 199 - Warning: missing </font> before </table>
line 676 column 17 - Warning: discarding unexpected </textarea>
line 676 column 28 - Warning: discarding unexpected </form>
line 676 column 35 - Warning: discarding unexpected </embed>
line 676 column 43 - Warning: discarding unexpected </noembed>
line 676 column 53 - Warning: discarding unexpected </noscript>
line 676 column 64 - Warning: discarding unexpected </noembed>
line 676 column 74 - Warning: discarding unexpected </embed>
line 676 column 82 - Warning: discarding unexpected </table>
line 676 column 90 - Warning: discarding unexpected </table>
line 678 column 9 - Warning: missing </font> before <table>
line 690 column 25 - Warning: discarding unexpected </font>
line 699 column 57 - Warning: discarding unexpected </font>
line 677 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 160 column 11 - Warning: <img> lacks "alt" attribute
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 188 column 11 - Warning: <img> lacks "alt" attribute
line 189 column 22 - Warning: <img> lacks "alt" attribute
line 189 column 63 - Warning: <img> lacks "alt" attribute
line 189 column 112 - Warning: <img> lacks "alt" attribute
line 189 column 162 - Warning: <img> lacks "alt" attribute
line 190 column 11 - Warning: <img> lacks "alt" attribute
line 200 column 15 - Warning: <img> lacks "alt" attribute
line 223 column 11 - Warning: <img> lacks "alt" attribute
line 224 column 22 - Warning: <img> lacks "alt" attribute
line 224 column 63 - Warning: <img> lacks "alt" attribute
line 224 column 112 - Warning: <img> lacks "alt" attribute
line 224 column 162 - Warning: <img> lacks "alt" attribute
line 225 column 11 - Warning: <img> lacks "alt" attribute
line 235 column 15 - Warning: <img> lacks "alt" attribute
line 288 column 11 - Warning: <img> lacks "alt" attribute
line 289 column 22 - Warning: <img> lacks "alt" attribute
line 289 column 63 - Warning: <img> lacks "alt" attribute
line 289 column 112 - Warning: <img> lacks "alt" attribute
line 289 column 162 - Warning: <img> lacks "alt" attribute
line 290 column 11 - Warning: <img> lacks "alt" attribute
line 300 column 15 - Warning: <img> lacks "alt" attribute
line 322 column 11 - Warning: <img> lacks "alt" attribute
line 323 column 22 - Warning: <img> lacks "alt" attribute
line 323 column 63 - Warning: <img> lacks "alt" attribute
line 323 column 112 - Warning: <img> lacks "alt" attribute
line 323 column 162 - Warning: <img> lacks "alt" attribute
line 324 column 11 - Warning: <img> lacks "alt" attribute
line 334 column 15 - Warning: <img> lacks "alt" attribute
line 444 column 22 - Warning: <img> lacks "alt" attribute
line 444 column 63 - Warning: <img> lacks "alt" attribute
line 444 column 112 - Warning: <img> lacks "alt" attribute
line 444 column 162 - Warning: <img> lacks "alt" attribute
line 445 column 11 - Warning: <img> lacks "alt" attribute
line 455 column 15 - Warning: <img> lacks "alt" attribute
line 469 column 11 - Warning: <img> lacks "alt" attribute
line 470 column 22 - Warning: <img> lacks "alt" attribute
line 470 column 63 - Warning: <img> lacks "alt" attribute
line 470 column 112 - Warning: <img> lacks "alt" attribute
line 470 column 162 - Warning: <img> lacks "alt" attribute
line 471 column 11 - Warning: <img> lacks "alt" attribute
line 481 column 15 - Warning: <img> lacks "alt" attribute
line 507 column 22 - Warning: <img> lacks "alt" attribute
line 507 column 63 - Warning: <img> lacks "alt" attribute
line 507 column 112 - Warning: <img> lacks "alt" attribute
line 507 column 162 - Warning: <img> lacks "alt" attribute
line 508 column 11 - Warning: <img> lacks "alt" attribute
line 518 column 15 - Warning: <img> lacks "alt" attribute
line 532 column 11 - Warning: <img> lacks "alt" attribute
line 533 column 22 - Warning: <img> lacks "alt" attribute
line 533 column 63 - Warning: <img> lacks "alt" attribute
line 533 column 112 - Warning: <img> lacks "alt" attribute
line 533 column 162 - Warning: <img> lacks "alt" attribute
line 534 column 11 - Warning: <img> lacks "alt" attribute
line 544 column 15 - Warning: <img> lacks "alt" attribute
line 565 column 11 - Warning: <img> lacks "alt" attribute
line 566 column 22 - Warning: <img> lacks "alt" attribute
line 566 column 63 - Warning: <img> lacks "alt" attribute
line 566 column 112 - Warning: <img> lacks "alt" attribute
line 566 column 162 - Warning: <img> lacks "alt" attribute
line 567 column 11 - Warning: <img> lacks "alt" attribute
line 577 column 15 - Warning: <img> lacks "alt" attribute
line 585 column 408 - Warning: <img> proprietary attribute value "absmiddle"
line 585 column 408 - Warning: <img> lacks "alt" attribute
line 599 column 11 - Warning: <img> lacks "alt" attribute
line 600 column 22 - Warning: <img> lacks "alt" attribute
line 600 column 63 - Warning: <img> lacks "alt" attribute
line 600 column 112 - Warning: <img> lacks "alt" attribute
line 600 column 162 - Warning: <img> lacks "alt" attribute
line 601 column 11 - Warning: <img> lacks "alt" attribute
line 611 column 15 - Warning: <img> lacks "alt" attribute
line 635 column 11 - Warning: <img> lacks "alt" attribute
line 636 column 22 - Warning: <img> lacks "alt" attribute
line 636 column 63 - Warning: <img> lacks "alt" attribute
line 636 column 112 - Warning: <img> lacks "alt" attribute
line 636 column 162 - Warning: <img> lacks "alt" attribute
line 637 column 11 - Warning: <img> lacks "alt" attribute
line 647 column 15 - Warning: <img> lacks "alt" attribute
line 675 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 675 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 675 column 246 - Warning: <img> proprietary attribute value "absmiddle"
line 684 column 25 - Warning: <img> lacks "alt" attribute
line 689 column 267 - Warning: <img> lacks "alt" attribute
line 669 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 205 column 27 - Warning: <nobr> is not approved by W3C
line 240 column 27 - Warning: <nobr> is not approved by W3C
line 305 column 27 - Warning: <nobr> is not approved by W3C
line 339 column 27 - Warning: <nobr> is not approved by W3C
line 460 column 27 - Warning: <nobr> is not approved by W3C
line 486 column 27 - Warning: <nobr> is not approved by W3C
line 523 column 27 - Warning: <nobr> is not approved by W3C
line 549 column 27 - Warning: <nobr> is not approved by W3C
line 582 column 27 - Warning: <nobr> is not approved by W3C
line 616 column 27 - Warning: <nobr> is not approved by W3C
line 652 column 27 - Warning: <nobr> is not approved by W3C
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 208 warnings and 0 errors!


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