The Everything you need thread!!!

Leave us posts on anything related to your views on gametoast.com, improvements, gripes, etc...

Moderator: Moderators

Taivyx
2008 Best Games Related Avatar
Posts: 1706
Joined: Thu Jun 07, 2007 3:34 pm
Projects :: Terra Strife - discontinued
Games I'm Playing :: none
xbox live or psn: No gamertag set
Contact:

Re: The Everything you need thread!!!

Post by Taivyx »

Taivyx wrote:Ok really we need that FAQ back ASAP.
If possible, guru, can you access the thread, copy it's contents, and repost it?

Also, if any of the tuts in there have their first post missing, then can you also re-access those and re-post them?
Um, it's really getting out of hand, it's been what, 4 weeks, some new/returning modders are coming in, seeing no FAQ, and those working on maps at the moment are having a hard time at the moment.
So I would really like that question answered.
I know someone's going to tell me to be patient, but if there could be a faster way out of this dilemma, why not find out if we can or cannot do it?
EGG_GUTS
Master Bounty Hunter
Master Bounty Hunter
Posts: 1626
Joined: Thu Dec 07, 2006 7:38 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: CANADA!

Re: The Everything you need thread!!!

Post by EGG_GUTS »

I agree with Taivyx, not Just the FAQ but all the first posts are still missing, too.
Grev
Hoth Battle Chief
Hoth Battle Chief
Posts: 3132
Joined: Sun Dec 09, 2007 11:45 pm
Projects :: No Mod project currently.
Games I'm Playing :: Minecraft
Location: A Certain Box Canyon

Re: The Everything you need thread!!!

Post by Grev »

Ive found the Campaign Tut by RC-1290 "Dreadnought"

If anyone has any tuts faved on their computer (I think I also have water, and new sides faved) we can begin for now a new recollection.
User avatar
SBF_Dann_Boeing
Groove Walrus
Groove Walrus
Posts: 1529
Joined: Wed Aug 31, 2005 11:33 pm
xbox live or psn: No gamertag set
Location: An Igloo High Upon a Mountain Top

Re: The Everything you need thread!!!

Post by SBF_Dann_Boeing »

Seriously, i will bow down to Guru if he can get this fixed. It's starting to wreak havoc. People can't find links and are going crazy asking for them, as well as for tutorials, and I could really use that water tutorial right now... Maybe I can find some moneys to help out.

Water tutorial: http://www.gametoast.com/forums/viewtopic.php?t=7776 Love, GT Staff
Fingerfood
Sith
Sith
Posts: 1262
Joined: Fri Nov 30, 2007 9:40 pm

Re: The Everything you need thread!!!

Post by Fingerfood »

Well, here's the water tut. I'm so glad I quoted Ace. :mrgreen:
Hidden/Spoiler:
[quote="AceMastermind"]Try this, it works everytime for me.

How to add water to your map(ponds, lakes, rivers....etc):
NOTE: "ABC" IS ONLY AN EXAMPLE OF A modID, your 3 letter name may be different.

We will use the water of Kashyyyk (kas2), of course it can be other maps used as the base file that also contain water.

First you have to open your "ABC.req" file (data_ABC/worlds/ABC/world1/ABC.req),in that file is where you have to set your water textures!

Then open kas2.req (Assets/Worlds/Kas/world2) and scroll down the column for:
[code]REQN {
"texture"
"platform=pc"[/code]

and just copy this part of kas2.req (Assets/Worlds/Kas/world2) then paste it in your ABC.req under "texture", then save it.

[code] "water_bumpmap_0"
"water_bumpmap_1"
"water_bumpmap_2"
"water_bumpmap_3"
"water_bumpmap_4"
"water_bumpmap_5"
"water_bumpmap_6"
"water_bumpmap_7"
"water_bumpmap_8"
"water_bumpmap_9"
"water_bumpmap_10"
"water_bumpmap_11"
"water_bumpmap_12"
"water_bumpmap_13"
"water_bumpmap_14"
"water_bumpmap_15"

"water_normalmap_0"
"water_normalmap_1"
"water_normalmap_2"
"water_normalmap_3"
"water_normalmap_4"
"water_normalmap_5"
"water_normalmap_6"
"water_normalmap_7"
"water_normalmap_8"
"water_normalmap_9"
"water_normalmap_10"
"water_normalmap_11"
"water_normalmap_12"
"water_normalmap_13"
"water_normalmap_14"
"water_normalmap_15"

"water_specularmask_0"
"water_specularmask_1"
"water_specularmask_2"
"water_specularmask_3"
"water_specularmask_4"
"water_specularmask_5"
"water_specularmask_6"
"water_specularmask_7"
"water_specularmask_8"
"water_specularmask_9"
"water_specularmask_10"
"water_specularmask_11"
"water_specularmask_12"
"water_specularmask_13"
"water_specularmask_14"
"water_specularmask_15"
"water_specularmask_16"
"water_specularmask_17"
"water_specularmask_18"
"water_specularmask_19"
"water_specularmask_20"
"water_specularmask_21"
"water_specularmask_22"
"water_specularmask_23"
"water_specularmask_24"[/code]

With your ABC.req still open scroll down to this section:
[code]REQN {
"envfx"
"ABC"
} [/code]
This section calls the envfx(environment effects) file and is called ABC.fx which has not been created yet.
We need another .fx file to know what it does.
We used Kashyyyk as the sample map so we have to go in the world folder of Kashyyyk (Assets/Worlds/Kas/World2) and search for the kas2.fx file then copy it and paste it into your:
data_ABC/worlds/ABC/world1 folder.
Now you have kas2.fx in your folder and have to rename it because your ModID(ABC) is not kas2 right?
Rename the kas2.fx file to ABC.fx.

Now open your ABC.fx file and scroll down to this section:

[code]PC()
{
Tile(2.0,2.0);
MainTexture("kas2_water.tga"); <================
LODDecimation(1);
RefractionColor(5, 217, 255, 255);
ReflectionColor(57,90,138,255);
UnderwaterColor(61, 124, 144, 128);
FresnelMinMax(0.3,0.6);
FarSceneRange(1500)[/code]

The file needs a texture called: kas2_water.tga

Now go to:
Assets/Worlds/Kas/world2
folder and search for this .tga and copy it into your:
data_ABC/worlds/ABC/world1 folder!

You also have to copy the other necessary files!
Go to:
assets/worlds/kas/effects/PC
and copy the whole "PC" folder which contains all of the files required for water to work, and paste it into your:
data_ABC/worlds/ABC/effects folder!
If you don't have an effects folder in data_ABC/worlds/ABC then create one.


Now you have to place water on your map using ZeroEditor:

1. Click on the Water edit mode between Texture and Foliage
2. You see on the left side a box with fields to change. Make these changes:
width = "1" and depth = "1"
Layer = "1"
u vel = "0.02" and v vel = "0.02" (This helps to modify it for waves, if required)
u rept = "1" and v rept = "1"
texture = blank (Don't fill anything in there)
color = 0, 0, 200
alpha = 255 (Alpha is the transparency of the water. 0 = Invisible, 255 = Completely Visible)
glow = off <------unused

Add water as you would texture the terrain.
Save world, munge and try it out!

Rippentuck's original tutorial[/quote]
Taivyx
2008 Best Games Related Avatar
Posts: 1706
Joined: Thu Jun 07, 2007 3:34 pm
Projects :: Terra Strife - discontinued
Games I'm Playing :: none
xbox live or psn: No gamertag set
Contact:

Re: The Everything you need thread!!!

Post by Taivyx »

Why don't get up a collection of tut's we've saved up here for now so we can abate the crisis somewhat.


Custom Sounds Tut by MajinRevan/PR-0927
Xavious
Sith Master
Sith Master
Posts: 2783
Joined: Mon Jun 12, 2006 3:46 pm

Re: The Everything you need thread!!!

Post by Xavious »

Taivyx
2008 Best Games Related Avatar
Posts: 1706
Joined: Thu Jun 07, 2007 3:34 pm
Projects :: Terra Strife - discontinued
Games I'm Playing :: none
xbox live or psn: No gamertag set
Contact:

Re: The Everything you need thread!!!

Post by Taivyx »

Whoooooops, didn't notice that at all, but now that I did, that's gonna be uber-helpful :D
Crazy_Ewok
2008 Best Amateur Avatar
Posts: 256
Joined: Wed Jan 23, 2008 6:49 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set
Location: Somewhere in the Midwest

Re: The Everything you need thread!!!

Post by Crazy_Ewok »

Teancum wrote:Welcome to the new FAQ/Everything You Need thread since the old one decided to take the red pill.
:funny2: Yay!! Matrix joke. Its good to have the Everything You Need thread back. Thanks to everyone that helped put it back together.
Grev
Hoth Battle Chief
Hoth Battle Chief
Posts: 3132
Joined: Sun Dec 09, 2007 11:45 pm
Projects :: No Mod project currently.
Games I'm Playing :: Minecraft
Location: A Certain Box Canyon

Re: The Everything you need thread!!!

Post by Grev »

Rofl, I get it. This one looks even better!
Post Reply