Jump to content

Random thread

Recommended Posts

using UnityEngine;
using System.Collections;

public class PowerUpScript : MonoBehaviour
{
public PlayerScript Player;
public int RandPower;

void Awake()
{
	Player=GameObject.Find("Player").GetComponent();
}

void Start ()
{
	RandPower = (Random.Range(0,2));
	if(RandPower == 0)
	{
		gameObject.renderer.material.color=Color.red;
	}
	else if(RandPower == 1)
	{
		gameObject.renderer.material.color=Color.blue;
	}
}

void OnTriggerEnter(Collider hit)
{
	if(RandPower == 0)
	{
		if(hit.gameObject.tag == "Player")
		{
			RandPower = (Random.Range(0,2));
			Destroy(gameObject);
			Player.BaseDMG += 1;
			Debug.Log("Damage permanentally upgraded by 1.");
		}
	}
	else if(RandPower == 1)
	{
		if(hit.gameObject.tag == "Player")
		{
			RandPower = (Random.Range(0,2));
			Destroy(gameObject);
			Player.hp = Player.MaxHP;
			Debug.Log("Health Restored");
		}
	}
}
}

Retired Forum Moderator

Share this post


Link to post

If you drink Arizona brand Green Tea with Ginseng and Honey, your pee will smell just like Arizona brand Green Tea with Ginseng and Honey.

Don't insult me. I have trained professionals to do that.

Share this post


Link to post

My stomach growls in hunger. feed it. my stomach now growls in discomfort. fuck you stomach.

Retired Forum Moderator

Share this post


Link to post

please-dont-hotlink.png

 

That site somehow doesn't allow images to be shared elsewhere.

 

EDIT: Awww this site doesn't allow nested spoilers.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in the community.

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Who's Online   0 Members, 0 Anonymous, 76 Guests (See full list)

    • There are no registered users currently online
×
×
  • Create New...

This website uses cookies, as do most websites since the 90s. By using this site, you consent to cookies. We have to say this or we get in trouble. Learn more.