31 lines
997 B
Plaintext
31 lines
997 B
Plaintext
|
|
// hug or kiss nearest person -- face to face
|
|
|
|
// the #include below is for the MoveToNewLocationcommand
|
|
#include "x0_i0_position"
|
|
|
|
void main()
|
|
{
|
|
object oPC = OBJECT_SELF ;
|
|
object oTarget = GetNearestCreature(CREATURE_TYPE_IS_ALIVE, TRUE, oPC) ;
|
|
|
|
// get facing of oTarget, set oPC facing to 180 from that
|
|
float fTargetface = GetFacing(oTarget);
|
|
float fPCFace = (fTargetface);
|
|
|
|
// Tweaking to line up PCs better
|
|
fTargetface = GetNormalizedDirection(fTargetface - 2.5);
|
|
fPCFace = GetNormalizedDirection(fPCFace - 70.0);
|
|
|
|
// figure out location we want to move to
|
|
// this is oTarget's position displaced by 0.0*(oTarget's's facing vector)
|
|
object oArea = GetArea(oPC);
|
|
vector posDest = GetPosition(oTarget) - AngleToVector(fTargetface)*1.00;
|
|
location lDest = Location(oArea, posDest, fPCFace);
|
|
MoveToNewLocation ( lDest, oPC);
|
|
|
|
// Assign Animation
|
|
AssignCommand(oPC, ActionPlayAnimation(ANIMATION_LOOPING_SIT_CROSS, 1.0, 60000.0f));
|
|
|
|
}
|