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
How Do I Get the Player to Look at an Entity?
Statyk Offline
Schrödinger's Mod

Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation: 241
#1
How Do I Get the Player to Look at an Entity?

So I've been making a map, but I want the character to look up since he's laying down, and away so the player can control the character afterward.. I've tried scripting this:

______________________
void OnStart()
{
StartPlayerLookAt("lookatrock1", 0, 1.0, "lookawaycall");
AddTimer("lookawaycall", 11.0, "lookaway");
}
void lookaway(string &in asTimer)
{
StopPlayerLookAt();
}

______________________

But the character doesn't turn to the entity, which is "lookatrock1"
Does anyone know what I'm doing wrong here? =[

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

and also, If anyone can help me with another scripting issue, I'm trying to push the character into another spot using:

______________________
void playerpush(string &in asTimer)
{
AddPlayerBodyForce(6000, 0, 0, false);
}

______________________
Note that a timer is being used so the player will be pushed during a blackscreen. The AddTimer has a callback for "playerpush". But the character doesn't get pushed.. should I just have him teleport further while the screen is black? It'd be like in the beginning of the actual game.

If anyone can help, I'd greatly appreciate it!
(This post was last modified: 09-30-2011, 12:31 AM by Statyk.)
09-30-2011, 12:22 AM
Find


Messages In This Thread
How Do I Get the Player to Look at an Entity? - by Statyk - 09-30-2011, 12:22 AM



Users browsing this thread: 1 Guest(s)