Jump to content

Tiny RPG


Ned
 Share

Recommended Posts

Smallest RPG ever made? Man am I bored tonight.

$Level = 1
$XP = 0
$NextLevel = 50
While 1
If $XP <= $NextLevel Then ;Battle
  ToolTip("Level: " & $Level & " | XP: " & $XP & " | Next Level: " & $NextLevel, 0, 0, "Tiny RPG - FIGHTING...")
  $XP = $XP + Random(1,25,1)
Else ;Level Up
  $NextLevel = Round($XP * 1.15,0)
  $Level = $Level + 1
  ToolTip("Level: " & $Level & " | XP: " & $XP & " | Next Level: " & $NextLevel, 0, 0, "Tiny RPG - LEVEL UP!")
EndIf
Sleep(200)
WEnd
Link to comment
Share on other sites

MsgBox(0,"RPG", "In a land somewhere people will do stuff.")
For $i = 0 To 100
   MsgBox(0,"RPG","Random Encounter")
Next
MsgBox(0,"RPG","Final Boss!")
MsgBox(0,"RPG","The End")

I loled.

[center][/center]Working on the next big thing.Currently Playing: Halo 4, League of LegendsXBL GT: iRememberYhslaw

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...