x


Pickup Counter Script

I'm making a pickup system for my game, but my script isn't working. When i mover over the cube, it is destroyed but my money counter doesn't go up.

var moneydisp : GUIText;
var money = 20;

function Update () {
    moneydisp.text = ""+ money;
}

function OnTriggerEnter() {
    money = money++;
    Destroy(gameObject);
}

what's going on here?

more ▼

asked May 17 '10 at 04:43 PM

Fishman92 gravatar image

Fishman92
2.4k 101 113 128

(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first

To increment an integer counter variable by 1, you just need to call the ++ operator, like this:

money++;

The reason for the strange behaviour in your script is that although the ++ operator increments the variable, it actually returns a different value - the value of the variable before it was incremented.

This means your variable gets incremented, but because you are putting the returned value back into the same variable, it gets immediately replaced with its original value.

An example, for clarification:

var a = 0;
var b = 5;

a = b++;

print(a);  // result is 5 (the original value of 'b', as returned by ++)
print(b);  // result is 6 (because b was incremented by the ++)

If you want to increment a variable by a value other than 1, you can use the similar += operator?

a += 4;  // increment 'a' by 4

Hope this helps clarify things!

In addition, there seems to be some confusion about which object does the counting, and displaying of the money sum. The script that detects the collection of the money & adding should be on your player, rather than on the money object. Make sure your money objects are tagged "Money", then place this script on your player:

var moneyDisplay : GUIText;
var money = 20;

function Start() {
    DisplayAmount();
}

function DisplayAmount () {
    moneydisp.text = ""+ money;
}

function OnTriggerEnter(other : Collider) {
    if (other.CompareTag("Money")) {
        money++;
        DisplayAmount();
        Destroy(other.gameObject);
    }
}

Remember to make sure that:

  • all money objects are tagged "Money"
  • all money objects have a trigger collider
  • the player object has either a CharacterController or rigidbody & collider
  • the "moneyDisplay" variable reference is linked up in the inspector

So, the above script (which is placed on the player) detects if the player touches a "Money" object. This single script counts the money total, and is responsible for displaying the amount, and for destroying the money object.

The money objects themselves need no script attached at all.

more ▼

answered May 17 '10 at 04:52 PM

duck gravatar image

duck ♦♦
41k 92 148 415

okt tried this and it hasn't worked. Something wrong in my script?

var moneydisp : GUIText; var printedmoney = 0; var money = 20;

printedmoney = money++; function Update () {

moneydisp.text = printedmoney +"Pounds";

}

function OnTriggerEnter() {

money = money + 20; Destroy(gameObject); }

May 17 '10 at 05:08 PM Fishman92

Code can be odd to read in a comment, but seems to me this is assigning "printedmoney" the value money(+1) at the start, then you are incrementing money on collection (but still displaying the original "printedmoney" value). The bit outside Update() is only run when creating the object.

I think your original script will work fine if you change the line "money = money++;" to "money++;" or "money += 1;" as Duck illustrates above.

May 17 '10 at 09:51 PM Novodantis 1

for some reason you've introduced another variable called "printedmoney". You don't need that. Just use the exact script you started with (in your question), but just change the line which is supposed to increase the money, to: money++;

May 18 '10 at 08:42 AM duck ♦♦

This still isn't working, lol, i changed the script to how you suggested and it still won't add. :/

Sep 30 '10 at 07:36 PM Fishman92

Hey, thanks for coming back after all this time to accept the answer :-) Since you mentioned it's still not working, I've added a more detailed solution in the post. hope it solves it for you!

Oct 18 '10 at 09:26 PM duck ♦♦
(comments are locked)
10|3000 characters needed characters left

To make things a bit cleaner I like to add a tag to the gameobjects that are acquirable, though it is optional. In the case that you'd like to avoid that simply take out the 'if' statement in the beginning of the second function.

var moneydisp : GUIText;
var money = 20;

function Update () 
{
    moneydisp.text = ""+ money;
}

function OnTriggerEnter()
{
if(gameObject.tag == "money")
    {   
        Debug.Log("You have picked up money");
        Destroy(gameObject);
        money++;
    }
}
more ▼

answered May 17 '10 at 09:17 PM

karl_ gravatar image

karl_
2.4k 41 53 70

This is a neat way for your player to interact with objects in different ways, without being too specific. A handy tip, thanks! =)

May 17 '10 at 09:53 PM Novodantis 1

this still won't add, the money still stays the same.

May 18 '10 at 06:54 AM Fishman92

var moneydisp : GUIText; var money = 20; var quantity = 10; // Money in the box / cube

function Update () { moneydisp.text = ""+ money; }

function OnTriggerEnter() { if(gameObject.tag == "money") {
Debug.Log("You have picked up money"); money = money + quantity; Destroy(gameObject);

}

}

Aug 14 '12 at 06:59 PM AMDAndrew
(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

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

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x273
x204
x141
x100

asked: May 17 '10 at 04:43 PM

Seen: 3638 times

Last Updated: Aug 14 '12 at 06:59 PM