Search found 7086 matches

by Bob the Hamster
Mon Aug 22, 2011 1:03 am
Forum: Games
Topic: Escape the Wolf: OHR
Replies: 3
Views: 6324

Escape the Wolf: OHR

ESCAPE THE WOLF!

Run AWAY!

...but if you run too long, you get tired.

And where is that dang cabin anyway? This forest is HUGE!

This is a Ludumdare 48 hour game AND an OHRRPGCE 48 hour game!
by Bob the Hamster
Sat Aug 20, 2011 5:17 pm
Forum: Game Discussion
Topic: A bug?
Replies: 3
Views: 832

Also, you probably already eliminated this possibility, but several people have been confused before by the fact that new maps are created with only one layer, and not with 3 layers. If you are working on a new map, you need to go into the Layers screen and add the new layers first.
by Bob the Hamster
Sat Aug 20, 2011 5:14 pm
Forum: Game Discussion
Topic: 2011 OHRRPGCE 48 hour contest (also Ludum dare) Theme=ESCAPE
Replies: 112
Views: 29042

<img src="http://james.hamsterrepublic.com/galler ... alNumber=1">
Waffles and Wolf Sprites. This is what this contest is all about.
by Bob the Hamster
Sat Aug 20, 2011 2:00 am
Forum: Game Discussion
Topic: 2011 OHRRPGCE 48 hour contest (also Ludum dare) Theme=ESCAPE
Replies: 112
Views: 29042

The contest has begun! The Theme is ESCAPE

Interpret it however you please :)
by Bob the Hamster
Fri Aug 19, 2011 10:58 pm
Forum: Game Discussion
Topic: 2011 OHRRPGCE 48 hour contest (also Ludum dare) Theme=ESCAPE
Replies: 112
Views: 29042

Three hours! Are you ready? I am ready!
by Bob the Hamster
Thu Aug 18, 2011 9:12 pm
Forum: Game Discussion
Topic: Looking to assemble team for FF6-style MMORPG on androidOS
Replies: 18
Views: 5874

The first step that I propose is to collect information about how androids work; what programming languages they function in, and how it relates to the OHR. Android devices have Arm processors, and run the Linux kernel. They do not have a complete GNU/Linux operating system, but they seem to have a...
by Bob the Hamster
Thu Aug 18, 2011 7:56 pm
Forum: Game Discussion
Topic: White flash?
Replies: 7
Views: 1555

plotscript, white flash, ticks=1 begin variable&#40;sl&#41; sl &#58;= create rect set rect bg col&#40;sl, 15&#41; # color 15 is not white in every master palette fill parent&#40;sl&#41; wait&#40;ticks&#41; free slice&#40;sl&#41; end I really need to add a...
by Bob the Hamster
Thu Aug 18, 2011 3:39 pm
Forum: Game Discussion
Topic: Looking to assemble team for FF6-style MMORPG on androidOS
Replies: 18
Views: 5874

I do indeed really want to get the OHR running on Android and iPhone, but it will probably take a long time, and won't solve the issue of Multiplayer. I actually got an Android tablet the other day (Motorola XOOM) and have been really pleased at how easy it is to develop for. I have downloaded and i...
by Bob the Hamster
Wed Aug 17, 2011 7:20 pm
Forum: Game Discussion
Topic: Plotscripts and Vehicles...
Replies: 5
Views: 1066

plotscript, hydra trigger, begin if &#40;check tag&#40;tag&#58;Hydra Attack == OFF&#41; and hero X&#40;me&#41; == 45 && hero Y&#40;me&#41; == 89&#41; then&#40; hydra attack &#41; end Read the code again. The problem is in the "check tag"...
by Bob the Hamster
Wed Aug 17, 2011 3:23 pm
Forum: Game Discussion
Topic: Plotscripts and Vehicles...
Replies: 5
Views: 1066

Re: Plotscripts and Vehicles...

So, I want a script to trigger when the hero steps on this certain invisible NPC script trigger point. However, the hero will be riding a vehicle. I tested it out, but no go. I can't trigger the script. How can I trigger the script while riding the vehicle? Also, is it possible to move the hero wit...
by Bob the Hamster
Tue Aug 16, 2011 4:33 pm
Forum: Game Discussion
Topic: 2011 OHRRPGCE 48 hour contest (also Ludum dare) Theme=ESCAPE
Replies: 112
Views: 29042

I didn't notice this yesterday, but Theme voting has started. See http://www.ludumdare.com/compo/ Correct me if I am wrong, but it appears to me that you might not even have to be logged in in order to vote. EDIT: Also, I updated the first post in this thread to talk about how we will be doing our o...
by Bob the Hamster
Mon Aug 15, 2011 8:45 pm
Forum: Game Discussion
Topic: I wish for...
Replies: 7
Views: 1704

All the single-line if/then statements like this are wrong: if&#40;wealth == 1&#41; then get money&#40;5&#41; What the compiler sees is an "if" statement all by itself with no "then" at all. Right after that, it sees an unknown command "thengetmoney(5)" ...
by Bob the Hamster
Mon Aug 15, 2011 4:19 pm
Forum: Roleplaying
Topic: Dunderstank: Chapter 2-"Boom"
Replies: 148
Views: 1851

The big armored construct may not have noticed them yet, but what if the noisy flying construct? Ehaism looks up and tries to see what it is doing. Neither the north or south hills seem far enough away for Ehaism's taste in teleport destinations. He looks to the east and west and tries to see what t...
by Bob the Hamster
Fri Aug 12, 2011 10:41 pm
Forum: Game Discussion
Topic: Show off your graphics!
Replies: 1625
Views: 336343

I like the not-quite-black color you used to outline the tiger's right front leg. i think that would look good for outlining the whole tiger, and it might represent a pleasing compromise between the black outline look and the outlineless look.
by Bob the Hamster
Fri Aug 12, 2011 10:38 pm
Forum: Game Discussion
Topic: I wish for...
Replies: 7
Views: 1704

I am guessing that the part you are confused about is the if/then/else stuff? if &#40;wish == 50&#41; then&#40; wealth wish &#41;else&#40; show text box&#40;37&#41; wait for text box &#41; Here is a more simplified form of the same thing if &#40;condition&#41;...