>> Does anyone know if a random die rolling program exists for the >> TI-85? I'd like it to do rolls such as 1d6 or 3d6 and so on. Thanks! I never saw the original message, or I would have replyed by email... but this program will do what you want: ClLCD Input "First Number",N1 Input "Second Number", N2 For(L,1,N1,1) Disp Int(Rand*N2)+1 Pause End in XdY X= 1st Number, Y = Second Number Jason