Posted By


Angelboy on 09/30/10

Tagged


Statistics


Viewed 53 times
Favorited by 0 user(s)

Related snippets


Mono, cocos, barril


/ Published in: Visual Basic
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Private Sub Command1_Click()
  2. Dim monos As String
  3. If monos > 135 Then
  4.  
  5. If monos >= 136 And monos <= 146 Then
  6. MsgBox "Cocos: 100"
  7. MsgBox "Jaulas: 5"
  8. MsgBox "Barril: 1"
  9. End If
  10.  
  11. If monos >= 147 And monos <= 157 Then
  12. MsgBox "Cocos: 100"
  13. MsgBox "Jaulas: 5"
  14. MsgBox "Barril: 2"
  15. End If
  16.  
  17.  
  18. If monos >= 158 And monos <= 168 Then
  19. MsgBox "Cocos: 100"
  20. MsgBox "Jaulas: 5"
  21. MsgBox "Barril: 3"
  22. End If
  23.  
  24. If monos >= 169 And monos <= 179 Then
  25. MsgBox "Cocos: 100"
  26. MsgBox "Jaulas: 5"
  27. MsgBox "Barril: 4"
  28. End If
  29.  
  30. If monos >= 180 And monos <= 190 Then
  31. MsgBox "Cocos: 100"
  32. MsgBox "Jaulas: 5"
  33. MsgBox "Barril: 5"
  34. End If
  35.  
  36. If monos >= 191 And monos <= 201 Then
  37. MsgBox "Cocos: 100"
  38. MsgBox "Jaulas: 5"
  39. MsgBox "Barril: 6"
  40. End If
  41.  
  42. If monos >= 202 And monos <= 212 Then
  43. MsgBox "Cocos: 100"
  44. MsgBox "Jaulas: 5"
  45. MsgBox "Barril: 7"
  46. End If
  47.  
  48. If monos >= 213 And monos <= 223 Then
  49. MsgBox "Cocos: 100"
  50. MsgBox "Jaulas: 5"
  51. MsgBox "Barril: 8"
  52. End If
  53.  
  54. If monos >= 224 And monos <= 234 Then
  55. MsgBox "Cocos: 100"
  56. MsgBox "Jaulas: 5"
  57. MsgBox "Barril: 9"
  58. End If
  59.  
  60. If monos >= 235 And monos <= 245 Then
  61. MsgBox "Cocos: 100"
  62. MsgBox "Jaulas: 5"
  63. MsgBox "Barril: 10"
  64. End If
  65.  
  66. Else
  67. If monos > 100 Then
  68.  
  69. If monos >= 101 And monos <= 107 Then
  70. MsgBox "Cocos: 100"
  71. MsgBox "Jaulas: 1"
  72. End If
  73.  
  74. If monos >= 108 And monos <= 114 Then
  75. MsgBox "Cocos: 100"
  76. MsgBox "Jaulas: 2"
  77. End If
  78.  
  79. If monos >= 115 And monos <= 121 Then
  80. MsgBox "Cocos: 100"
  81. MsgBox "Jaulas: 3"
  82. End If
  83.  
  84. If monos >= 122 And monos <= 128 Then
  85. MsgBox "Cocos: 100"
  86. MsgBox "Jaulas: 4"
  87. End If
  88.  
  89. If monos >= 129 And monos <= 135 Then
  90. MsgBox "Cocos: 100"
  91. MsgBox "Jaulas: 5"
  92.  
  93. End If
  94.  
  95.  
  96. Else
  97. MsgBox "Cocos: " & monos
  98.  
  99. End If
  100. End If
  101.  
  102. End Sub

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.