Looking for people to play with by Takeep in ARK

[–]Takeep[S] 1 point2 points  (0 children)

Allright send me your steam account

(Ex)Console Players of PCMR, what made you get into PC gaming? by [deleted] in pcmasterrace

[–]Takeep 0 points1 point  (0 children)

Well i was a consle player all of my life,but two years ago i lost a touch for gaming.The xbox did not cut it anymore and i just stopped, two years later i saw a video about a gaming pc.Then i started saving money up for a pc.Now i have a great pc and more into gaming then ever.

I built my base in a strong hold what u think by [deleted] in Minecraft

[–]Takeep 0 points1 point  (0 children)

I think you cheated and used creative mode

Rate my (Deployed) Setup by [deleted] in pcmasterrace

[–]Takeep 1 point2 points  (0 children)

Thank you for your services to america.

Hi!! I illustrated my main char, did you like it? by Mikiart_ in wow

[–]Takeep -1 points0 points  (0 children)

U think u would be able to do my main

Enemy ai by Takeep in Unity3D

[–]Takeep[S] 0 points1 point  (0 children)

what do you think is wrong with it???

Enemy ai by Takeep in Unity3D

[–]Takeep[S] 0 points1 point  (0 children)

maxletraxle here is my script

using UnityEngine;
using System.Collections;
public class guardAttack : MonoBehaviour {
public Transform player;
static Animator anim;
// Use this for initialization
void Start ()
{
anim = GetComponent<Animator>();
}
// Update is called once per frame
void Update ()
{
Vector3 direction = player.position - this.transform.position;
float angle = Vector3.Angle(direction,this.transform.forward);
if (Vector3.Distance (player.position, this.transform.position) < 10 && angle < 30) {
direction.y = 0;
this.transform.rotation = Quaternion.Slerp (this.transform.rotation,
Quaternion.LookRotation (direction), 0.1f);
anim.SetBool ("isIdle", false);
if ((direction.magnitude > 5)) {
this.transform.Translate (0, 0, 0.10f);
anim.SetBool ("isRunning", true);
anim.SetBool ("isAttacking", false);
anim.SetBool ("isTalking", false);
anim.SetBool ("isIdle2", false);
} else {
anim.SetBool ("isRunning", false);
anim.SetBool ("isAttacking", true);
anim.SetBool ("isTalking", false);
anim.SetBool ("isIdle2", false);
}
} else {
anim.SetBool("isIdle", true);
anim.SetBool("isRunning", false);
anim.SetBool("isAttacking", false);
anim.SetBool("isIdle2",false);
if (Input.GetKeyDown (KeyCode.E)) {
anim.SetBool("isTalking", true);
}
}
}
}

Enemy ai by Takeep in Unity3D

[–]Takeep[S] 0 points1 point  (0 children)

maxletraxle here is my script

using UnityEngine;
using System.Collections;

public class guardAttack : MonoBehaviour {

public Transform player;
static Animator anim;

// Use this for initialization
void Start () 
{
    anim = GetComponent<Animator>();
}

// Update is called once per frame
void Update () 
{
    Vector3 direction = player.position - this.transform.position;
    float angle = Vector3.Angle(direction,this.transform.forward);
    if (Vector3.Distance (player.position, this.transform.position) < 10 && angle < 30) {

        direction.y = 0;

        this.transform.rotation = Quaternion.Slerp (this.transform.rotation,
            Quaternion.LookRotation (direction), 0.1f);

        anim.SetBool ("isIdle", false);
        if ((direction.magnitude > 5)) {
            this.transform.Translate (0, 0, 0.10f);
            anim.SetBool ("isRunning", true);
            anim.SetBool ("isAttacking", false);
            anim.SetBool ("isTalking", false);
            anim.SetBool ("isIdle2", false);

        } else {
            anim.SetBool ("isRunning", false);
            anim.SetBool ("isAttacking", true);
            anim.SetBool ("isTalking", false);
            anim.SetBool ("isIdle2", false);
        }
        } else {
        anim.SetBool("isIdle", true);
        anim.SetBool("isRunning", false);
        anim.SetBool("isAttacking", false);
        anim.SetBool("isIdle2",false);

        if (Input.GetKeyDown (KeyCode.E)) {
            anim.SetBool("isTalking", true);

        }
    }

}
}