vote up 0 vote down star

Hallo! I'm a n00b, and I'm looking for a few lines of code in VB6 to implement this: I want to list a certain number of commands to execute, then tell my program to chose a random one among them and execute it: strictly speaking, I'm dealing with a MSAgent character, and I want him to make a face every 5 minutes. How can I achieve this, please?

flag

2 Answers

vote up 0 vote down

So, supposing I'm dealing with:

Private Sub ctlAgent_Command(ByVal UserInput As Object)
'Here follows Rightclick commands'
Select Case UserInput.Name 'Generic case....seems to work like this even if the NameBox is not enabled
'Now for each command case
  Case "QUOTE":
     Set objMerlin = ctlAgent.Characters("Merlin") ' DON'T FORGET RE-REFERENCE MERLIN for each case
     objMerlin.Speak getQuote() 'Merlin gets the random quote and reads it
  Case "EXIT":
     End

Case Else: Set objMerlin = ctlAgent.Characters("Merlin") objMerlin.Play "Idle1_1"

End Select

End Sub

Where should I put up the above, please?

link|flag
vote up 2 vote down
Public Sub MakeFace()

  'Reset random seed.
  Randomize

  'Generate a random integer with the specified range.
  Dim Min As Integer, Max As Integer, N As Integer
  Min = 1
  Max = 5
  N = Min + Round(Rnd) * Max

  'Select and call the desired function.
  Select Case N

    Case 1
      Call MakeHappyFace

    Case 2
      Call MakeSadFace

    Case 3
      Call MakeAngryFace

    Case 4
      Call MakeSmirkFace

    Case 5
      Call MakeFunnyFace

  End Select

End Sub
link|flag
Isn't Round(Rnd) always 0 or 1? – recursive Jan 20 at 17:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.