Skip to content

Instantly share code, notes, and snippets.

@VictorWesterlund
Last active December 2, 2020 09:26
Show Gist options
  • Save VictorWesterlund/29414b867af8d897d7e82d3a9c416b7c to your computer and use it in GitHub Desktop.
Save VictorWesterlund/29414b867af8d897d7e82d3a9c416b7c to your computer and use it in GitHub Desktop.
Christmas cape image sequencer for LabyMod
import time
from labylib import Cape
cookie = input("Paste your PHPSESSID here:\n")
vis = Cape.Visibility(cookie)
temp = Cape.Template(cookie)
i = False
print("\nRunning..")
while(True):
if(i):
temp.update("CHRISTMAS2010")
else:
temp.update("JULIANCLARK")
i = not i
vis.update("show")
time.sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment