You know the example called diamond count they show you? Well, I'm trying to put my own diamond count in another game, but I dont know how to make one. Can anybody please tell me how you make them?
Last edited by lilmuleman214 on Thu Jul 26, 2007 5:57 pm, edited 1 time in total.
make a text actor, make its parent the view.
then make your diamond actor.
when the player collides with the diamond actor,
destroy actor->collide actor.
on the destroy actor event of the diamond->script editor->
your text actor's name.textNumber++;
Random Links: viewtopic.php?p=19474#19474 Right now (10/14/2009) I'm working on some C++ projects, but I might be able to help if you have some Game Editor questions.
Random Links: viewtopic.php?p=19474#19474 Right now (10/14/2009) I'm working on some C++ projects, but I might be able to help if you have some Game Editor questions.
Ok, im trying to do what u said, and when aI try to set up a destroy actor thing for the diamond, it doesnt let me chose script editor, it only allows me to choose another actor. what am i doing wrong?
on the event where you are supposed to add on Destroy Actor event of your Diamond then you should be able to click on add, then it will give you an option of actions, then click on script editor.
I reccomend you look at all the tutorials again if you have not.
(I looked at each one untill I memorized it when I started out.)
Random Links: viewtopic.php?p=19474#19474 Right now (10/14/2009) I'm working on some C++ projects, but I might be able to help if you have some Game Editor questions.
if your collision event is on your player, you probably named the collide actor rather than saying: DestroyActor("Collide Actor");
Don't change the wording of "Collide Actor" to your diamond actor name.