Clan TMMM
Would you like to react to this message? Create an account in a few clicks or log in to continue.


The official site of Clan TMMM
 
HomeHomeSearchLatest imagesRegisterLog in


Latest topics
» Kevkevqaz is back
too much terrain? I_icon_minitimeby Eat_bacon_daily Wed Feb 22, 2023 7:22 pm

» Hey whats up
too much terrain? I_icon_minitimeby seankly Tue Feb 04, 2020 10:32 pm

» Gotta click fast - WC3 Mazing #mildlyinteresting
too much terrain? I_icon_minitimeby hoffmann Wed Jun 21, 2017 10:28 pm

» I'm getting married and you guys are invited
too much terrain? I_icon_minitimeby Achilles.42 Wed Sep 07, 2016 11:00 am

» Server Photo Album 1
too much terrain? I_icon_minitimeby Pat1487 Sat Aug 06, 2016 5:28 pm

» Legacy of The Void Beta
too much terrain? I_icon_minitimeby Achilles.42 Sun Oct 18, 2015 3:21 am

» Hey guys!!!
too much terrain? I_icon_minitimeby Eat_bacon_daily Fri Oct 16, 2015 11:20 pm

SC2 Links
SC2 Challenge/Tourney Info

Official SC2 Forums

SC2 Curse

SC2Mapster

Team Liquid

SC2 Replayed

SC2 Strategy
WC3 Links
Clan_TMMM[Host] Info

WC3 Challenge/Tourny Rules

Epicwar
Poll
What game does everyone play now?
Starcraft 2
too much terrain? I_vote_lcap26%too much terrain? I_vote_rcap
 26% [ 8 ]
Warcraft 3
too much terrain? I_vote_lcap35%too much terrain? I_vote_rcap
 35% [ 11 ]
League of Legends
too much terrain? I_vote_lcap19%too much terrain? I_vote_rcap
 19% [ 6 ]
World of Warcraft
too much terrain? I_vote_lcap0%too much terrain? I_vote_rcap
 0% [ 0 ]
Diablo 2
too much terrain? I_vote_lcap0%too much terrain? I_vote_rcap
 0% [ 0 ]
No games at all
too much terrain? I_vote_lcap10%too much terrain? I_vote_rcap
 10% [ 3 ]
Other game not listed
too much terrain? I_vote_lcap10%too much terrain? I_vote_rcap
 10% [ 3 ]
Total Votes : 31
Transparency

 

 too much terrain?

Go down 
4 posters
AuthorMessage
Serenity09
Moderator
Moderator
Serenity09



too much terrain? Empty
PostSubject: too much terrain?   too much terrain? I_icon_minitimeMon Aug 15, 2011 8:02 pm

so to get around the stupid limit on number of terrain chipsets available, i made a function that takes a rect, and 2 terrain types and replaces the first type with the second throughout the rect

it works great except for one detail...

it can only use tiles already in my chipset...
ie if i have lava and ice and marble in my chipset and try to replace ice with bricks (not in my chipset) it'll instead replace ice with lava
but if i try to replace marble with ice, that works fine

there has to be a way around this considering maze maker games use tons of different chips. anyone know?

code
Back to top Go down
The_Chosen_Oreo
Corporal
Corporal
The_Chosen_Oreo



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 12:28 am

Theres no paste on pastebin to that link...
Back to top Go down
Serenity09
Moderator
Moderator
Serenity09



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 12:56 am

it expired
Back to top Go down
The_Chosen_Oreo
Corporal
Corporal
The_Chosen_Oreo



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 1:06 am

lol can you repost it? xD
Back to top Go down
Pat1487
Moderator
Moderator
Pat1487



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 10:02 am

Each tile takes up a certain amount of space
Some tiles takes up 2, like snow
The maximum space is 16

Theres ways to make tiles that take 2 only take 1
Which i think newgen (or something within newgen) can do on its own
I used to have some weird way of doing it that i tried to explain to you but it achieves the same thing newgen does
Which you already have


This interested me though, so i did some testing of my own today when i had time
I added 16 tiles with newgen, put down some lava, ran the map, then changed lava to village crops in game
Crops wasnt in my tileset, and when i changed lava to it, it failed and ended up changing to something else that was in my tileset (grass)
Just like how yours was ending up as lava the other day when we played

So i thought maybe you could cheat by having 15 tile types and the 16th as a variable of sorts
So i put down lava in the editor, ran the map, changed it to crops (crops still wasnt in my tile set) and this worked
So now crops is taking the 16th place, so then i changed crops to snow (snow wasnt in the tileset), hoping snow would replace crops as the 16th since the 16th isnt set in the editor anymore
But no, it didnt work, it was changed to dirt (not grass like before, very odd)

