Search found 4098 matches

by TMC
Thu Nov 12, 2015 9:36 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

Oh, I thought you were running it via the command prompt. That's how you're meant to: -Open a Command Prompt -First, check whether scons works. Run "scons". You should see a help message. -Use the 'cd' command to change directory. E.g. "cd c:\ohrrpgce". "cd .." to go up...
by TMC
Thu Nov 12, 2015 6:05 am
Forum: Q&A Discussion
Topic: How to make a new arrowkey press trump an old one...?
Replies: 17
Views: 4294

I think maybe you want something like... wantdir := -1 if (keyval(key:left) && hero direction == left) then (wantdir := left) else if (keyval(key:right) && hero direction == right&...
by TMC
Thu Nov 12, 2015 5:18 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

What error message do you get when you run "scons"?
by TMC
Wed Nov 11, 2015 12:30 pm
Forum: Q&A Discussion
Topic: How to make a new arrowkey press trump an old one...?
Replies: 17
Views: 4294

You only need to override the movement code, and leave the use and menu keys alone, unless you want to be able to press the use and movement keys at the same time. You're overriding built-in movement in most cases, and it seems simpler to just do it always. Beware that you probably want to take into...
by TMC
Tue Nov 10, 2015 11:44 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

You don't need to, unless you want to edit the source code (and you can even use Notepad for that, although I would definite not recommend it: use Notepad++ or anything else at all, except for Wordpad/Libre Office/etc). You only need to run scons to compile.
by TMC
Tue Nov 10, 2015 5:24 am
Forum: Q&A Discussion
Topic: How to make hero strafe (move side to side)?
Replies: 8
Views: 1785

Yes, animations can be a pain. Aside from timers the other option is to put some information in the slice extra data or elsewhere about the animations, and just iterate over all the heros/slices/whatever is animating each tick to update the animations.
by TMC
Tue Nov 10, 2015 5:21 am
Forum: Q&A Discussion
Topic: How to make a new arrowkey press trump an old one...?
Replies: 17
Views: 4294

I don't understand the question. If the hero is already in the middle of a movement, why would you want to interrupt that movement and start moving in another direction, which would cause misalignment with the grid? I also don't see what the "if((keyval(key:Left) == 0) && (keyval(key:Up...
by TMC
Tue Nov 10, 2015 4:42 am
Forum: Q&A Discussion
Topic: How to make hero strafe (move side to side)?
Replies: 8
Views: 1785

(This is in reply to the original strafing question, not the turn-and-then-move question) Actually, overriding normal movement isn't necessary at all. When the hero is stationary and the player presses a movement key you use walk hero followed by set hero direction to override the direction the hero...
by TMC
Mon Nov 09, 2015 11:22 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

If you installed scons, and you put C:\Python27\Scripts in your PATH, then you should be able to run "scons" from the commandline in any directory. Then you can go to the OHR source directory (the one containing SConscript) in the commandline and run "scons" to compile. You proba...
by TMC
Sun Nov 08, 2015 2:55 pm
Forum: Game Discussion
Topic: Show off your graphics!
Replies: 1625
Views: 336345

Is that a strangely shaped cranial scar? A wire embedded under the skin?
by TMC
Sun Nov 08, 2015 9:52 am
Forum: Game Discussion
Topic: Show off your graphics!
Replies: 1625
Views: 336345

Neat to see more Overgrowth. Nice enemy idea.

Depends on the climate. The ones on the right do well-suggest to me a sunny climate, the left have a European complexion/predicament.
by TMC
Sat Nov 07, 2015 3:34 pm
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

Hmm. I suggest doing the following: get the zip file for scons 2.4.0 (which you apparently already have). Unzip it somewhere temporarily. Open a command prompt (with admin privledges, if using recent Windows), and go to the directory (using cd) that you unzipped scons to. Run "python setup.py i...
by TMC
Fri Nov 06, 2015 10:16 am
Forum: Game Discussion
Topic: Show off your graphics!
Replies: 1625
Views: 336345

Wowzors.

I think that walktall Cthulhu actually looks menacing unlike his comical 20x20 version. But boy does he look thin in that portrait. I always imagined a bloated mass of tentacles underneath that robe.
by TMC
Fri Nov 06, 2015 10:13 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

Well... that's strange. If you open a command prompt and try to just run "python" (without being in the C:\Python27 directory), does it work? If not, check whether C:\Python27 is in your PATH. However, I assumed that detecting Python installations on Windows was done in some other way. Did...
by TMC
Thu Nov 05, 2015 9:53 am
Forum: Q&A Discussion
Topic: A question regarding password recovery
Replies: 66
Views: 14844

Well, that leaves me scratching my head... I tried running the installer for myself, and saw that by default it installs into C:\Python27\Lib\site-packages\, and also puts scons.bat and many other programs in C:\Python27\Scripts. That looks completely different to what's shown in that screenshot. I ...