Register - Login
Views: 99380400
Main - Memberlist - Active users - Calendar - Wiki - IRC Chat - Online users
Ranks - Rules/FAQ - Stats - Latest Posts - Color Chart - Smilies
04-23-22 11:25:44 PM
Jul - SM64 Hacking (Archive) - FlatWorld Battlefield, Take Two (New flat empty level template! TT64 v0.5.98b!) New poll - New thread - New reply
Pages: 1 2 3 Next newer thread | Next older thread
VL-Tone
Member
Super Mario 64 forum moderator
Level: 53


Posts: 197/621
EXP: 1135505
For next: 21614

Since: 07-27-07

From: Montreal, Canada

Since last post: 4.7 years
Last activity: 1.2 years

Posted on 04-04-08 12:50:42 AM Link | Quote
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42
I wish I could help you more, but I don't have much time (well I'm tired because of my job). Maybe this weekend I'll try to give you a hand.

In the mean time, keep on experimenting!

____________________
messiaen
Catgirl
Level: 68


Posts: 17/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-04-08 12:38:46 PM (last edited by messiaen at 04-04-08 11:44 AM) Link | Quote
Well, don't worry about it, there are still lots of things I can experiment with and learn from the documentation.

However, could you or someone else confirm the possible FlatWorld 0x21 and 0x22 command listing bug I ran into? [I describe it in the first half of my last post]

--

Edit: Hey, look at this, I was just 2 bytes far from getting TT64 to show my model! I went back to my old ROM which had custom Geo Layout for the Platform [the one I uploaded the Hex Data], and my silly error was that I forgot to change the first 0x80 command, which OF COURSE must point to the same entry point as the 0x10 jump command.

80 08 00 00 0E 00 01 70 <------- Special command only used by TT64 to skip to Object Layout (Important)

My commands gets listed as 0x22 Number 075 , "Unknown". However, I still think there is something wrong with the listing, as there aren't 75 0x22 commands in the FlatWorld level.



Ops, I have to set my platform vertexes Y values to 0, otherwise I'll get 0x24 Y + vertex Y = double trouble in setting object positions . This now uses a 0x22 Geo Layout pointer.

HOWEVER, now that my 0x22 model shows in TT64, it won't show up in the game!!!

---

Looking at "Tall Tall Mountain", I realised that many static platforms are in fact 0x43 objects, so maybe this command would be more appropiate for my current purposes. However, this is still undocumented in Mario Hacking Doc 1.5. For now, I'll see what behaviours these 0x43 platforms use and see if they fit on my 0x21 working platform (0x22 doesn't show up yet in the game).

Ops, too bad, they use Static & Not solid behaviour, which looks almost like a "null" script but however it does accomplish something in my platform: it crashes the game whenever you walk near it, as most behaviours.
VL-Tone
Member
Super Mario 64 forum moderator
Level: 53


Posts: 198/621
EXP: 1135505
For next: 21614

Since: 07-27-07

From: Montreal, Canada

Since last post: 4.7 years
Last activity: 1.2 years

Posted on 04-05-08 03:54:50 PM (last edited by VL-Tone at 04-05-08 01:04 PM) Link | Quote
Time: Now - Date: Today - Weather: What can be seen outside. - Mood: How it feels. Answer to the universe: 42

My commands gets listed as 0x22 Number 075 , "Unknown". However, I still think there is something wrong with the listing, as there aren't 75 0x22 commands in the FlatWorld level.


The first forty-three 0x22 commands, up to "Cartoon Star" are part of Mario's geometry layout bank, which is loaded elsewhere, before the level script is read. If you look at the "ROM Address" field when you select one of these 0x22 command, you'll see that they're somewhere in the first 8 MB of the ROM, in the "unextended" part.

As for the objects not appearing in the game, maybe they're just invisible for some reason? Did you check if you can collide with them?

0x43 commands are essentially like "compressed" 0x24 commands. They use predefined model IDs and behaviors, and can only be rotated around the y axis. The only difference with 0x24 is that they are more limited. You couldn't use a custom behavior pointer with them unless you edit the predefined list which is at a place where modifications requires a checksum recalculation. You wouldn't gain anything in using 0x43 command except for a few bytes of space. They're often used for static platforms because these are all using the same behavior so they saved space by using only one byte to identify the model + behavior instead of 6.

The crashes you're experiencing might be related to the geometry layout that you're using. Maybe it wasn't such a good suggestion to use the level geometry layout as a basis, because it probably contains special commands that are specific to level terrain geometry. What you should do is take another simple geometry layout script as a basis. Take a simple platform geo layout script.

To find a geometry layout script, take a look at this list: http://homepage.mac.com/qubedstudios/SM64GeoLayoutPtrs.txt

Take the base address of the ROMbank containing the object you're looking for, and add the offset to find the location.
ROMBank:029 ROM Address:4300688-4302688 Level Script Bank

---------------------------------------------------------
Offset Description
001408 Wooden Platform
001432 Arrow Lift Platform
001472 Water Level Diamond
001512 Square Wooden Platform
001552 Wooden Platform Thing
001576 Main Level Geometry 1
001600 Hexagonal Platform
001624 Main Level Geometry 2
001828 Main Level Geometry 3


Let's say you want to find the geo layout script for that wooden platform. Just add 1408 to 4300688 and you get 4302096. Look at this location in the ROM and you'll find the script. Remember that geo layout scripts end with the "01 00 00 00" command.

Here's the script that you get at this address, which is essentially the simplest geo layout script possible, and that's what I should have told you to use in the first place:
20 00 02 26 

04 00 00 00
15 01 00 00 07 01 2B 90
05 00 00 00
01 00 00 00


