Advertisement
remie92

Untitled

Jun 2nd, 2024 (edited)
662
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. function setup()
  2. end
  3.  
  4. count=0
  5.  
  6. function loop()
  7.     if count==0 then
  8.         outMain("first screen")
  9.     end
  10.     if count==1 then
  11.         outSecond("second screen!")
  12.     end
  13. if count==2 then
  14.         outHolo("holo screen!")
  15.     end
  16.     outMain(V1)
  17.     count=count+1
  18. end
  19.  
  20. function out(big,small,data)
  21.     output(data,3)
  22.     output(small,2)
  23.     output(big,1)
  24. end
  25.  
  26. function outMain(data)
  27.     output(data,4)
  28. end
  29. function outSecond(data)
  30.     output(data,5)
  31. end
  32. function outHolo(data)
  33.     output(data,6)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement