I didn't played your game, because i can't. I'm not a programmer and don't have those tools to play your game and with 1000+ game, i'll not install them. You don't have a way to make an exe or anything? I think that's not a problem to make it after if you don't touch the game only offer way to play it, tell me if you do it, i'll be happy to test it :)
Traceback (most recent call last): File "run_game.py", line 1, in <module> from lib import main File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/main.py", line 5, in <module> from . import actors File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/__init__.py", line 1, in <module> from .grinch import Grinch File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/grinch.py", line 2, in <module> from .items import StealableItem, UseableItem File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/items.py", line 4 def __init__(self, name, *args, weight=10, kwargs): ^ SyntaxError: invalid syntax
If i tried with python3 it just complained ImportError: cannot import name main
Sorry, I don't have much time to actually download the source and brew it to play. If there's ready build to be played right away would be nice and save time for others as well.
Comments12
[deykoweec@deykobook donspaulding-thegame-1d22451b1e97]$ python2 run_game.py
Traceback (most recent call last):
File "run_game.py", line 1, in <module>
from lib import main
File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/main.py", line 5, in <module>
from . import actors
File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/__init__.py", line 1, in <module>
from .grinch import Grinch
File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/grinch.py", line 2, in <module>
from .items import StealableItem, UseableItem
File "/home/deykoweec/Competitons/LudumDare/games/donspaulding-thegame-1d22451b1e97/lib/actors/items.py", line 4
def __init__(self, name, *args, weight=10, kwargs):
^
SyntaxError: invalid syntax
If i tried with python3 it just complained ImportError: cannot import name main