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


Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script - Custom Ambient Map Scares - Free Download!
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#1
Star  Script - Custom Ambient Map Scares - Free Download!

Hello Forum!

As I'm sure many of you know, horror games benefit a lot from using scares that is not necessarily caused by or meant for the player. A book randomly falling from a shelf somewhere in the map that the player has no control over is an example of this. The falling book might not be in the same room as the player, it might not be noticed and chances are that it did nothing at all to affect the player. However, when it does work, it works incredibly well.

This technique puts another dimension to the game and makes the player really feel like they're inside it. It's no longer "Damn, that was scary!", but more like "Why did that happen...?". Questioning events that happens around you and feeling like you're not the one triggering them removes the distance between the player sitting in the chair by his computer and the scares in the game.

I'm sure I could have explained this better. However, now we get to the good part.

I have created a script that I call "Custom Ambient Map Scares". This is basically something that I can copy into my maps, add some filenames to, and by doing that I can effectivaly add an automatic scare triggerer.

What it does is, it triggers random events, or functions, at random times during the time the player spends in the map. The time between the event is easily manageable, and so is the actual function calls. I use simple and easy techniques to simulate percantage-chances and different levels of "sizes" of the functions, as well as how much it affects the player.

This took a long time to create, and a lot of thinking about how I wanted it to be had to be done. Now I have a first and simple product, and I thought, why not save my fellow programmers on the Frictional Forum from the hours of thinking and scripting to create the same effect?

Below I will paste a copy of my script, and you're all free to use it in your mods. However, I would like you to put my name in the credits. I cannot force everyone to do it, but I am asking you to show me the same respect as I'm showing you right now.

If you like this this, and think it's a good idea, please let me know. If the feedback is good, I will happily continue to develop this script into something perfect that I'll share with you all, and might even submit to the wiki. Tips and help is much appreciated too!

PHP Code: (Select All)
/////////////////////////////////////////////////////////
/////          -     CUSTOM AMBIENT MAP SCARES    -        /////
/////          -          CREATED BY WAPEZ        -        /////
//////////      -            STARTS HERE            -  //////////

void RandomWindSound(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Plays a random WIND sound on one of the specified areas.
    // Timer is originally set between float values 5.0 and 20.0 seconds.
    // Timer: AmbientWindSoundsTimer
    //-----------------------------------||-----------------------------------//

    
if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_1"){    //FINDS OUT WHICH PART OF THE MAP THE PLAYER IS LOCATED IN
        
SetLocalVarInt("WS_AreaNumber"RandInt1));                //DEPENDING ON WHERE THE PLAYER IS, PLAY SOUNDS ON DIFFERENT AREAS
        
AddDebugMessage("Playing sounds in CAMS_1"false);                //ADD DEBUG MESSAGE FOR TESTING PURPOSES
    
}
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_2"){    //FINDS OUT WHICH PART OF THE MAP THE PLAYER IS LOCATED IN
        
SetLocalVarInt("WS_AreaNumber"RandInt813 ));                //DEPENDING ON WHERE THE PLAYER IS, PLAY SOUNDS ON DIFFERENT AREAS
        
AddDebugMessage("Playing sounds in CAMS_2"false);                //ADD DEBUG MESSAGE FOR TESTING PURPOSES
    
}
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_3"){    //FINDS OUT WHICH PART OF THE MAP THE PLAYER IS LOCATED IN
        
SetLocalVarInt("WS_AreaNumber"RandInt1419 ));                //DEPENDING ON WHERE THE PLAYER IS, PLAY SOUNDS ON DIFFERENT AREAS
        
AddDebugMessage("Playing sounds in CAMS_3"false);                //ADD DEBUG MESSAGE FOR TESTING PURPOSES
    
}
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_4"){    //FINDS OUT WHICH PART OF THE MAP THE PLAYER IS LOCATED IN
        
SetLocalVarInt("WS_AreaNumber"RandInt2027 ));                //DEPENDING ON WHERE THE PLAYER IS, PLAY SOUNDS ON DIFFERENT AREAS
        
AddDebugMessage("Playing sounds in CAMS_4"false);                //ADD DEBUG MESSAGE FOR TESTING PURPOSES
    
}
    
    
int WS_CountNumber RandInt1);
    
    if( 
WS_CountNumber == PlaySoundAtEntity"""general_wind_blow.snt""WindSoundArea_" GetLocalVarInt("WS_AreaNumber"), 0false); // PLAYS SOUND
    
if( WS_CountNumber == PlaySoundAtEntity"""general_wind_whirl.snt""WindSoundArea_" GetLocalVarInt("WS_AreaNumber"), 0false); // PLAYS SOUND
    
    
AddDebugMessage("Played sound at WindSoundArea_" GetLocalVarInt("WS_AreaNumber"), false);
    
    
float AmbientWindSoundsTimerNumber RandFloat10.0f25.0f ); //CALCULATES NEW TIMER VALUE
    
    
AddTimer("aw_soundstimer"AmbientWindSoundsTimerNumber"RandomWindSound"); //ACTIVATES NEW TIMER
}

void RandomStepsSound(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Plays a random STEPS sound on one of the specified areas.
    // Timer is originally set between float values 10.0 and 25.0 seconds.
    // Timer: AmbientStepsSoundsTimer
    //-----------------------------------||-----------------------------------//

    
if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_1"){
        
SetLocalVarInt("SS_AreaNumber"RandInt112 ));
        
AddDebugMessage("Playing sounds in CAMS_1"false);
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_2"){
        
SetLocalVarInt("SS_AreaNumber"RandInt1320 ));
        
AddDebugMessage("Playing sounds in CAMS_2"false);
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_3"){
        
SetLocalVarInt("SS_AreaNumber"RandInt2131 ));
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_4"){
        
SetLocalVarInt("SS_AreaNumber"RandInt3244 ));
    }
    
    
int SS_CountNumber RandInt1);
    
    if( 
SS_CountNumber == PlaySoundAtEntity"""step_run_rock_rev.snt""StepsSoundArea_" GetLocalVarInt("SS_AreaNumber"), 0false);
    if( 
SS_CountNumber == PlaySoundAtEntity"""step_sneak_rock_rev.snt""StepsSoundArea_" GetLocalVarInt("SS_AreaNumber"), 0false);
    if( 
SS_CountNumber == PlaySoundAtEntity"""step_walk_rock_rev.snt""StepsSoundArea_" GetLocalVarInt("SS_AreaNumber"), 0false);
    
    
AddDebugMessage("Played sound at StepsSoundArea_" GetLocalVarInt("SS_AreaNumber"), false);
    
    
float AmbientStepsSoundsTimerNumber RandFloat10.0f25.0f );
    
    
AddTimer("as_soundstimer"AmbientStepsSoundsTimerNumber"RandomStepsSound");
}

void RandomScrapeSound(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Plays a random SCRAPE sound on one of the specified areas.
    // Timer is originally set between float values 3.0 and 15.0 seconds.
    // Timer: AmbientStepsSoundsTimer
    //-----------------------------------||-----------------------------------//
    
    
if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_1"){
        
SetLocalVarInt("ScS_AreaNumber"RandInt110 ));
        
AddDebugMessage("Playing sounds in CAMS_1"false);
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_2"){
        
SetLocalVarInt("ScS_AreaNumber"RandInt1120 ));
        
AddDebugMessage("Playing sounds in CAMS_2"false);
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_3"){
        
SetLocalVarInt("ScS_AreaNumber"RandInt2133 ));
    }
    if(
GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_4"){
        
SetLocalVarInt("ScS_AreaNumber"RandInt3445 ));
    }
    
    
PlaySoundAtEntity("scrape_sound" GetLocalVarInt("ScS_AreaNumber"), "scare_wall_crawl_single.snt""ScrapeSoundArea_" GetLocalVarInt("ScS_AreaNumber"), 0.0ffalse);
    
    
AddDebugMessage("Played sound at ScrapeSoundArea_" GetLocalVarInt("ScS_AreaNumber"), false);
    
    
float AmbientScrapeSoundsTimerNumber RandFloat3.0f15.0f );
    
    
AddTimer("as_soundstimer"AmbientScrapeSoundsTimerNumber"RandomScrapeSound");
}

void RandomVoiceSound(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Plays a random VOICE sound on one of the specified areas.
    // Timer is originally set between float values 30.0 and 120.0 seconds.
    // Timer: AmbientVoiceSoundsTimer
    //-----------------------------------||-----------------------------------//

    /* ACTIVATE FOR PLAYING SOUNDS AT RANDOM AREAS INSTEAD OF AT THE PLAYER
    if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_1"){
        SetLocalVarInt("VS_AreaNumber", RandInt( 1, 7 ));
        AddDebugMessage("Playing sounds in CAMS_1", false);
    }
    if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_2"){
        SetLocalVarInt("VS_AreaNumber", RandInt( 8, 13 ));
        AddDebugMessage("Playing sounds in CAMS_2", false);
    }
    if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_3"){
        SetLocalVarInt("VS_AreaNumber", RandInt( 14, 19 ));
    }
    if(GetLocalVarString("CAMS_State") == "CustomAmbientMapScares_4"){
        SetLocalVarInt("VS_AreaNumber", RandInt( 20, 27 ));
    }
    */
    
    
int VS_CountNumber RandInt1);
    
    if( 
VS_CountNumber == PlaySoundAtEntity"""insanity_whisper.snt""Player"0false);
    if( 
VS_CountNumber == PlaySoundAtEntity"""scare_baby_cry.snt""Player"0false);
    
    
AddDebugMessage("Played voice sound at Player"false);
    
    
float AmbientVoiceSoundsTimerNumber RandFloat30.0f120.0f ); //CALCULATE NEW TIMER VALUE
    
    
AddTimer("av_soundstimer"AmbientVoiceSoundsTimerNumber"RandomVoiceSound"); //ACTIVATE NEW TIMER
}

void RandomObjectPushFunction(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Adds a pushing force to one of the specified entities by a random amount.
    // Uses categories to select which kind of entity to be pushed.
    // The chance of every category to trigger is different.
    // Strength of push is randomized within the assigned values.
    // Timer is originally set between float values 30.0 and 60.0 seconds.
    // Timer: AmbientObjectFallFunctionTimer
    //-----------------------------------||-----------------------------------//

    
int OP_CategoryNumber RandInt1100 ); // GENERATES A RANDOM NUMBER BETWEEN 1 AND 100.
    
    
if( OP_CategoryNumber <= 40 // THE NUMBER REPRESENTS THE PERCENTAGE CHANCE OF THIS CATEGORY BEING TRIGGERED. ONLY USES ONE VALUE SINCE IT'S THE FIRST CATEGORY.
    
{
        
//-----------------------------------||-----------------------------------//
        // Book category. 
        // Mainly used for pushing down books from shelves.
        // Default chance on trigger: 40%
        // Default pushing values: 75 - 150
        //-----------------------------------||-----------------------------------//
        
        
int Book_CategoryNumber RandInt1); // DECIDES WHICH DIRECTION-CATEGORY TO CHOOSE
        
        
int PushAmount RandInt75150 ); // DECIDES THE STRENGTH OF THE PUSH
     
        ///// - PUSH X DIRECTION - /////
        
if( Book_CategoryNumber == 1){
            
int Book_Number RandInt1);  // FIRST VALUE ALWAYS 1, SECOND VALUE IS AMOUNT OF BOOKS
            
AddPropForce("push_book_x_" Book_NumberPushAmount00"world"); // PUSHES THE BOOK
        
}
        
        
///// - PUSH Z DIRECTION - /////
        
if( Book_CategoryNumber == 2){
            
int Book_Number RandInt1); // FIRST VALUE ALWAYS 1, SECOND VALUE IS AMOUNT OF BOOKS
            
AddPropForce("push_book_z_" Book_Number00, -PushAmount"world"); // PUSHES THE BOOK
        
}
        
///// - PUSH NEGATIVE X DIRECTION - /////
        
if( Book_CategoryNumber == 3){
            
int Book_Number RandInt1);  // FIRST VALUE ALWAYS 1, SECOND VALUE IS AMOUNT OF BOOKS
            
AddPropForce("push_book_-x_" Book_Number, -PushAmount00"world"); // PUSHES THE BOOK
        
}
        
        
///// - PUSH NEGATIVE Z DIRECTION - /////
        
if( Book_CategoryNumber == 4){
            
int Book_Number RandInt1); // FIRST VALUE ALWAYS 1, SECOND VALUE IS AMOUNT OF BOOKS
            
AddPropForce("push_book_-z_" Book_Number00PushAmount"world"); // PUSHES THE BOOK
        
}  
    }
    
    if( 
OP_CategoryNumber 40 && OP_CategoryNumber <= 60 // DECIDES TRIGGER CHANCE. (SECOND VALUE) - (FIRST VALUE) = PERCENTAGE CHANCE OF CATEGORY BEING TRIGGERED.
    
{
        
//-----------------------------------||-----------------------------------//
        // Container category.
        // Mainly used to push containers over ledges.
        // Default chance on trigger: 20%
        // Default pushing values: 400 - 500
        //-----------------------------------||-----------------------------------//
        
        
int Container_CategoryNumber RandInt1);
        
        
int PushAmount RandInt400500 );
     
        
///// - PUSH X DIRECTION - /////
        
if( Container_CategoryNumber == 1){
            
int Container_Number RandInt1); //ONLY USE ONE CONTAINER
            
AddPropForce("push_container_x_" Container_NumberPushAmount00"world");
        }
        
        
///// - PUSH Z DIRECTION - /////
        
if( Container_CategoryNumber == 2){
            
int Container_Number RandInt1);
            
AddPropForce("push_container_z_" Container_Number00PushAmount"world");
        }
        
        
///// - PUSH NEGATIVE X DIRECTION - /////
        
if( Container_CategoryNumber == 3){
            
int Container_Number RandInt1);
            
AddPropForce("push_container_-x_" Container_Number, -PushAmount00"world");
        }
        
        
///// - PUSH NEGATIVE Z DIRECTION - /////
        
if( Container_CategoryNumber == 4){
            
int Container_Number RandInt1);
            
AddPropForce("push_container_-z_" Container_Number00, -PushAmount"world");
        }
    }
    
    if( 
OP_CategoryNumber 60 && OP_CategoryNumber <= 80 )
    {
        
//-----------------------------------||-----------------------------------//
        // Bottle category.
        // Mainly used for pushing bottles, glasses and goblets off of tables.
        // Default chance on trigger: 20%
        // Default pushing values: 75 - 150
        //-----------------------------------||-----------------------------------//
        
        
int Bottle_CategoryNumber RandInt1);
        
        
int PushAmount RandInt75150 );
     
        
///// - PUSH X DIRECTION - /////
        
if( Bottle_CategoryNumber == 1){
            
int Bottle_Number RandInt1);
            
AddPropForce("push_bottle_x_" Bottle_NumberPushAmount00"world");
        }
        
        
///// - PUSH Z DIRECTION - /////
        
if( Bottle_CategoryNumber == 2){
            
int Bottle_Number RandInt1);
            
AddPropForce("push_bottle_z_" Bottle_Number00PushAmount"world");
        }
        
        
///// - PUSH NEGATIVE X DIRECTION - /////
        
if( Bottle_CategoryNumber == 3){
            
int Bottle_Number RandInt1);
            
AddPropForce("push_bottle_-x_" Bottle_Number, -PushAmount00"world");
        }
        
        
///// - PUSH NEGATIVE Z DIRECTION - /////
        
if( Bottle_CategoryNumber == 4){
            
int Bottle_Number RandInt1);
            
AddPropForce("push_bottle_-z_" Bottle_Number00, -PushAmount"world");
        }
        
    }
    
    if( 
OP_CategoryNumber 80 && OP_CategoryNumber <= 90 )
    {
        
//-----------------------------------||-----------------------------------//
        // Lamp category.
        // Mainly used to give chandeliers a light push.
        // Chance on trigger: 10%
        // Default pushing values: (-500) - 500
        //-----------------------------------||-----------------------------------//
        
        
int PushAmount RandInt( -500 500 );
        
        
int Lamp_Number RandInt1);
        
        
AddPropForce("push_lamp_" Lamp_NumberPushAmount0PushAmount"world");
    }
    
    if( 
OP_CategoryNumber 90 && OP_CategoryNumber <= 100 )
    {
        
//-----------------------------------||-----------------------------------//
        // "Other" category.
        // Remaining entities may be placed in this category.
        // Chance on trigger: 10%
        // Default pushing values: 200 - 300
        //-----------------------------------||-----------------------------------//
        
        
int Other_CategoryNumber RandInt1);
        
        
int PushAmount RandInt200300 );
     
        
///// - PUSH X DIRECTION - /////
        
if( Other_CategoryNumber == 1){
            
int Other_Number RandInt1);
            
AddPropForce("push_other_x_" Other_NumberPushAmount00"world");
        }
        
        
///// - PUSH Z DIRECTION - /////
        
if( Other_CategoryNumber == 2){
            
int Other_Number RandInt1);
            
AddPropForce("push_other_z_" Other_Number00PushAmount"world");
        }
        
        
///// - PUSH X DIRECTION - /////
        
if( Other_CategoryNumber == 3){
            
int Other_Number RandInt1);
            
AddPropForce("push_other_-x_" Other_Number, -PushAmount00"world");
        }
        
        
///// - PUSH Z DIRECTION - /////
        
if( Other_CategoryNumber == 4){
            
int Other_Number RandInt1);
            
AddPropForce("push_other_-z_" Other_Number00, -PushAmount"world");
        }
        
    }
    
    
AddDebugMessage("Pushed an object!"false);
    
    
float AmbientObjectPushFunctionTimerNumber RandFloat30.0f60.0f );
    
    
AddTimer("aof_functiontimer"AmbientObjectPushFunctionTimerNumber"RandomObjectPushFunction");
}

void RandomPlayerScareFunction(string &in asTimer)
{
    
//-----------------------------------||-----------------------------------//
    // Starts an event that is based on and affects the player.
    // Timer is originally set between float values 60.0 and 300.0 seconds.
    // Timer: AmbientPlayerScareFunctionTimer
    //-----------------------------------||-----------------------------------//
    
    
    
}

void ChangeCAMSState(string &in asParentstring &in asChildint alState)
{
    
SetLocalVarString("CAMS_State"asChild);
    
AddDebugMessage("Changed CAMS_State to " asChildfalse);
}

void StartCustomAmbientMapScares()
{
    
////////////////////////////////////////////////////
    //        GENERATE RANDOM VALUE FOR TIMERS        //
    
float AmbientWindSoundsTimerNumber RandFloat10.0f25.0f );
    
float AmbientStepsSoundsTimerNumber RandFloat10.0f25.0f );
    
float AmbientVoiceSoundsTimerNumber RandFloat30.0f120.0f );
    
float AmbientScrapeSoundsTimerNumber RandFloat3.0f15.0f );
    
    
float AmbientObjectPushFunctionTimerNumber RandFloat30.0f60.0f );
    
float AmbientPlayerScareFunctionTimerNumber RandFloat60.0f300.0f );

    
//////////////////////////////////////////////////////////////////////////
    //        ADD THE COUNTING TIMERS WITH THE RANDOMLY GENERATED VALUE     //
    
AddTimer("aw_soundstimer_first"AmbientWindSoundsTimerNumber"RandomWindSound");
    
AddTimer("as_soundstimer_first"AmbientStepsSoundsTimerNumber"RandomStepsSound");
    
AddTimer("av_soundstimer_first"AmbientVoiceSoundsTimerNumber"RandomVoiceSound");
    
AddTimer("asc_soundstimer_first"AmbientScrapeSoundsTimerNumber"RandomScrapeSound");

    
AddTimer("aof_functiontimer_first"AmbientObjectPushFunctionTimerNumber"RandomObjectPushFunction");
    
AddTimer("aps_functiontimer_first"AmbientPlayerScareFunctionTimerNumber"RandomPlayerScareFunction");
    
    
//////////////////////////////////////////////////////////////////////////
    //         INITIATE STATE-CHANGING FUNCTIONS AND SET DEFAULT TO 1            //
    
AddEntityCollideCallback("Player""CustomAmbientMapScares_1""ChangeCAMSState"false1);
    
AddEntityCollideCallback("Player""CustomAmbientMapScares_2""ChangeCAMSState"false1);
    
AddEntityCollideCallback("Player""CustomAmbientMapScares_3""ChangeCAMSState"false1);
    
AddEntityCollideCallback("Player""CustomAmbientMapScares_4""ChangeCAMSState"false1);
    
    
SetLocalVarString("CAMS_State""CustomAmbientMapScares_1");
}
    
//////////      -  CUSTOM AMBIENT MAP SCARES    -      //////////
/////          -          CREATED BY WAPEZ        -          /////
/////           -              ENDS HERE            -            /////
/////////////////////////////////////////////////////////// 

________________________________________________________________________________________________________________________________________________________________

Spoiler below!

Functions created and used:

RandomWindSound()
- Plays a random WIND sound on one of the specified areas.
- Timer is originally set between float values 10.0 and 25.0 seconds.
- Timer: AmbientWindSoundsTimer

RandomStepsSound()
- Plays a random STEPS sound on one of the specified areas.
- Timer is originally set between float values 10.0 and 25.0 seconds.
- Timer: AmbientStepsSoundsTimer


RandomScrapeSound()
- Plays a random SCRAPE sound on one of the specified areas.
- Timer is originally set between float values 3.0 and 15.0 seconds.
- Timer: AmbientScrapeSoundsTimer

RandomVoiceSound()
- Plays a random VOICE sound on one of the specified areas.
- Timer is originally set between float values 30.0 and 120.0 seconds.
- Timer: AmbientVoiceSoundsTimer

RandomObjectPushFunction()
- Adds an impulse to one of the specified entities by a random amount.
- Uses categories to select which kind of entity to be pushed.
- The chance of every category to trigger is different.
- Uses three different pushing values: Weak, Medium and Strong.
- Timer is originally set between float values 30.0 and 180.0 seconds.
- Timer: AmbientObjectFallFunctionTimer

RandomPlayerScareFunction()
- Starts an event that is based on and affects the player.
- Timer is originally set between float values 60.0 and 300.0 seconds.
- Timer: AmbientPlayerScareFunctionTimer

ChangeCAMSState()
- Changes which areas are getting randomized when player enters a new part of the map.
- ScriptAreas for executing this when player collides with them is called "CustomAmbientMapScares_[number here]".
- Useful for large maps.

StartCustomAmbientMapScares() (used in OnEnter(); function)
- Generates a random value for each and every timer.
- Starts the timers with the randomly generated values.


I know all that code is a pain in the ass to read, so I will upload the actual file here too, for you to download. It's currently a text file (.txt), so it cannot be used as the script file for a map. Copy and paste is needed.

If you find any problems, please let me know. Also, as mentioned above, let me know what you think of this and if you want me to update it and continue to develop it, or if you want to be a part of it.

Thank you for reading this post, and thank you for sharing your thoughts. Have a great day.
________________________________________________________________________________________________________________________________________________________________

UPDATE - CHANGELOG!

Spoiler below!

After spending a few hours of testing and tweaking, I have now completed the first working product of the "Custom Ambient Map Scares". You can access it either through the php window above, or by downloading the attached .txt file.

What I added:
- There is now 5 categories of entities within the RandomObjectPushFunction(). "Books", "containers", "bottles", "lamps" and "other".

- Instead of three different strengths of the pushes, the force will now be any number between to assigned values.

- Example sounds where added to the sound functions.

- StartCustomAmbientMapScares(); is now placed in the OnEnter function instead of the OnStart one.

- All errors were removed. It now runs perfectly!

If you wanna try this, simply put this block of code into your map, and add this line to your OnEnter() function:
StartCustomAmbientMapScares();

After that you add the entities that needs to be added, and name them:

push_CATEGORY NAME HERE_AXIS TO PUSH ENTITY HERE (x or z)_ENTITY'S NUMBER HERE (1, 2, 3 etc.)
For example:
push_book_x_1

Then you add the areas that the sounds will be coming from, and name them:

SOUND CATEGORY HERESoundArea_AREA'S NUMBER HERE
For example:
WindSoundArea_1

Please leave feedback and suggestions in the comments.
Thank you!


UPDATE - VIDEO!

Spoiler below!

Here is a recorded video of me testing the script. Timers are set between 5 - 15 seconds for testing purposes, and will remain their original length in the release version (see above).
All the current functions except RandomPlayerScareFunction() is used in this video. All the sounds is used and is coming from three different directions, and all the five entity categories of the RandomObjectPushFunction is used. For more info, see above, or take a look at the downloadable text file.





Please leave feedback and suggestions in the comments.
Thank you!


UPDATE - NEW FEATURE!

Spoiler below!

- Objects can now be pushed two more directions, from now on including negative values too.


BIG UPDATE - NEW FEATURES AND IMPROVEMENTS!

Spoiler below!

- Scrape sounds will now be played at random areas in your map.

- Using FG's LocalVarInts instead of normal integers for simplified and less troubling implementation.

- Added better descriptions to the functions.

- Added debug messages at some functions for testing purposes.

- Can now change the array of areas that can be randomly picked depending on where the player is located, using areas called "CustomAmbientMapScares_[number here]". For more info, see script and/or functions section.

- Script is now in a working condition, designed and programmed for my personal map. Change to your own preference! (Some functions are turned off as a result to my personal preference).



Attached Files
.txt   Custom_Ambient_Map_Scares.txt (Size: 18.07 KB / Downloads: 236)

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
(This post was last modified: 12-11-2013, 07:36 PM by Wapez.)
10-19-2013, 02:28 PM
Find
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#2
RE: Script - Custom Ambient Map Scares - Made for You!

Please do not bypass this thread. Your opinion is incredibly useful and much appreciated! Thank you again.

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
10-19-2013, 04:14 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#3
RE: Script - Custom Ambient Map Scares - What's your opinion?

It's interesting. I think the new scripters would like to have some random scripts. It's useful.

"Veni, vidi, vici."
"I came, I saw, I conquered."
10-20-2013, 02:56 AM
Find
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#4
RE: Script - Custom Ambient Map Scares - What's your opinion?

Updated a typo error. As mentioned, I have not had the time to test this.

The response of this is amazing. I will continue developing this into something big. What I can ask from all of you now is not much, but it's incredibly useful. I gladly accept
- Tips and tricks
- Suggestions on new functions and/or how to execute them
- TESTERS!

My own complete testing of this will start tomorrow, monday. Let me know if you want to help out.

Thank you.

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
10-20-2013, 10:48 AM
Find
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#5
RE: Script - Custom Ambient Map Scares - What's your opinion?

The "Custom Ambient Map Scares" is now updated! Check the changelog for more info, or try it out yourself!

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
(This post was last modified: 10-21-2013, 04:57 PM by Wapez.)
10-21-2013, 04:57 PM
Find
WALP Offline
Posting Freak

Posts: 1,221
Threads: 34
Joined: Aug 2012
Reputation: 45
#6
RE: Script - Custom Ambient Map Scares - Free Download!

*All errors were removed
10-21-2013, 05:10 PM
Find
Traggey Offline
is mildly amused

Posts: 3,257
Threads: 74
Joined: Feb 2012
Reputation: 185
#7
RE: Script - Custom Ambient Map Scares - Free Download!

Just uh, make sure not to do much more double posting okay mate?

Thanks.
10-21-2013, 09:38 PM
Find
plutomaniac Offline
Super Moderator

Posts: 6,368
Threads: 45
Joined: May 2011
Reputation: 183
#8
RE: Script - Custom Ambient Map Scares - Free Download!

Yes, maybe make one thread with all your scripts etc... and hide details with spoiler tags for example to not make them huge. For example there is no point in having one thread for the actual assets/scripts and another to explain what each does. Keep them all together, nice and organized.

Btw, poll removed at your request.
10-21-2013, 11:02 PM
Find
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#9
RE: Script - Custom Ambient Map Scares - Free Download!

(10-21-2013, 11:02 PM)plutomaniac Wrote: Yes, maybe make one thread with all your scripts etc... and hide details with spoiler tags for example to not make them huge. For example there is no point in having one thread for the actual assets/scripts and another to explain what each does. Keep them all together, nice and organized.

Btw, poll removed at your request.

I'll bake them together when I get some time. Thanks.

UPDATED!

Added a video showing the working product. Check it out!

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
(This post was last modified: 10-22-2013, 09:41 AM by Wapez.)
10-22-2013, 08:47 AM
Find
Wapez Offline
Senior Member

Posts: 360
Threads: 37
Joined: Mar 2012
Reputation: 19
#10
RE: Script - Custom Ambient Map Scares - Free Download!

Updated. Take a look at the changelog, and if you could spare a minute, leave a review or thought. Thank you.

Founder & Legally Accountable Publisher of Red Line Games.
Environment & Gameplay Designer and Scripter.
http://moddb.com/mods/in-lucys-eyes
11-01-2013, 12:24 AM
Find




Users browsing this thread: 1 Guest(s)