
04-12-2008, 12:27 AM
|
|
iPhone? More like MyPhone
|
|
Join Date: Oct 2007
Posts: 152
Thanks: 5
Thanked 13 Times in 12 Posts
|
|
|
|
If you had it working with 1 is was way you added 2-6.
Without seeing your code and seeing issue, can only suggest this.
Since dice i assume images named 1.gif 2.gif 3.gif 4.gif 5.gif 6.gif
You are using a random # generator 1-6
You are have 5 place holders by a 1 by 5 array
now there are a # of ways todo this but simpliest way is to use a for loop
For roll of dice 1 to 5
do
result=random code;
placeholder[roll of dice] = [result].gif;
end
Its not coded for you, but you should be able to follow without being spoonfeed.
|
Last edited by theguyz; 04-12-2008 at 12:33 AM.
|