Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by suraz24 · Sep 21, 2015 at 09:32 AM · if-statementscondition

Multiple conditions being called????

Hi all,

I am trying to make a pirate game where players can collect several items. I am using random function to randomize the outcome. However, whenever I collect one item three different conditions are triggered. I have attached the code. Any help???

using UnityEngine; using System.Collections;

public class PickUpActivate : MonoBehaviour {

 // Use this for initialization
 void Start () {
 
 }
 
 // Update is called once per frame
 void Update () 
 {
 
 }

 public void PickUpChest()
 {
     Outcome ();
 }

 public void Outcome()
 {
     int outnum = Random.Range (1, 5);
     if(outnum == 1 || outnum == 2 || outnum ==4)
     {
         OutcomePositive();
         print("Positive");
     }
     else if(outnum == 3 || outnum == 5)
     {
         OutcomeNegative();
         print("negative");
     }
 }
 
 void OutcomePositive()
 {
     int outeff = Random.Range (1, 4);
     switch (outeff) 
     {
     case 1: OutcomeEffect("Orange"); print ("In positive orange"); break;
     case 2: OutcomeEffect("Banana");print ("In positive banana"); break;
     case 3: OutcomeEffect("Apple"); print ("In positive apple");break;
     case 4: OutcomeEffect("PineApple");print ("In positive pineapple"); break;
     }
 }
 
 void OutcomeNegative()
 {
     int outeff = Random.Range (1, 4);
     switch (outeff) 
     {
     case 1: OutcomeEffect("Lemon"); break;
     case 2: OutcomeEffect("Grapefruit"); break;
     case 3: OutcomeEffect("Lime"); break;
     case 4: OutcomeEffect("Pomegranate"); break;
     }
 }
 
 void OutcomeEffect(string effect)
 {
     if(effect== "Orange")
     {
         //Application.LoadLevel(1);
         //other.GetComponent<HealthBar>().UpdateHealthBar(-0.2f);
         print ("orange");
         
     }
     
     else if(effect== "Banana")
     {
         print ("banana");
         //Application.LoadLevel(1);

     }
     
     
     else if(effect== "PineApple")
     {
         print ("pineapple");
         //Application.LoadLevel(1);
     
     }
     
     else if(effect== "Apple")
     {
         print ("apple");
         
         //Application.LoadLevel(1);
     
     }
     
     else if(effect== "Lemon")
     {
         print ("lemon");
         //Application.LoadLevel(1);

     }
     
     else if(effect== "Grapefruit")
     {
         print ("grapefruit");
         //Application.LoadLevel(1);

     }
     
     else if(effect== "Lime")
     {
         print ("lime");
         //Application.LoadLevel(1);

     }
     
     else if(effect== "Pomegranate")
     {
         print ("pomegranate");
         //Application.LoadLevel(1);
     
     }
 }

}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

I'm wondering with if function working 2 Answers

how can i have an if statement to kill a player if they dont have an item 2 Answers

Use a #if statement to check if a script exists in project? 0 Answers

Display message when max height is reached 1 Answer

Question on Possible FOR Loop Condition Conflict 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges