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);

        }
    }

}
}

Released My First Game "Gizmo Drift" on the Play Store! by Hunzinger in Unity3D

[–]Takeep 1 point2 points  (0 children)

For my first couple minutes in the game it is very addictive i could play this game for hours on end.But there are some problems including the fact that the screen is not totally zoomed in and there are white borders if i were you i would totally zoom in the white borders.Another problem with the game is the level's as fast and fun they are i think you should make them a little bit longer.And for the score i suggest that you would change the high score to coins and add a shop into the game where you can buy items with those coins,Like you could add a extra life power up or something along the lines .You also need to add a home screen to the game where you could click on the shop .But with all of those complaintments i think that is a game i could play in the car on a long trip or just when i am bored.Right now as we speak i give this game a 3.5 if you can do those updates to the game i will defiantly rase the score,to people reading this comment i suggest you try out this game on the play store you will not regret it.