Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 5 Vote(s) - 2.2 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Escape Hell - Chapter 1 - DEMO RELEASED (Post Poned until further notice)
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#21
RE: Escape Hell (My First Custom Story) [WIP] (RESUMED)

Demo should be released in aprox: 2 weeks. Smile I finished the first map (For the demo) and I am now starting to work on the 2nd map for the demo. I am not getting people to beta test this or the full, I'm leaving that to my friends (I already have 2 of my friends waiting for me to finish). There are a few unavailable areas in the demo, and few things changed around, but eh, it will be done soon. I'm not sure about you guys, but I'm really looking forward to me finishing this!! The only other person who seems to be taking interest is my friends and Tenno Big Grin (Who has, in fact, helped me finish it, telling me to keep on going! Must remember to thank you in the credits!)

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
07-25-2011, 07:01 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#22
RE: Escape Hell (My First Custom Story) [WIP] (RESUMED)

Demo release in about 3 weeks now. I wasen't thinking when I said 2 weeks before, and I forgot I have to script everything. Northern Cells is almost done. Still have to finish a little bit of the map, add props and stuff, then scripting.

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
08-03-2011, 07:21 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#23
RE: Escape Hell (My First Custom Story) [WIP] (RESUMED)

Beta is done! My friends are testing it, and will report problems. I hope to have this uploaded by Friday Morning!

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
08-18-2011, 08:07 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#24
RE: Escape Hell (My First Custom Story) [WIP] (RESUMED)

Fixing up problems from beta, going to be away from the computer for 4 days, will upload as soon as possible!

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
08-19-2011, 03:16 AM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#25
RE: Escape Hell (My First Custom Story) [WIP] (RESUMED)

Fixing extra_english.lang problems, scripting problems.

Note that there WILL be many, many texture issues and such, as I rushed the demo to get it out.

Full Custom will be polished and fixed, and take about MAYBE 30 minutes to an hour.

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
08-24-2011, 07:30 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#26
RE: Escape Hell - Chapter 1 - DEMO RELEASED

DEMO IS UPLOADED. PLEASE PLAY!

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
09-17-2011, 02:38 AM
Find
TheKataKombs Offline
Member

Posts: 50
Threads: 7
Joined: Nov 2010
Reputation: 0
#27
RE: Escape Hell - Chapter 1 - DEMO RELEASED


void wakeUp () {
StartPlayerLookAt("servant_grunt_1", 11.0f, 11.0f, "");
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(10); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 16.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}

Error when i start: no matching signatures : StartPlayerLookAt(string@&, const float);

[Image: at_4653116.png]
09-17-2011, 03:49 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#28
RE: Escape Hell - Chapter 1 - DEMO RELEASED

(09-17-2011, 03:49 PM)TheKataKombs Wrote: void wakeUp () {
StartPlayerLookAt("servant_grunt_1", 11.0f, 11.0f, "");
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(10); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 16.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}

Error when i start: no matching signatures : StartPlayerLookAt(string@&, const float);
Strange... I can start up the story just fine....

It seems it's not finding something to do with that function (maybe not finding the monster?)

The only thing I can think of is try to redownload...

I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
09-17-2011, 04:23 PM
Find
TheKataKombs Offline
Member

Posts: 50
Threads: 7
Joined: Nov 2010
Reputation: 0
#29
RE: Escape Hell - Chapter 1 - DEMO RELEASED

(09-17-2011, 04:23 PM)XxRoCkBaNdMaNxX Wrote:
(09-17-2011, 03:49 PM)TheKataKombs Wrote: void wakeUp () {
StartPlayerLookAt("servant_grunt_1", 11.0f, 11.0f, "");
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(10); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 16.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}

Error when i start: no matching signatures : StartPlayerLookAt(string@&, const float);
Strange... I can start up the story just fine....

It seems it's not finding something to do with that function (maybe not finding the monster?)

The only thing I can think of is try to redownload...
ok thx Big Grin

[Image: at_4653116.png]
09-17-2011, 04:51 PM
Find
RawkBandMan Offline
Posting Freak

Posts: 1,146
Threads: 35
Joined: Nov 2010
Reputation: 5
#30
RE: Escape Hell - Chapter 1 - DEMO RELEASED

(09-17-2011, 04:51 PM)TheKataKombs Wrote:
(09-17-2011, 04:23 PM)XxRoCkBaNdMaNxX Wrote:
(09-17-2011, 03:49 PM)TheKataKombs Wrote: void wakeUp () {
StartPlayerLookAt("servant_grunt_1", 11.0f, 11.0f, "");
FadeOut(0); // Instantly fades the screen out. (Good for starting the game)
FadeIn(10); // Amount of seconds the fade in takes
FadeImageTrailTo(2, 2);
FadeSepiaColorTo(100, 4);
SetPlayerActive(false);
FadePlayerRollTo(50, 220, 220); // "Tilts" the players head
FadeRadialBlurTo(0.15, 2);
SetPlayerCrouching(true); // Simulates being on the ground
AddTimer("trig1", 16.0f, "beginStory"); // Change '11.0f' to however long you want the 'unconciousness' to last
}

Error when i start: no matching signatures : StartPlayerLookAt(string@&, const float);
Strange... I can start up the story just fine....

It seems it's not finding something to do with that function (maybe not finding the monster?)

The only thing I can think of is try to redownload...
ok thx Big Grin
Oopsie.

I uploaded an old .rar of this custom instead of the new working version.

Here's the link to the moddb page with the download waiting authorization.
http://www.moddb.com/mods/escape-hell-ch...o/#2472922



I've come to learn to not fear the living, nor the dead... But the monsters that hide in closets.
09-18-2011, 06:35 PM
Find




Users browsing this thread: 2 Guest(s)