Hey everyone 
I have one little question...
Is there any way to duplicate instances in room?
Sometimes, I must create for example 50 instances with
same Instance creation room code
and it's really boring doing it mechanicaly with
right mouse button click on instance + CTRL -> creation code and CTRL+V.
Thanks for help!
Why are you using the creation code instead of the create event? It would be easier to just set your power in the create event and simply add the instances. You can also use the instance IDs to your advantage. Because the ID # goes up by 1 with every version, you can place all the power 3's first then the power 5's second. Then find the last ID # of the power 3's and use that in your create event code. For example:
If the ID of the first is 0 (which it isn't obviously) and you have 5 power 3s and 5 power 5s where ID 0-4 is power 3 and 5-9 is power 5, in the create code you can put like
if 5 > id {power = 3} else power = 5Or like thegame said, if all the power 3's are clearly bunched and the power 5s are as well, you can use the coors of them. For example if power 3s are on the left of a 500 x 500 room then
if x < 250 {power = 3} else power = 5
Edited by kupo15, 03 March 2012 - 09:19 PM.