Advertisement
Guest User

BloomScript Example

a guest
Jul 31st, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. sub OnPause {
  2. print("Paused")
  3. }
  4. sub OnUnpause {
  5. print("Unpaused")
  6. }
  7.  
  8. real test1 = 0
  9. real test2 = $test1 + 3 * 4
  10. string foo = "foo"
  11. string bar = "bar"
  12. print($foo .. $bar)
  13.  
  14. startStage("stage0.txt")
  15. real time = 0
  16. while (1) {
  17. real time = $time + 1
  18. wait(1)
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement