Foon →
Ludum Dare Explorer →
LD25 →
Just Another
Just Another
By willowblade
View on Wayback Machine
| Category | Rank | Score | Count |
|
|---|
| Coolness | 1189 | | | |
Comments
smaxx
2012-12-17 14:50
The windows download won't run out of the box:
- Your startup script is a sh script. Windows won't know how to execute it by default (it should have the extension cmd or bat).
- The game requires a valid Python interpreter as well as pyGame installed, so I'd suggest you provide precompiled binaries or link all required components (in case there are more).
smaxx
2012-12-17 14:56
Okay, got it running after installing pyGame. I like the style (and Zelda'ish games in general). However, I haven't been able to leave the first room, maybe I did something wrong?
parapup
2012-12-17 15:04
Reminds me of classic games like Zelda sorta.
Yeah sorry for that, I made a post on it but didn't post the text in my game description. I'd better do that. So sorry! I ran out of time to code the level progression which is really lame, I put way too much time in the geometry of my rotating sprites. So it's more of an engine than an actual game for now. Thank you for the feedback, and trying to run it. I forgot I actually left the .sh in there, I made it in Linux
ceronman
2012-12-21 16:14
Nice graphics and controls. The game itself doesn't add much. I didn't know what to do after killing the two guys. The interact key doesn't do anything. Neither does the right click.
tehskull
2012-12-24 22:39
I'd love to try this, but PyGame doesn't like my computer (mostly because I have both Python 2.7 and 3.0 installed).
Next time, include EVERYTHING out of the box.
I won't run past the opening screen for me (because of a math error.)
I am on Linux, but I will try for Windows later.
saisaith
2013-01-04 10:41
Interesting game.
Still doesn't work on Windows for me. It still says module problems. (I got it wrong last time when I said math.)
jfroco
2013-01-07 17:02
I use pygame a lot, but when i try to run this I've got:
Traceback (most recent call last):
File "main.py", line 277, in <module>
main()
File "main.py", line 202, in main
e.angle = ai.angle_2(player1, e)
File "C:\Users\jfroco\Downloads\Just Another\ai.py", line 19, in angle_2
angle_rad = math.atan(x_diff/y_diff) #POS
AttributeError: 'module' object has no attribute 'atan'
I checked ai.py and seems OK.
My python installation seems OK too:
Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import math
>>> math.atan(1)
0.7853981633974483
Strange
jfroco
2013-01-07 17:20
I've changed in ai.py
from math import atan,degrees,pi
and all the math.atan, math.degrees, math.pi calls and it worked.
Weird.