Now I'm not sure what the 0x20 command does. 0x226 in decimal is 550. When you get numbers like these (multiple of ten) it's usually a coordinate of some kind. I suspected that it may be the draw distance value, you can try to change it and see what happens. Don't forget to change the 0x15 command so that it points to your custom polygon data.

So, using this geo layout should fix a lot of problems, including the fact that the object doesn't appear in the game. I've seen someone experimenting with putting a copy of the main level terrain in the level, and while it did appear in TT64, it didn't in the game. Same symptoms, the level terrain geometry layout must be preventing additional copies from showing.

And with a short and simple geometry layout like that, it should encourage you to create more different platforms. I suggest that you already insert multiple copies of this short script so that you don't have to repoint everything each time you want to add one.

You know this experiment will be useful in the future development of TT64. I'm now thinking about how I could automatize the importation of polygon models that could be used as individual 0x24 objects. Note that if I do this, it would only work with this new level. Adding platforms and objects to existing levels would be much more complicated, as they use a lot of "goto" and "gosub" commands that would need to be repointed if things are inserted. I made the scripts in Flatworld a lot more linear. For example, normally in a level, 0x22 commands are often loaded from other banks. In Flatworld, all 0x22 commands are in the main level script (except those in the Mario bank). Also, polygon scripts are normally built with a lot of "gosub" commands, but in flatworld they're all one after the other.

BTW messiaen, you should learn to use the url tag to enclose your urls so that they become clickable.

Edit: Removed something about the draw distance that wasn't correct (There's no draw distance command in the behavior script, I misread it as being command 0x45, but instead this is the offset of the draw distance value in RAM objects structures, it may be well set by the 0x20 command after all)


____________________
messiaen
Catgirl
Level: 68


Posts: 19/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-07-08 08:04:44 PM (last edited by messiaen at 04-09-08 08:47 AM) Link | Quote
Thanks VL-Tone, indeed it was the Geo Layout which was preventing the game from showing the platform.

The good news is that now with a working geo layout, the 0x2A (behavior script) collision command works, so I have moveable collision!


0x24 Platforms with custom mode and moveable collision (custom behavior).

---

What do you mean by drawing distance? Is this the distance from which the object is visible (this is what I think CellarDweller meant by "Disappear distance" on behavior thread) or is this some kind of distance between where you place your 0x24 object and where it is really drawn?

If you mean the former, I'm experimenting on this, but so far I haven't reached a conclusion. Changing the values indeed effects minor changes in disappear/visible distance, but they are very difficult to notice. I'll take a look at other geo layouts, especially in platforms which have to be visible from very far to see what values they use for this.

