Advertisement
Luciano_fuentes

Untitled

Dec 18th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. 'MAB: Efectividad de hechizos
  2. With UserList(UserIndex).Stats.UserSkills
  3. If eSkill.Magia > 0 Then
  4. Select Case eSkill.Magia
  5. case 1 to 25
  6. Exito = 75
  7. case 25 to 50 Then
  8. Exito = 80
  9. case 50 to 75 Then
  10. Exito = 85
  11. case 75 to 100 Then
  12. Exito = 90
  13. case else
  14. Exito = 75
  15. End If
  16. Else
  17. Exito = 60
  18. End If
  19. End With
  20.  
  21. tmpSucess = RandomNumber(1, 100)
  22.  
  23. If tmpSucess <= Exito Then
  24. PuedeLanzar = True
  25. Else
  26. PuedeLanzar = False
  27. Call WriteConsoleMsg(UserIndex, "Has fallado al lanzar el hechizo.", FontTypeNames.FONTTYPE_INFO)
  28. End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement