Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub XP()
  2.     If IsNumeric(Range("E3").Value) Then
  3.         Range("B3").Value = Range("B3").Value + Range("E3").Value
  4.         Range("E3").Value = ""
  5.     End If
  6.    
  7.     If Range("B3").Value >= Range("G3").Value * 100 Then
  8.         While Range("B3").Value >= Range("G3").Value * 100
  9.             Range("B3").Value = Range("B3").Value - Range("G3").Value * 100
  10.             Range("G3").Value = Range("G3").Value + 1
  11.         Wend
  12.        
  13.         If Application.CanPlaySounds Then
  14.             JouerMusique
  15.         End If
  16.        
  17.         MsgBox ("Level Up !")
  18.        
  19.     ElseIf Range("B3").Value < 0 Then
  20.         While Range("B3").Value < 0
  21.             Range("G3").Value = Range("G3").Value - 1
  22.             Range("B3").Value = Range("B3").Value + Range("G3").Value * 100
  23.         Wend
  24.     End If
  25.    
  26.     If Range("B3").Value < 0 Then
  27.         Range("B3").Value = 0
  28.     End If
  29. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement