|
||||||
| Java Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
| Sponsored Links |
|
|
|
|||||
|
Okay great problem - here's what I would change, and it should be fairly simple - instead of using Math.random(), use java.util.Random with a seed. You can create a seed by getting the current datetime from java.util.Calendar like this: long seed = java.util.Calendar.getInstance().getTimeInMillis() ; Then plug that seed into the constructor for a new Random object. So basically instead of:
first_roll = 1 + (int)(Math.random() * n_value); second_roll = 1 + (int)(Math.random() * n_value); do: long seed = java.util.Calendar.getInstance().getTimeInMillis() ; Random r = new java.util.Random(seed); first_roll = 1 + (int)(r.nextInt() * n_value); second_roll = 1 + (int)(r.nextInt() * n_value); Does that help you out? Does that work? Nathan Last edited by Nathandelane; 09-12-2007 at 05:47 PM. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Project: ionFiles - Joomla Simple File Download - Mirror 2 | Jordan | ionFiles | 6 | 11-06-2008 01:24 PM |
| A cool project idea. | AlexanderRybak | Community Projects | 3 | 02-11-2008 03:37 AM |
| Project for a simple password cracker | waf | Visual Basic Programming | 2 | 03-22-2007 05:19 PM |
| Contributing to a project | Jordan | Community Projects | 7 | 09-15-2006 05:43 PM |
| Community Project! - Recent project gone sour | Crane | C# Programming | 5 | 09-09-2006 03:13 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |