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:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
More scripting issues -.-
7thProductions Offline
Junior Member

Posts: 42
Threads: 17
Joined: Mar 2012
Reputation: 0
#1
More scripting issues -.-

what I'm trying to do is have the player look at a object/decal and display a message and after toying with the script I almost got it right, only it wouldn't display the message and now I keep getting the same error:

"main (60, 6): ERR: Expected '('"

Here's my script:

////////////////////////////
// Run first time starting map
void OnStart()
{
SetPlayerCrouching(true);
SetPlayerActive(false);
ShowPlayerCrossHairIcons(false);
SetSanityDrainDisabled(true);
SetPlayerHealth(10.0);
AddPlayerBodyForce(0, 0, -10000, true);
FadeOut(0.0f);
FadeIn(5.0f);
SetPlayerSanity(1);
AddTimer("T1", 3, "Intro");
AddTimer("T2", 6, "Intro");
AddTimer("T3", 8, "Intro");
AddTimer("T4", 10, "Intro");
AddTimer("T5", 12, "Intro");
}
void Intro(string &in asTimer)
{
string x = asTimer;
if (x == "T1")
{
PlaySoundAtEntity("", "react_sigh.snt", "Player", 0, false);
FadeOut(3);
}
else if (x == "T2")
{
FadeIn(3);
PlaySoundAtEntity("", "react_breath.snt", "Player", 0, false);
StartPlayerLookAt("ScriptArea_1", 2, 2, "");
}
else if (x == "T3")
{
StopPlayerLookAt();
StartPlayerLookAt("ScriptArea_2", 2, 2, "");
}
else if (x == "T4")
{
PlaySoundAtEntity("", "react_breath_slow.snt", "Player", 0, false);
StopPlayerLookAt();
}
else if (x == "T5")
{
SetPlayerCrouching(false);
SetPlayerActive(true);
ShowPlayerCrossHairIcons(true);
SetPlayerMoveSpeedMul(0.3);
SetPlayerJumpDisabled(true);
SetPlayerCrouchDisabled(true);
SetPlayerRunSpeedMul(0.0);
StartPlayerLookAt("blood_spatter01_1", 2, 2, "violetedwards_speak_1");
StartEffectEmotionFlash("Messages", "violetedwards_speak_1", "");
SetEntityPlayerInteractCallback("blood_spatter01_1", "SetMessage", true);
}

void MyFunc(string &in asEntity)
{
SetMessage("Messages", "violetedwards_speak_1", 0);
AddEntityCollideCallback("Player", "blood_spatter01_1", "bloodspatter011", true, 1);
}

}
////////////////////////////
// Run when entering map
void OnEnter()
{

}

////////////////////////////
// Run when leaving map
void OnLeave()
{

}

could someone please tell me what I did wrong?



03-22-2012, 08:21 PM
Find


Messages In This Thread
More scripting issues -.- - by 7thProductions - 03-22-2012, 08:21 PM
RE: More scripting issues -.- - by ClayPigeon - 03-22-2012, 08:33 PM
RE: More scripting issues -.- - by Your Computer - 03-22-2012, 08:54 PM
RE: More scripting issues -.- - by 7thProductions - 03-22-2012, 11:07 PM
RE: More scripting issues -.- - by Your Computer - 03-23-2012, 05:11 AM



Users browsing this thread: 1 Guest(s)