It seems, however, that behavior scripts also do affect this, but there still lots of testing to do to confirm this. When I was still using the 0x21 pointer and rotating between a few behaviors to see if my 0x2A command worked (it doesn't in a 0x21) I remember noticing striking differences in the drawing distance.

--

Update: I got the 0x1D scale command to work! It only works when precedeed by a 0x14 command. However, I have no clue how to determine what is the "normal" size value. Unlike Mario, "40 00" in the last bytes will give me a shrinked version. Also, the collision data vertexes needs to be manually scaled, unless there is a behavior script command which also scales the collision. Eventually, TT64 could adjust the 0x1D command on its interface and adjust collision data for it (scale the polygons), but sure there is a long way to go before this.

Here is my sample Geo Layout with 0x1D scale command:

20 00 01 F4
04 00 00 00
14 00 00 00 00 00 00 00
04 00 00 00
1D 00 00 00 00 00 40 00
04 00 00 00
15 01 00 00 07 00 00 E0
05 00 00 00
05 00 00 00
01 00 00 00

---

One bug concerning the red box when selecting custom 0x22 models:

This is what get when you first decode the geometry:



This is what you get when you close TT64 and open the same ROM again:



Wireframe mode shows correct polygons/collision in both instances.
Stevoisiak
Member
Level: 38


Posts: 63/283
EXP: 345476
For next: 24971

Since: 11-22-07

From: New York, Long Island

Since last post: 12.3 years
Last activity: 5.6 years

Posted on 04-10-08 08:17:39 PM Link | Quote
Ok. Messian, you have done what I have been hoping would happen ever since I saw that video where someone moved the level terrain as a whole object. (Man that sounded weird) Could these newly made objects be implemented automaticly in either the rom extendor or Toad's Tool itself?
messiaen
Catgirl
Level: 68


Posts: 26/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-11-08 12:09:04 AM (last edited by messiaen at 04-21-08 10:42 AM) Link | Quote
Uh, perhaps you missed this?

This is the concept of "Platform Battlefield", a empty level (it contains no terrain like Flatworld, just death at the bottom of the level) where you can move solid custom objects around. See more in the dedicated thread.

--

Edit: Indeed there is a command the scales collision data! Check out the Behavior thread

Edit2: Also, I have been experiment with the 0x20 Geo Layout command, and indeed it determines drawing distance (how close you need to get to the object so that it is drawn). The range of values are 0000 - 07FF. Anything beyond hex 8000 (dec 32768) will make the object invisible (probably some negative/positive values issue).
Stevoisiak
Member
Level: 38


Posts: 64/283
EXP: 345476
For next: 24971

Since: 11-22-07

From: New York, Long Island

Since last post: 12.3 years
Last activity: 5.6 years

Posted on 04-21-08 04:51:02 PM Link | Quote
Originally posted by messiaen
Uh, perhaps you missed this?

This is the concept of "Platform Battlefield", a empty level (it contains no terrain like Flatworld, just death at the bottom of the level) where you can move solid custom objects around. See more in the dedicated thread.

--

Edit: Indeed there is a command the scales collision data! Check out the Behavior thread

Edit2: Also, I have been experiment with the 0x20 Geo Layout command, and indeed it determines drawing distance (how close you need to get to the object so that it is drawn). The range of values are 0000 - 07FF. Anything beyond hex 8000 (dec 32768) will make the object invisible (probably some negative/positive values issue).


Not what I ment. I meant that video made me think, "Hmm, maybe the terrain objects could be divided into individual physical objects" Which, is what you did.
messiaen
Catgirl
Level: 68


Posts: 40/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-21-08 06:34:04 PM (last edited by messiaen at 04-21-08 08:34 PM) Link | Quote
Well, it is possible to "rip" parts of the level terrain of any level and make them individual models in Flatworld (and flatworld only), however this would be very difficult. It would be easier to get geometry that is already invidualized in 0x43/0x24 objects to load in Flatworld. But then, there is the texture problem, that is, only a certain set of textures are loaded in each level. I'm trying to get the mushroom platforms in my experimental level, but that will require some texture editing/swapping. Also, I will have to generate collision data for it (convert the polygon commands into collision triangles), because finding it in the actual ROM would be very difficult.

Fortunately VL-Tone did a wonderful list of geometry layout/polygons for the individualized 0x43/0x24 geometry, but even then it is a bit hard to follow, because there are lots of jumps in geometry data. Usually, each texture command jumps to a pollygon command which load vertex from other part of the ROM. What I'm in doing is making this geometry more linear, suitable for copying/pasting with less repointing. I hope that works!

Also, I'm wondering if anyone knows how to change the background in Flatworld? I think I already tried changing all level commands and geometry layout for the terrain, but couldn't find how to do it. Maybe this is loaded before the level data ? One thing I found by experimenting is that the first 0x08 command in the Level terrain Geo Layout is some hardware command that initializes the N64 display.

08 00 00 0A 00 A0 00 78 00 A0 00 78

Hex A0 = 160 (dec)
Hex 78 = 120 (dec)

Maybe A0 x 2 and 78 x 2 = 320x240.

If you use smaller values, you will play in just part of the screen. Bigger values will give you some kind of zoom, but Mario is not centralized.

Unless you really want a whacked hack, it is better leave these untouched.

---

Big Mushroom Platform polygon commands/vertexes. Tomorrow I'll try using these as a custom model in my experimental level.
rstewart215804
User
Crazed Mario 64 Hacker!!!
Level: 11


Posts: 9/18
EXP: 5578
For next: 407

Since: 09-13-07


Since last post: 13.2 years
Last activity: 11.7 years

Posted on 04-22-08 03:13:10 AM Link | Quote
The background is loaded into bank 0A with the 0x17 level command. By changing the starting and stopping values you can change the background.

Backgrounds are comprised of one or more 32x32 bitmaps and 320 bytes. The 320 bytes a list of 80 pointers that are 4 bytes long...

[0A][00 08 00]
1: Bank
2-4: Offset in bank for bitmap

Each pointer pointes to a single bitmap. The pointers are arranged into 10 tiles horizontally and 8 tiles vertically. The game uses the two extra horizontal tiles to wrap the texture around.

This list of pointers (From Bob-omb Battlefield)...

0A00 0000 0A00 0800 0A00 1000 0A00 1800 0A00 2000 0A00 2800 0A00 3000 0A00 3800 0A00 0000 0A00 0800
0A00 4000 0A00 4800 0A00 5000 0A00 5800 0A00 6000 0A00 6800 0A00 7000 0A00 7800 0A00 4000 0A00 4800
0A00 8000 0A00 8800 0A00 9000 0A00 9800 0A00 A000 0A00 A800 0A00 B000 0A00 B800 0A00 8000 0A00 8800
0A00 C000 0A00 C800 0A00 D000 0A00 D800 0A00 E000 0A00 E800 0A00 F000 0A00 F800 0A00 C000 0A00 C800
0A01 0000 0A01 0800 0A01 1000 0A01 1800 0A01 2000 0A01 2800 0A01 3000 0A01 3800 0A01 0000 0A01 0800
0A01 4000 0A01 4800 0A01 5000 0A01 5800 0A01 6000 0A01 6800 0A01 7000 0A01 7800 0A01 4000 0A01 4800
0A01 8000 0A01 8800 0A01 9000 0A01 9800 0A01 A000 0A01 A800 0A01 B000 0A01 B800 0A01 8000 0A01 8800
0A01 C000 0A01 C800 0A01 D000 0A01 D800 0A01 E000 0A01 E800 0A01 F000 0A01 F800 0A01 C000 0A01 C800

produces this texture...



____________________
Just you wait until next time. Until then, keep that Control Stick smokin’! Buwaa ha ha!
messiaen
Catgirl
Level: 68


Posts: 43/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-22-08 08:18:43 PM (last edited by messiaen at 04-23-08 08:34 PM) Link | Quote
Thanks a lot rstewart, I'll experiment swapping the backgrounds between levels.

This is how my mushroom platform is going:




I have to recheck everything, because I think some triangles are missing. For the textures, I just swapped the whole texture bank for now.

I'm now building the collision for this. Before turning this into a specific collision behavior, I'm writing the collision data in the level collision pointed by the 0x2E command. This way, I can see the collision in TT64, because it can't read (yet?) collision from behaviors. However, I have a question concerning level collision.

Flatworld collision is very simple:

00 40 00 04 <------ Loads 4 collision data vertices [followed by 4 vertices X,Y,Z]

00 00 00 02 <----- Loads 2 "0000" collision triangles

00 00 00 01 00 02 <----- triangles
00 00 00 03 00 01

[Now here comes my mushroom collision, one 00 40 00 0F command followed by vertices and chunk of triangles. After this comes the "end commands" 00 41 00 42].

Now when I open TT64 my collision triangles are all messed up, because in the second chunk of triangles, he used also some of the previous loaded vertices.

This is a picture of what I get:



See how not just the new vertexes but also the previously loaded are used? (the ones that make the big "death at the bottom" giant plane)

If I point my collision data to start at the second 00 40 vertices/triangle chunk, I get correct collision data (incomplete at the moment):



So, there must be a command that resets the vertex cache and goes between the 00 40 load vertex chunks, is that right?

Edit: Nope. I was looking at the collision data from Castle Grounds, and it seems that there is just one HUGE list of vertices and collision triangles. Now I see why 0xBF use just one byte for each triangle vertex pointer while collision triangles use two.

---

Edit 3: Ah, my mushroom now looks better . The stem always looked a bit akward (look at the colors in the first screenshot. It is also a bit transparent). If you look at the Geo Layout (check earlier post), you'll see that the polygons are divided in two "drawing layers" (as VL-Tone calls in the Hacking doc). Since the geometry is composed of jumps and I'm importing this from another level, the second drawing layer (in fact, number 5) which draws the stem of the mushroom must have different properties than the first one, setted somewhere earlier in the data or maybe some global properties set in terrain geo layout. I unified the polygons in just one drawing layer. It looked better (more solid), but the colors were a bit messed up.

Then I erased this "FC12 1824 FF33 FFFF" command on the beggining of the second layer data and things turned out even better. I may have been a bit lucky, but it worked, and now it looks way better.



Enough of the mushroom saga, I hope you appreciate my effort for this, as the pratical results will surely be interesting!

---

Last edit for this post: I finished the collision for this. Converting any 3D model into the collision data format should not be too difficult (just time-consuming) and could be possibly done automatically. If there is interest, I can post more detailed
information.

Download big mushroom collision data.

One absolutely great thing is that the "0000" collision triangle is somewhat flexible. If there is inclination, it will act like a hill, and if there is too much of it, you won't be able to climb it or it will turn itself into a slide. I first realized this when I made the first "height terrain" level, but it amazed me how well my mushroom collision worked.

-- New video !!

<object width="425" height="350"> <embed src="http://www.youtube.com/v/6lBRXHZrc_g" type="application/x-shockwave-flash" width="425" height="350"> </embed> </object>
Stevoisiak
Member
Level: 38


Posts: 68/283
EXP: 345476
For next: 24971

Since: 11-22-07

From: New York, Long Island

Since last post: 12.3 years
Last activity: 5.6 years

Posted on 04-24-08 05:34:23 PM Link | Quote
Wow! It almost seems like you need a more flexable version of toads tool! You rock!
messiaen
Catgirl
Level: 68


Posts: 47/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-24-08 07:38:06 PM Link | Quote
TT64 is already a very flexible and powerful tool, and Flatworld Battlefield gives you a lot of freedom to experiment and learn.

When I say that the collision data for individual models could be generated automatically, I mean just the collision code itself (like the one I uploaded). Getting into the ROM as moveable collision is another matter. This is easy to do Flatworld, as there is a lot of empty space in its 'banks', however it would be very complicated in "real" levels.

Regarding the mushroom platform, I always thought some polygons were missing, but I discovered that I didn't chose the best mushroom model. If you look at the Tall Tall Mountain level, there a few different kinds of mushroom:



The first one is the "Big Mushroom Platform" (the one I used) and the second one is the "Mushroom Platform".

The big problem is that if I enable culling, this is what I when I go under the big mushroom platform:



This is how it will look in-game, if you go under it. This is not an issue in the Tall Tall Mountain level, because you won't be able to get under these mushrooms because of where they are placed. Also, if the lower part was "closed", like the second Mushroom Platform, this would solve the problem.

If I knew the command (if there is one) to disable culling, this would be the best solution. For now, I just duplicated all the polygon triangles in reverse order. That is, switching clockwise triangles to counter-clock, and vice-versa. This is just a matter of swtiching the two last vertexes in each triangle.

As the collision data is also sensitive to culling, I will also have to do this for collision.


Stevoisiak
Member
Level: 38


Posts: 70/283
EXP: 345476
For next: 24971

Since: 11-22-07

From: New York, Long Island

Since last post: 12.3 years
Last activity: 5.6 years

Posted on 04-25-08 02:42:06 PM Link | Quote
Originally posted by messiaen
TT64 is already a very flexible and powerful tool, and Flatworld Battlefield gives you a lot of freedom to experiment and learn.


Yeah, but sometimes, as like with the platform, ahhh, never mind. So, I have an idea! I think adding these new objects to the game should be a built in feture with toad's tool. It could be like the flatworld button, except it can add objects to the rom. (Posibly, it could also take care of some objects not working in other levels)
messiaen
Catgirl
Level: 68


Posts: 55/1085
EXP: 2594042
For next: 134758

Since: 11-20-07


Since last post: 8.1 years
Last activity: 7.2 years

Posted on 04-28-08 03:28:08 PM (last edited by messiaen at 04-30-08 02:43 PM) Link | Quote
I was looking at the ROM Banks loaded at Flatworld and noticed that there are some objects actually loaded that don't have a 0x22 Geo Layout pointer command.

For instance, if you want to add the Warp Pipe in Flatworld, just replace one of the 0x22 commands with this:

22 08 00 12 16 00 03 88

I still have to test if you really need to replace 0x22 commands, it would be much better just adding a bunch of them.

Edit: Another interesting fact about Flatworld.

The terrain is already set to the maximum size. You can expand the polygons further, but the collision will not work. Thinking about it, most of the levels on Mario are really more vertical, whenever you need more space the game seems to use "areas" (sometimes smoothly connected, such as the Tall Tall Mountain Slide).

I don't know if the terrain limits are absolute or relative or if there is a command that determines this, but in Flatworld they are 8192 and -8192, horizontal and vertically.
rezapeza

Level: 35


Posts: 13/252
EXP: 255655
For next: 24281

Since: 02-16-11

From: Noway

Since last post: 11.0 years
Last activity: 10.8 years

Posted on 02-25-11 05:54:54 PM Link | Quote
this really helped me, in hacking! obstacle course all the way! I just wish i was a better programmer so i could fix something and make it even harder

____________________
I can't wait for for my hack to be complete!
ShenoxVII

(in all seriousness, you're a prick)
Level: 24


Posts: 45/111
EXP: 75917
For next: 2208

Since: 10-09-10


Since last post: 9.0 years
Last activity: 9.0 years

Posted on 02-25-11 08:58:24 PM Link | Quote
Where is the download link, I looked on homepage, I see no v0.5.98b
Zero One
5170
And as we fall the spirit carries on,
That a hero'll come and save us all,
As we call the ones we left below,
We all dream of the day we rise above
Level: 129


Posts: 2827/5173
EXP: 24545464
For next: 504190

Since: 05-24-10

From: Delta Quadrant

Since last post: 1.6 years
Last activity: 121 days

Posted on 02-25-11 09:02:32 PM Link | Quote
Originally posted by ShenoxVII
Where is the download link, I looked on homepage, I see no v0.5.98b


The thread is two years old. We're up to TT64 v0.5.992.

____________________
"The last Metroid is in captivity."
And yet, the galaxy is STILL fucked.
Thanks Xkeeper, Bagel and Sanky for the help!

ShenoxVII

(in all seriousness, you're a prick)
Level: 24


Posts: 46/111
EXP: 75917
For next: 2208

Since: 10-09-10


Since last post: 9.0 years
Last activity: 9.0 years

Posted on 02-25-11 09:57:30 PM Link | Quote
Originally posted by Zero One
Originally posted by ShenoxVII
Where is the download link, I looked on homepage, I see no v0.5.98b


The thread is two years old. We're up to TT64 v0.5.992.



Then why was this thread in front and had something about it not being 6.0 because it is beta or something. So is there a real of a new toad tools or not.
Lyskar
12210
-The Chaos within trumps the Chaos without-
Level: 192


Posts: 8382/12211
EXP: 99235681
For next: 637890

Since: 07-03-07

From: 52-2-88-7

Since last post: 7.4 years
Last activity: 7.3 years

Posted on 02-25-11 10:11:10 PM Link | Quote
Stats
Time/Date
02-25-11 04:11:10 PM
Posts
8382
Days Here
1333
Level
134
Metal_Man88's Post
Because someone bumped it and it's old.

If you have nothing constructive to add to this topic, stop posting in it, Shenox.

____________________

Eisnaught - SSQ² - Mobius Roleplay - SSS
Pages: 1 2 3 Next newer thread | Next older thread
Jul - SM64 Hacking (Archive) - FlatWorld Battlefield, Take Two (New flat empty level template! TT64 v0.5.98b!) New poll - New thread - New reply


Rusted Logic

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

33 database queries, 10 query cache hits.
Query execution time:  0.093567 seconds
Script execution time:  0.042045 seconds
Total render time:  0.135612 seconds


TidyHTML vomit below
line 1 column 1 - Warning: missing <!DOCTYPE> declaration
line 2 column 310 - 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 250 - Warning: missing </font> before </table>
line 149 column 35 - Warning: missing <tr>
line 149 column 94 - Warning: unescaped & or unknown entity "&page"
line 149 column 126 - Warning: unescaped & or unknown entity "&page"
line 149 column 50 - Warning: missing </font> before </td>
line 149 column 163 - 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 99 - Warning: unescaped & or unknown entity "&postid"
line 179 column 73 - Warning: <style> isn't allowed in <td> elements
line 179 column 9 - Info: <td> previously mentioned
line 179 column 137 - Warning: missing </div>
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 99 - Warning: unescaped & or unknown entity "&postid"
line 233 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 235 column 9 - Warning: missing <tr>
line 253 column 13 - Warning: missing <tr>
line 254 column 99 - Warning: unescaped & or unknown entity "&postid"
line 256 column 73 - Warning: <style> isn't allowed in <td> elements
line 256 column 9 - Info: <td> previously mentioned
line 256 column 1511 - Warning: missing </font> before <blockquote>
line 256 column 1590 - Warning: inserting implicit <font>
line 256 column 1590 - Warning: missing </font> before <hr>
line 256 column 1594 - Warning: inserting implicit <font>
line 256 column 1594 - Warning: missing </font> before <hr>
line 256 column 1777 - Warning: inserting implicit <font>
line 257 column 1 - Warning: inserting implicit <font>
line 257 column 1 - Warning: missing </font> before <pre>
line 281 column 1 - Warning: inserting implicit <font>
line 281 column 1 - Warning: missing </font> before <pre>
line 290 column 1 - Warning: inserting implicit <font>
line 256 column 137 - Warning: missing </div>
line 305 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 307 column 9 - Warning: missing <tr>
line 325 column 13 - Warning: missing <tr>
line 326 column 99 - Warning: unescaped & or unknown entity "&postid"
line 375 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 377 column 9 - Warning: missing <tr>
line 395 column 13 - Warning: missing <tr>
line 396 column 99 - Warning: unescaped & or unknown entity "&postid"
line 401 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 403 column 9 - Warning: missing <tr>
line 421 column 13 - Warning: missing <tr>
line 422 column 99 - Warning: unescaped & or unknown entity "&postid"
line 436 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 438 column 9 - Warning: missing <tr>
line 456 column 13 - Warning: missing <tr>
line 457 column 99 - Warning: unescaped & or unknown entity "&postid"
line 472 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 474 column 9 - Warning: missing <tr>
line 492 column 13 - Warning: missing <tr>
line 493 column 99 - Warning: unescaped & or unknown entity "&postid"
line 517 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 519 column 9 - Warning: missing <tr>
line 537 column 13 - Warning: missing <tr>
line 538 column 99 - Warning: unescaped & or unknown entity "&postid"
line 566 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 568 column 9 - Warning: missing <tr>
line 586 column 13 - Warning: missing <tr>
line 587 column 99 - Warning: unescaped & or unknown entity "&postid"
line 594 column 370 - Warning: unescaped & or unknown entity "&i"
line 648 column 4638 - Warning: discarding unexpected <param>
line 648 column 4704 - Warning: discarding unexpected </param>
line 652 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 654 column 9 - Warning: missing <tr>
line 672 column 13 - Warning: missing <tr>
line 673 column 99 - Warning: unescaped & or unknown entity "&postid"
line 678 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 680 column 9 - Warning: missing <tr>
line 698 column 13 - Warning: missing <tr>
line 699 column 99 - Warning: unescaped & or unknown entity "&postid"
line 725 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 727 column 9 - Warning: missing <tr>
line 745 column 13 - Warning: missing <tr>
line 746 column 99 - Warning: unescaped & or unknown entity "&postid"
line 753 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 755 column 9 - Warning: missing <tr>
line 773 column 13 - Warning: missing <tr>
line 774 column 99 - Warning: unescaped & or unknown entity "&postid"
line 791 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 793 column 9 - Warning: missing <tr>
line 811 column 13 - Warning: missing <tr>
line 812 column 101 - Warning: unescaped & or unknown entity "&postid"
line 817 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 819 column 9 - Warning: missing <tr>
line 837 column 13 - Warning: missing <tr>
line 838 column 101 - Warning: unescaped & or unknown entity "&postid"
line 840 column 74 - Warning: missing </div>
line 843 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 845 column 9 - Warning: missing <tr>
line 863 column 13 - Warning: missing <tr>
line 864 column 101 - Warning: unescaped & or unknown entity "&postid"
line 866 column 492 - Warning: <td> attribute "tahoma"," lacks value
line 866 column 492 - Warning: <td> attribute with missing trailing quote mark
line 866 column 689 - Warning: discarding unexpected <body>
line 866 column 74 - Warning: missing </div>
line 875 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 877 column 9 - Warning: missing <tr>
line 895 column 13 - Warning: missing <tr>
line 896 column 101 - Warning: unescaped & or unknown entity "&postid"
line 898 column 74 - Warning: missing </div>
line 906 column 9 - Warning: <div> isn't allowed in <table> elements
line 152 column 17 - Info: <table> previously mentioned
line 908 column 9 - Warning: missing <tr>
line 926 column 13 - Warning: missing <tr>
line 927 column 101 - Warning: unescaped & or unknown entity "&postid"
line 929 column 74 - Warning: <style> isn't allowed in <td> elements
line 929 column 9 - Info: <td> previously mentioned
line 929 column 1365 - Error: <z> is not recognized!
line 929 column 1365 - Warning: discarding unexpected <z>
line 929 column 1377 - Warning: discarding unexpected </z>
line 931 column 1409 - Error: <z> is not recognized!
line 931 column 1409 - Warning: discarding unexpected <z>
line 931 column 1417 - Warning: discarding unexpected </z>
line 933 column 1433 - Error: <z> is not recognized!
line 933 column 1433 - Warning: discarding unexpected <z>
line 933 column 1445 - Warning: discarding unexpected </z>
line 935 column 1461 - Error: <z> is not recognized!
line 935 column 1461 - Warning: discarding unexpected <z>
line 935 column 1469 - Warning: discarding unexpected </z>
line 940 column 2342 - Warning: discarding unexpected </td>
line 943 column 17 - Warning: missing <tr>
line 943 column 17 - Warning: discarding unexpected <table>
line 946 column 35 - Warning: missing <tr>
line 946 column 94 - Warning: unescaped & or unknown entity "&page"
line 946 column 126 - Warning: unescaped & or unknown entity "&page"
line 946 column 50 - Warning: missing </font> before </td>
line 946 column 163 - Warning: missing </font> before </table>
line 948 column 35 - Warning: missing <tr>
line 948 column 50 - Warning: missing </font> before </td>
line 949 column 37 - Warning: unescaped & or unknown entity "&id"
line 948 column 250 - Warning: missing </font> before </table>
line 950 column 17 - Warning: discarding unexpected </textarea>
line 950 column 28 - Warning: discarding unexpected </form>
line 950 column 35 - Warning: discarding unexpected </embed>
line 950 column 43 - Warning: discarding unexpected </noembed>
line 950 column 53 - Warning: discarding unexpected </noscript>
line 950 column 64 - Warning: discarding unexpected </noembed>
line 950 column 74 - Warning: discarding unexpected </embed>
line 950 column 82 - Warning: discarding unexpected </table>
line 950 column 90 - Warning: discarding unexpected </table>
line 952 column 9 - Warning: missing </font> before <table>
line 964 column 25 - Warning: discarding unexpected </font>
line 973 column 58 - Warning: discarding unexpected </font>
line 951 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 245 - 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 172 column 15 - Warning: <img> lacks "alt" attribute
line 179 column 693 - Warning: <img> lacks "alt" attribute
line 181 column 1848 - Warning: <img> lacks "alt" attribute
line 181 column 2007 - 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 111 - Warning: <img> lacks "alt" attribute
line 189 column 161 - Warning: <img> lacks "alt" attribute
line 200 column 15 - Warning: <img> lacks "alt" attribute
line 219 column 1046 - Warning: <img> lacks "alt" attribute
line 221 column 1269 - Warning: <img> proprietary attribute value "absmiddle"
line 221 column 1269 - Warning: <img> lacks "alt" attribute
line 238 column 22 - Warning: <img> lacks "alt" attribute
line 238 column 63 - Warning: <img> lacks "alt" attribute
line 238 column 112 - Warning: <img> lacks "alt" attribute
line 238 column 162 - Warning: <img> lacks "alt" attribute
line 249 column 15 - Warning: <img> lacks "alt" attribute
line 256 column 693 - Warning: <img> lacks "alt" attribute
line 302 column 6913 - Warning: <img> lacks "alt" attribute
line 302 column 7072 - Warning: <img> lacks "alt" attribute
line 310 column 22 - Warning: <img> lacks "alt" attribute
line 310 column 63 - Warning: <img> lacks "alt" attribute
line 310 column 111 - Warning: <img> lacks "alt" attribute
line 310 column 161 - Warning: <img> lacks "alt" attribute
line 321 column 15 - Warning: <img> lacks "alt" attribute
line 332 column 355 - Warning: <img> lacks "alt" attribute
line 366 column 2498 - Warning: <img> lacks "alt" attribute
line 370 column 2692 - Warning: <img> lacks "alt" attribute
line 380 column 22 - Warning: <img> lacks "alt" attribute
line 380 column 63 - Warning: <img> lacks "alt" attribute
line 380 column 112 - Warning: <img> lacks "alt" attribute
line 380 column 162 - Warning: <img> lacks "alt" attribute
line 391 column 15 - Warning: <img> lacks "alt" attribute
line 406 column 22 - Warning: <img> lacks "alt" attribute
line 406 column 63 - Warning: <img> lacks "alt" attribute
line 406 column 111 - Warning: <img> lacks "alt" attribute
line 406 column 161 - Warning: <img> lacks "alt" attribute
line 417 column 15 - Warning: <img> lacks "alt" attribute
line 441 column 22 - Warning: <img> lacks "alt" attribute
line 441 column 63 - Warning: <img> lacks "alt" attribute
line 441 column 112 - Warning: <img> lacks "alt" attribute
line 441 column 162 - Warning: <img> lacks "alt" attribute
line 452 column 15 - Warning: <img> lacks "alt" attribute
line 477 column 22 - Warning: <img> lacks "alt" attribute
line 477 column 63 - Warning: <img> lacks "alt" attribute
line 477 column 111 - Warning: <img> lacks "alt" attribute
line 477 column 161 - Warning: <img> lacks "alt" attribute
line 488 column 15 - Warning: <img> lacks "alt" attribute
line 522 column 22 - Warning: <img> lacks "alt" attribute
line 522 column 63 - Warning: <img> lacks "alt" attribute
line 522 column 112 - Warning: <img> lacks "alt" attribute
line 522 column 162 - Warning: <img> lacks "alt" attribute
line 523 column 11 - Warning: <img> lacks "alt" attribute
line 533 column 15 - Warning: <img> lacks "alt" attribute
line 563 column 1578 - Warning: <img> lacks "alt" attribute
line 571 column 22 - Warning: <img> lacks "alt" attribute
line 571 column 63 - Warning: <img> lacks "alt" attribute
line 571 column 111 - Warning: <img> lacks "alt" attribute
line 571 column 161 - Warning: <img> lacks "alt" attribute
line 582 column 15 - Warning: <img> lacks "alt" attribute
line 593 column 240 - Warning: <img> lacks "alt" attribute
line 594 column 389 - Warning: <img> lacks "alt" attribute
line 615 column 1634 - Warning: <img> lacks "alt" attribute
line 621 column 2044 - Warning: <img> lacks "alt" attribute
line 629 column 2576 - Warning: <img> proprietary attribute value "absmiddle"
line 629 column 2576 - Warning: <img> lacks "alt" attribute
line 633 column 3568 - Warning: <img> lacks "alt" attribute
line 657 column 22 - Warning: <img> lacks "alt" attribute
line 657 column 63 - Warning: <img> lacks "alt" attribute
line 657 column 112 - Warning: <img> lacks "alt" attribute
line 657 column 162 - Warning: <img> lacks "alt" attribute
line 668 column 15 - Warning: <img> lacks "alt" attribute
line 683 column 22 - Warning: <img> lacks "alt" attribute
line 683 column 63 - Warning: <img> lacks "alt" attribute
line 683 column 111 - Warning: <img> lacks "alt" attribute
line 683 column 161 - Warning: <img> lacks "alt" attribute
line 694 column 15 - Warning: <img> lacks "alt" attribute
line 707 column 839 - Warning: <img> lacks "alt" attribute
line 713 column 1192 - Warning: <img> lacks "alt" attribute
line 730 column 22 - Warning: <img> lacks "alt" attribute
line 730 column 63 - Warning: <img> lacks "alt" attribute
line 730 column 112 - Warning: <img> lacks "alt" attribute
line 730 column 162 - Warning: <img> lacks "alt" attribute
line 741 column 15 - Warning: <img> lacks "alt" attribute
line 758 column 22 - Warning: <img> lacks "alt" attribute
line 758 column 63 - Warning: <img> lacks "alt" attribute
line 758 column 111 - Warning: <img> lacks "alt" attribute
line 758 column 161 - Warning: <img> lacks "alt" attribute
line 769 column 15 - Warning: <img> lacks "alt" attribute
line 795 column 11 - Warning: <img> lacks "alt" attribute
line 796 column 22 - Warning: <img> lacks "alt" attribute
line 796 column 63 - Warning: <img> lacks "alt" attribute
line 796 column 111 - Warning: <img> lacks "alt" attribute
line 796 column 161 - Warning: <img> lacks "alt" attribute
line 807 column 15 - Warning: <img> lacks "alt" attribute
line 821 column 11 - Warning: <img> lacks "alt" attribute
line 822 column 22 - Warning: <img> lacks "alt" attribute
line 822 column 63 - Warning: <img> lacks "alt" attribute
line 822 column 112 - Warning: <img> lacks "alt" attribute
line 822 column 162 - Warning: <img> lacks "alt" attribute
line 823 column 11 - Warning: <img> lacks "alt" attribute
line 833 column 15 - Warning: <img> lacks "alt" attribute
line 847 column 16 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 16 - Warning: <img> lacks "alt" attribute
line 847 column 59 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 59 - Warning: <img> lacks "alt" attribute
line 847 column 102 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 102 - Warning: <img> lacks "alt" attribute
line 847 column 145 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 145 - Warning: <img> lacks "alt" attribute
line 847 column 188 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 188 - Warning: <img> lacks "alt" attribute
line 847 column 231 - Warning: <img> proprietary attribute value "absmiddle"
line 847 column 231 - Warning: <img> lacks "alt" attribute
line 848 column 23 - Warning: <img> lacks "alt" attribute
line 848 column 64 - Warning: <img> lacks "alt" attribute
line 848 column 113 - Warning: <img> lacks "alt" attribute
line 848 column 163 - Warning: <img> lacks "alt" attribute
line 849 column 11 - Warning: <img> lacks "alt" attribute
line 859 column 15 - Warning: <img> lacks "alt" attribute
line 871 column 1136 - Warning: <img> lacks "alt" attribute
line 879 column 11 - Warning: <img> lacks "alt" attribute
line 880 column 22 - Warning: <img> lacks "alt" attribute
line 880 column 63 - Warning: <img> lacks "alt" attribute
line 880 column 112 - Warning: <img> lacks "alt" attribute
line 880 column 162 - Warning: <img> lacks "alt" attribute
line 881 column 11 - Warning: <img> lacks "alt" attribute
line 891 column 15 - Warning: <img> lacks "alt" attribute
line 910 column 17 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 17 - Warning: <img> lacks "alt" attribute
line 910 column 60 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 60 - Warning: <img> lacks "alt" attribute
line 910 column 103 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 103 - Warning: <img> lacks "alt" attribute
line 910 column 146 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 146 - Warning: <img> lacks "alt" attribute
line 910 column 189 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 189 - Warning: <img> lacks "alt" attribute
line 910 column 232 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 232 - Warning: <img> lacks "alt" attribute
line 910 column 275 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 275 - Warning: <img> lacks "alt" attribute
line 910 column 318 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 318 - Warning: <img> lacks "alt" attribute
line 910 column 361 - Warning: <img> proprietary attribute value "absmiddle"
line 910 column 361 - Warning: <img> lacks "alt" attribute
line 911 column 23 - Warning: <img> lacks "alt" attribute
line 911 column 64 - Warning: <img> lacks "alt" attribute
line 911 column 113 - Warning: <img> lacks "alt" attribute
line 911 column 163 - Warning: <img> lacks "alt" attribute
line 912 column 11 - Warning: <img> lacks "alt" attribute
line 922 column 15 - Warning: <img> lacks "alt" attribute
line 929 column 1210 - Warning: <tr> attribute "valign" has invalid value "center"
line 939 column 1988 - Warning: <img> lacks "alt" attribute
line 949 column 44 - Warning: <img> proprietary attribute value "absmiddle"
line 949 column 142 - Warning: <img> proprietary attribute value "absmiddle"
line 949 column 245 - Warning: <img> proprietary attribute value "absmiddle"
line 958 column 25 - Warning: <img> lacks "alt" attribute
line 963 column 267 - Warning: <img> lacks "alt" attribute
line 256 column 1511 - Warning: trimming empty <font>
line 256 column 1590 - Warning: trimming empty <font>
line 256 column 1777 - Warning: trimming empty <font>
line 943 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 179 column 157 - Warning: <table> proprietary attribute "height"
line 179 column 222 - Warning: <td> proprietary attribute "background"
line 179 column 318 - Warning: <td> proprietary attribute "background"
line 179 column 408 - Warning: <table> proprietary attribute "height"
line 179 column 488 - Warning: <td> proprietary attribute "background"
line 179 column 1443 - Warning: <td> proprietary attribute "background"
line 205 column 27 - Warning: <nobr> is not approved by W3C
line 254 column 27 - Warning: <nobr> is not approved by W3C
line 256 column 157 - Warning: <table> proprietary attribute "height"
line 256 column 222 - Warning: <td> proprietary attribute "background"
line 256 column 318 - Warning: <td> proprietary attribute "background"
line 256 column 408 - Warning: <table> proprietary attribute "height"
line 256 column 488 - Warning: <td> proprietary attribute "background"
line 256 column 1443 - Warning: <td> proprietary attribute "background"
line 326 column 27 - Warning: <nobr> is not approved by W3C
line 396 column 27 - Warning: <nobr> is not approved by W3C
line 422 column 27 - Warning: <nobr> is not approved by W3C
line 457 column 27 - Warning: <nobr> is not approved by W3C
line 493 column 27 - Warning: <nobr> is not approved by W3C
line 538 column 27 - Warning: <nobr> is not approved by W3C
line 587 column 27 - Warning: <nobr> is not approved by W3C
line 673 column 27 - Warning: <nobr> is not approved by W3C
line 699 column 27 - Warning: <nobr> is not approved by W3C
line 746 column 27 - Warning: <nobr> is not approved by W3C
line 774 column 27 - Warning: <nobr> is not approved by W3C
line 812 column 27 - Warning: <nobr> is not approved by W3C
line 838 column 27 - Warning: <nobr> is not approved by W3C
line 864 column 27 - Warning: <nobr> is not approved by W3C
line 866 column 172 - Warning: <table> proprietary attribute "height"
line 896 column 27 - Warning: <nobr> is not approved by W3C
line 927 column 27 - Warning: <nobr> is not approved by W3C
line 929 column 1136 - Warning: <table> proprietary attribute "height"
Info: Document content looks like HTML5
Info: No system identifier in emitted doctype
Tidy found 361 warnings and 4 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