Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. '************************************************************************
  2. ' LCD VIDEO
  3. '************************************************************************
  4.  
  5. sub changevideo(vidnum)
  6. if (vidnum<=9) then
  7. ectomovie.image = "zcd_nunzioScoleri_hit_" & Right("000" & CStr(vidnum+1), 3)
  8. elseif (vidnum<=47) then
  9. ectomovie.image = "zcd_tonyScoleri_hit_" & Right("000" & CStr(vidnum-9), 3)
  10. elseif (vidnum<=66) then
  11. ectomovie.image = "zcd_nunzioScoleri_idle_" & Right("000" & CStr(vidnum-47), 3)
  12. elseif (vidnum<=90) then
  13. ectomovie.image = "zcd_ghost4_idle_" & Right("000" & CStr(vidnum-66), 3)
  14. ' I think this is a TPA bug - 029 is the first hit sequence, not 001
  15. elseif (vidnum<=99) Then
  16. ectomovie.image = "zcd_ghost4_hit_" & Right("000" & CStr(vidnum-90+28), 3)
  17. elseif (vidnum<=127) Then
  18. ectomovie.image = "zcd_ghost4_hit_" & Right("000" & CStr(vidnum-90-9), 3)
  19. ' end buggy sequence.
  20. elseif (vidnum<=173) then
  21. ectomovie.image = "zcd_SternLogo_" & Right("000" & CStr(vidnum-128), 3)
  22. elseif (vidnum=174) Then
  23. ectomovie.image = "zcd_GhostLogo"
  24. elseif (vidnum<=205) then
  25. ectomovie.image = "zcd_Jackpot_15fps_" & Right("000" & CStr(vidnum-173), 3)
  26. elseif (vidnum<=236) then
  27. ectomovie.image = "zcd_SuperJackpot_15fps_" & Right("000" & CStr(vidnum-205), 3)
  28. elseif (vidnum<=276) then
  29. ectomovie.image = "zcd_slimer_idle_" & Right("000" & CStr(vidnum-236), 3)
  30. elseif (vidnum<=294) then
  31. ectomovie.image = "zcd_slimer_small_hit_" & Right("000" & CStr(vidnum-276), 3)
  32. elseif (vidnum<=313) then
  33. ectomovie.image = "zcd_tonyScoleri_small_idle_" & Right("000" & CStr(vidnum-294), 3)
  34. elseif (vidnum<=418) then
  35. ectomovie.image = "zcd_Taxi" & Right("000" & CStr(vidnum-313), 3)
  36. elseif (vidnum<=464) then
  37. ectomovie.image = "zcd_Cat" & Right("000" & CStr(vidnum-418), 3)
  38. end if
  39. end sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement