Advertisement
Guest User

Untitled

a guest
May 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. if newpicNum not= newmaxF then %// Whenever the picNum does not equal 100, 200, 300
  2. picNum += 1 %// The next picture that will be displayed in the current set (1 to 100, 101 to 200, 201 to 300)
  3. newpicNum += 1 %// As Frames from 1 to 100 are being displayed (picNum) the next set is currently being generated. (101 to 200, 201, 300)
  4. mainMenu (newpicNum) := Pic.FileNew ("ASSETS/MainMenu/bgLayer " + intstr (newpicNum) + ".jpg") %// Creates the next set of Frames (101 to 200, 201 to 300, 1 to 100)
  5. bmainMenu (newpicNum) := false %// Makes sure that the next set is not freed (for the next loop)
  6. elsif picNum not= newmaxF then
  7. picNum += 1
  8. delay(50)
  9. else
  10. picNum := 1
  11. end if
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement