Facebook Twitter YouTube Frictional Games | Forum | Newsletter | Dev Blog | Dev Wiki | Support | Shelf | Store

Privacy Policy


Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help How do add poff effects to remove monster area?
Author Message
SilentHideButFine Offline
Member

Posts: 151
Joined: May 2012
Reputation: 6
Post: #1
How do add poff effects to remove monster area?
As the title said , i want to add poff effect to my monster remove script

void OnStart()
{
SetEntityCallbackFunc("keynotwork", "PickUpKeyFunc");
AddEntityCollideCallback("servant_grunt_1", "ScriptArea_1", "remove", true, 1);
}

void remove(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("servant_grunt_1", false);
}


void PickUpKeyFunc(string &in entity, string &in type)
{
if(type == "OnPickup")
{
SetEntityActive("servant_grunt_1", true);
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_1", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_2", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_3", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_4", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_5", 2, "");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_6", 2, "");
StartPlayerLookAt("castle_2", 5, 5, "");
PlaySoundAtEntity("", "react_scare.snt", "mansion_2", 0, false);
GiveSanityDamage(40, true);
AddTimer("StopLookAt", 3, "StopLookAtEvent");
}
}

void StopLookAtEvent(string &in asTimer)
{
StopPlayerLookAt();
}

Vill inte se mera. , New song check it out , download like comment!
06-17-2012 12:25 PM
Find all posts by this user Quote this message in a reply
Mackiiboy Offline
Member

Posts: 101
Joined: Jan 2012
Reputation: 11
Post: #2
RE: How do add poff effects to remove monster area?
(06-17-2012 12:25 PM)SilentHideButFine Wrote:  As the title said , i want to add poff effect to my monster remove script
.
Use:
FadeEnemyToSmoke(string& asName, bool abPlaySound);
06-17-2012 12:38 PM
Visit this user's website Find all posts by this user Quote this message in a reply
SilentHideButFine Offline
Member

Posts: 151
Joined: May 2012
Reputation: 6
Post: #3
RE: How do add poff effects to remove monster area?
(06-17-2012 12:38 PM)Mackiiboy Wrote:  
(06-17-2012 12:25 PM)SilentHideButFine Wrote:  As the title said , i want to add poff effect to my monster remove script
.
Use:
FadeEnemyToSmoke(string& asName, bool abPlaySound);
ty for the fast reply

Vill inte se mera. , New song check it out , download like comment!
06-17-2012 12:40 PM
Find all posts by this user Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)