So once the game is told 16 tile types your stuck with those 16
Back to top Go down
AmAzIn[G]
Commander
Commander
AmAzIn[G]



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 11:11 am

Pat1487 wrote:
Each tile takes up a certain amount of space
Some tiles takes up 2, like snow
The maximum space is 16

Theres ways to make tiles that take 2 only take 1
Which i think newgen (or something within newgen) can do on its own
I used to have some weird way of doing it that i tried to explain to you but it achieves the same thing newgen does
Which you already have


This interested me though, so i did some testing of my own today when i had time
I added 16 tiles with newgen, put down some lava, ran the map, then changed lava to village crops in game
Crops wasnt in my tileset, and when i changed lava to it, it failed and ended up changing to something else that was in my tileset (grass)
Just like how yours was ending up as lava the other day when we played

So i thought maybe you could cheat by having 15 tile types and the 16th as a variable of sorts
So i put down lava in the editor, ran the map, changed it to crops (crops still wasnt in my tile set) and this worked
So now crops is taking the 16th place, so then i changed crops to snow (snow wasnt in the tileset), hoping snow would replace crops as the 16th since the 16th isnt set in the editor anymore
But no, it didnt work, it was changed to dirt (not grass like before, very odd)

So once the game is told 16 tile types your stuck with those 16

Yeah this is not true.

There are some maps that have 24+ tile sets, including maze 2011 (the one that the word maze is the path) and metastasis. Unprotect either one of those. Actually I'm pretty sure the "Maze" map is unprotected and that's what I used to get more tilesets.
Back to top Go down
Pat1487
Moderator
Moderator
Pat1487



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 12:02 pm

MAZE has 16, i just looked
Metastasis has 16 as well
Back to top Go down
AmAzIn[G]
Commander
Commander
AmAzIn[G]



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 12:36 pm

Pat1487 wrote:
MAZE has 16, i just looked
Metastasis has 16 as well

Maybe my memory fails me, but I know you can use more than 16.

There was a map I used to have that had negative space.

It basically said -12 tiles or something, so they went over 16 and +12 so they had like 28 tiles
Back to top Go down
Pat1487
Moderator
Moderator
Pat1487



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 6:55 pm

-12 is still 16 tiles
Wc3 counts the space the tile takes
So if you have 16 tiles that all take 2 spaces it would say -16
Since the space is 16 over
Back to top Go down
The_Chosen_Oreo
Corporal
Corporal
The_Chosen_Oreo



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 10:24 pm

isnt there a file inside the UI/ directory?

im too lazy too look right now but i think theres that and more..
Back to top Go down
AmAzIn[G]
Commander
Commander
AmAzIn[G]



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeThu Aug 18, 2011 10:37 pm

The_Chosen_Oreo wrote:
isnt there a file inside the UI/ directory?

im too lazy too look right now but i think theres that and more..

Can you edit the UI file to increase the number of tilesets? A lot like how you can increase the cliff sizes to infinite?
Back to top Go down
Pat1487
Moderator
Moderator
Pat1487



too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitimeMon Oct 03, 2011 10:33 pm

I know how you can add more tile types if you wanted
But it wouldnt work with terrain based triggering
It would just be an illusion of more tile types

Remember this post: https://tmmm.forumotion.com/t217-how-to-make-and-use-a-custom-tile

Quote :
For more repeating tile variation you can use a 512X256 tga pic, the extra space is used for more repeating tiles

Each one of the extra repeating tiles could be a completely different looking tile, then when you place it you can choose what variation to use for what tile you want to be seen
The edges would need to be the uniform (the yellow, green, and blues in that example) but you could make those generic/modular to work with any of the other alternate types

Each tile can have 18 variations (the 16 extra and the 2 normal ones (the orange and red))
With the 16 tiles you can normally have you can get up to 288 "virtual" tiles
The only downside is triggers that use terrain still can only use 16 tiles, unless theres a way for the trigger to get the tile variation value as well

Oh and having to make all those tiles is a pain to
You might be able to use tiles from the game, but getting them to match up together might be difficult

This idea interests me
I may make a proof of concept, with a map that contains every tile that TFT has (or at least 36 of them), if no one else tries my idea first
Back to top Go down
Sponsored content





too much terrain? Empty
PostSubject: Re: too much terrain?   too much terrain? I_icon_minitime

Back to top Go down
 
too much terrain?
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
Clan TMMM :: Warcraft 3 :: WC3 Tutorials and Help-
Jump to: