Author Topic: PLEASE HELP ME!!  (Read 2879 times)

Offline Wolfexpert79

  • Finest Floof
  • ***
  • Posts: 737
  • Floof-O-Meter: 45
  • I'm...shocked...T_T
    • View Profile
    • Gierra RPG Forum
PLEASE HELP ME!!
« on: October 12, 2011, 05:30:59 pm »
i made a HUGE mistake today. i followed this tutorial http://feral-heart.com/index.php?option=com_jfusion&Itemid=2&jfile=index.php&topic=8323.0 and once i did what it asked me to my game wont even open! why? because it told me to DELETE HALF OF THE GAME'S WATER MATERIAL FILE! now the game won't even open! can somebody please send me a copy of the game's water material file so i can get the game to work again?

sorry for all of the caps btw  :-\

Offline smokey ash

  • Dedicated Supporter
  • ***
  • Posts: 393
  • Floof-O-Meter: 101
  • :D
    • View Profile
Re: PLEASE HELP ME!!
« Reply #1 on: October 12, 2011, 05:35:05 pm »
Now there is no need for the caps on the title and plese state your problem when you post the poll But Anyway First try going into your bust bin and find the files and restore them if that does not work just Uninstall the game then install the game again :) it should work again Hope This Helps -Adjazz-
THIS ACCOUNT IS NO LONGER IS USE.
IF YOU WISH TO FIND ME CONTACT;

Black_Veil_Brides on the forum.
Or blackVbrides ingame

Offline Wolfexpert79

  • Finest Floof
  • ***
  • Posts: 737
  • Floof-O-Meter: 45
  • I'm...shocked...T_T
    • View Profile
    • Gierra RPG Forum
Re: PLEASE HELP ME!!
« Reply #2 on: October 12, 2011, 05:38:55 pm »
it would be easier for somebody just to pm me the water material file from their computer because it's the same for everyone right? and i'm not going to reinstall it because won't i lose all the maps i made and stuff? my parents barely let me download it the first time...

Offline Jitters

  • Mutant Turtle
  • Elder Grey Pelt
  • ****
  • Posts: 2,624
  • Country: ca
  • Floof-O-Meter: 146
  • Hero in a Half Shell!
    • View Profile
Re: PLEASE HELP ME!!
« Reply #3 on: October 12, 2011, 05:42:05 pm »
You won't lose your downloaded stuff! My water files are edited, so I can't send mine.

Also, we can't attach files to PMs I don't think. It would be a download link.


Do you still have the installer?

Offline Wolfexpert79

  • Finest Floof
  • ***
  • Posts: 737
  • Floof-O-Meter: 45
  • I'm...shocked...T_T
    • View Profile
    • Gierra RPG Forum
Re: PLEASE HELP ME!!
« Reply #4 on: October 12, 2011, 05:43:11 pm »
thats ok i can download water files. plus i can't get it from the recycle bin because the tutorial told me to delete what's inside the file not the file itself

Offline Jitters

  • Mutant Turtle
  • Elder Grey Pelt
  • ****
  • Posts: 2,624
  • Country: ca
  • Floof-O-Meter: 146
  • Hero in a Half Shell!
    • View Profile
Re: PLEASE HELP ME!!
« Reply #5 on: October 12, 2011, 05:48:55 pm »
Out of curiosity..what did you delete? I've used the tutorial before and it works fine. the tutorial also tells you to make a copy and save as a different name, it doesn't tell you to actually delete stuff from the original water file,

Here is the coding for you. Read the whole guide next time.


Code: [Select]
vertex_program WaterVP cg
{
source water.cg
entry_point water_VP
profiles vs_1_1 arbvp1
}

fragment_program WaterFP cg
{
source water.cg
entry_point water_FP
profiles ps_2_0 arbfp1
}

fragment_program UnderWaterFP cg
{
source water.cg
entry_point underwater_FP
profiles ps_2_0 arbfp1
}

material WaterMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off

texture_unit
{
texture waterTex1.png
scale 0.4 0.4
scroll_anim -0.05 -0.05
}
texture_unit
{
texture waterTex2.png
scale 0.5 0.5
scroll_anim -0.08 0.1
}
}
}
}
material OceanMat
{
technique
{
pass
{
lighting off
cull_hardware none
cull_software none
scene_blend alpha_blend
depth_write off

texture_unit
{
texture waterTex1.png
scale 0.5 0.5
scroll_anim -0.03 -0.05
rotate 90
}
texture_unit
{
texture waterTex2.png
scale 0.4 0.4
scroll_anim -0.05 0.01
rotate 90
}
}
}
}
material WaterReflectMat
{
technique
{
pass
{
//depth_write off
scene_blend alpha_blend
vertex_program_ref WaterVP
{
param_named_auto worldViewProjMatrix worldviewproj_matrix
param_named_auto timeVal time 0.05
param_named scroll float 2
param_named scale float 1
param_named noise float 1
}
fragment_program_ref WaterFP
{
param_named colourTint float3 0.25 0.27 0.28
param_named noiseScale float 0.04
}
texture_unit
{
texture waves2.dds
filtering linear linear none
}
}

}
}
material UnderWaterMat
{
technique
{
pass
{
cull_hardware none
cull_software none
vertex_program_ref WaterVP
{
param_named_auto worldViewProjMatrix worldviewproj_matrix
param_named_auto timeVal time 0.05
param_named scroll float 2
param_named scale float 1
param_named noise float 1
}
fragment_program_ref UnderWaterFP
{
param_named colourTint float3 0.95 0.97 0.98
param_named noiseScale float 0.04
}
texture_unit
{
texture waves2.dds
filtering linear linear none
}
}

}
}
« Last Edit: October 12, 2011, 05:51:51 pm by Sameth »

Offline Wolfexpert79

  • Finest Floof
  • ***
  • Posts: 737
  • Floof-O-Meter: 45
  • I'm...shocked...T_T
    • View Profile
    • Gierra RPG Forum
Re: PLEASE HELP ME!!
« Reply #6 on: October 12, 2011, 05:58:18 pm »
yay my game works again thanks  ;D maybe i will read that tutorial again because from what i read it said don't click save as just save. but i didn't see anything telling me to put the file somewhere else  :-\

Offline Jitters

  • Mutant Turtle
  • Elder Grey Pelt
  • ****
  • Posts: 2,624
  • Country: ca
  • Floof-O-Meter: 146
  • Hero in a Half Shell!
    • View Profile
Re: PLEASE HELP ME!!
« Reply #7 on: October 13, 2011, 03:25:28 am »
It says right in the first box! " Make a copy of the whole file and paste the copy in there"

You are editing the copy, not the original file.

Offline smokey ash

  • Dedicated Supporter
  • ***
  • Posts: 393
  • Floof-O-Meter: 101
  • :D
    • View Profile
Re: PLEASE HELP ME!!
« Reply #8 on: October 13, 2011, 09:52:53 pm »
xD
THIS ACCOUNT IS NO LONGER IS USE.
IF YOU WISH TO FIND ME CONTACT;

Black_Veil_Brides on the forum.
Or blackVbrides ingame

Offline ringoluver

  • Delay's Nop.
  • Community Champion
  • ****
  • Posts: 2,361
  • Country: us
  • Floof-O-Meter: 227
    • ringoluver
    • lavenderdaze
    • View Profile
Re: PLEASE HELP ME!!
« Reply #9 on: October 13, 2011, 10:45:52 pm »
Pffft I told you in the tutorial to make a COPY of the game's water material file and edit that. Just send me a PM next time and I'll help you.


Signature Art by Bawfle, Icon Art by Edolicious