Poll

Angels mock first dead's voice?

Yes
No

Author Topic: Weeping Angels - Poll added  (Read 7740 times)


function AIPlayer::canSeeObject(%this, %object)
{
   %ev = %this.getEyeVector();
   %pos = %this.getPosition();
   if(!isObject(%object))
      return 0;
   if(isFunction(%object.getClassname(), getEyePoint))
      %ep = %object.getEyePoint();
   else
      %ep = %object.getPosition();
   %vd = vectorDist(%pos, %ep);
   if(%vd > 64)
      return 0;
   %cast = containerRaycast(%pos, %ep, $TypeMasks::FxBrickObjectType);
   if(isObject(%cast))
      return 0;
   %adjp = vectorSub(%pos, %ep);
   %angle = mATan(getWord(%adjp,1), getWord(%adjp,0));
   %ea = mATan(getWord(%ev,1), getWord(%ev,0));
   %cansee = %ea - %angle;
   %canSee = mAbs(%canSee);
   if(%cansee > 3.92689 || %cansee < 2.35629)
      return 0;
   return 1;
}

well, i dont know anything about scripting or whatnot...

what is that

Ill have logo by Friday. Hey, I have school other than graphic design and blockland.

well, i dont know anything about scripting or whatnot...

what is that
checks to see if it can see an object.


ah
...


you realize that's all the code you need to get the whole thing finished
right?

there is other stuff to be done

you realize that's all the code you need to get the whole thing finished
right?
there is other stuff to be done
Wait so I'm confused.
What will the objective of this game actually be?

I can help code to if you need it, pm me if interested, cause ill forget that i posted this

Wait so I'm confused.
What will the objective of this game actually be?
Survive.

though i may add an exit or something


I hope if they look at eachother they end up frozen there forever.

« Last Edit: February 06, 2013, 12:19:48 AM by Alphadin »

For those who wonder what "Weeping Angels" are they come from the Doctor Who series.
http://www.youtube.com/watch?v=GFKa9tQqzrs
Amazing video, very scary too.
« Last Edit: February 06, 2013, 01:56:58 PM by Dillpickle »