2022-01-11 17:29:18 +00:00
|
|
|
import os, player, tweepy, twitHandler, time, skillContests, random, itertools
|
2022-01-09 00:42:11 +00:00
|
|
|
from attributes import normalDis
|
2022-01-11 18:50:30 +00:00
|
|
|
from hocTests import AttributeTest, TestGame
|
2022-01-11 17:29:18 +00:00
|
|
|
from hocUtils import RinkGraph
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-01-02 17:07:55 +00:00
|
|
|
|
2022-01-08 05:00:22 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
#for name in ["Vivi", "Artemis", "Laika", "Sharks", "Dragons", "Melua", "Sabriina", "Jorts (Buttered)", "Jorts (Unbuttered)"]:
|
|
|
|
# plyr = player.Player(name)
|
|
|
|
# print(f"{name}:")
|
|
|
|
# for atr in plyr.attributes:
|
|
|
|
# print(atr)
|
|
|
|
# print("----------")
|
|
|
|
|
2022-01-11 18:50:30 +00:00
|
|
|
g = TestGame()
|
|
|
|
g.faceoffTest()
|
2022-01-11 17:29:18 +00:00
|
|
|
|
2022-01-09 00:42:11 +00:00
|
|
|
|
|
|
|
#twitter = twitHandler.TwitHandler()
|
|
|
|
#if os.path.exists(os.path.join("Data", "lastID.twt")):
|
|
|
|
# with open(os.path.join("Data", "lastID.twt")) as idFile:
|
|
|
|
# lastID = idFile.readline().strip()
|
|
|
|
#else:
|
|
|
|
# lastID = 0
|
|
|
|
|
|
|
|
#while True:
|
|
|
|
# twitter.scanForMention(lastID)
|
|
|
|
# time.sleep(30)
|
|
|
|
# with open(os.path.join("Data", "lastID.twt")) as idFile:
|
|
|
|
# lastID = idFile.readline().strip()
|
|
|
|
|
|
|
|
|
|
|
|
#twitter.sendTextTweet(player.Player("Amogus").twitterString())
|
|
|
|
|