The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
how to make an object apear [SOLVED]
magersupie Offline
Junior Member

Posts: 5
Threads: 1
Joined: Apr 2011
Reputation: 0
#1
how to make an object apear [SOLVED]

hi everyone
this is my first post here Big Grin
anyway i am a noob at scripting.
so i hope you could help me.
i want this object to apear , but nothing happens.
i don't get an error when i start the level so i hope someone here knows what to do
this is the script:

//===========================================
     // Starter's Script File!
     //===========================================

     //===========================================
     // This runs when the map first starts
     void OnStart()
  
{ AddEntityCollideCallback("Player" , "ScriptArea_1" , "MonsterFunc1" , true , 1); PlayMusic("03_puzzle_secret.ogg", false , 1.0f, 0, 0, true);}
void MonsterFunc1(string &in asParent , string &in asChild , int alState)
{ SetEntityActive("character_infected_1" , true);
PlaySoundAtEntity( "", "react_pant.snt" ,"Player", 0.0f , false);
PlaySoundAtEntity( "", "explosion_rock_large.snt" ,"Player", 0.0f , false);
PlayMusic("00_event_gallery.ogg", false , 1.0f, 0, 0, true);}

     //===========================================
     // This runs when the player enters the map
     void OnEnter()
     {
    AddUseItemCallback("", "R01_Key1", "mansion_1", "KeyOnDoor", true);
}

void KeyOnDoor(string &in asItem, string &in asEntity)
{
    SetSwingDoorLocked("mansion_1", false, true);
    PlaySoundAtEntity("", "unlock_door.snt", "mansion_1", 0.0f, true);  }

void CollideScriptArea_2(string &in asParent, string &in asChild, int alState)
{
AddEntityCollideCallback("Player" , "ScriptArea_2" , "MonsterFunc1" , true , 1);
SetEntityActive("hanging_prisoner_1", true);
SetLightVisible("SpotLight_1", true);
}

     //===========================================
     // This runs when the player leaves the map
     void OnLeave()
     {

     }
(This post was last modified: 04-17-2011, 01:18 PM by magersupie.)
04-16-2011, 03:30 PM
Find


Messages In This Thread
how to make an object apear [SOLVED] - by magersupie - 04-16-2011, 03:30 PM
RE: how to make an object apear - by Dalroc - 04-16-2011, 03:58 PM
RE: how to make an object apear - by MrBigzy - 04-16-2011, 04:37 PM
RE: how to make an object apear - by magersupie - 04-16-2011, 04:42 PM
RE: how to make an object apear - by MrBigzy - 04-16-2011, 05:24 PM
RE: how to make an object apear - by magersupie - 04-16-2011, 05:27 PM
RE: how to make an object apear - by MrBigzy - 04-16-2011, 06:45 PM
RE: how to make an object apear - by magersupie - 04-16-2011, 07:10 PM
RE: how to make an object apear - by MrBigzy - 04-17-2011, 03:24 AM
RE: how to make an object apear - by magersupie - 04-17-2011, 11:30 AM



Users browsing this thread: 1 Guest(s)