Search found 3890 matches

by Mogri
Mon Sep 17, 2012 7:34 pm
Forum: General Discussion
Topic: Spam Wave
Replies: 6
Views: 1805

I don't remember what kind of CAPTCHA CP uses. The one at Slime Salad is custom-made, and while the occasional bot slips through, it's very rare and quickly addressed. CP also has some forums that can be used anonymously, which is a bad idea unless you're willing to be very diligent about removing t...
by Mogri
Sun Sep 16, 2012 7:01 pm
Forum: Game Discussion
Topic: Couple of glitches I'm getting
Replies: 26
Views: 3655

I do my graphics keyboard-only, so the mouse is never on the graphics area. It is usually on the Undo button because I am unaware of a keyboard shortcut for Undo in the graphics editor.
by Mogri
Sun Sep 16, 2012 5:24 am
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

Image

I could really use a playtester soon.

Image

Does anyone want to play a horribly imbalanced version of this game?
by Mogri
Sun Sep 16, 2012 5:16 am
Forum: Game Discussion
Topic: Couple of glitches I'm getting
Replies: 26
Views: 3655

1. When switching between tiles/sprites, the offset of your clone tool clone changes. Can't reproduce. Clone remembers both cursor position and cloned brush anchor point in both tile and sprite editors for me. More details? Cursor position seems to be retained, but anchor point is shifted. 2. GAME ...
by Mogri
Sun Sep 16, 2012 4:02 am
Forum: Game Discussion
Topic: Couple of glitches I'm getting
Replies: 26
Views: 3655

Annoyances:

1. When switching between tiles/sprites, the offset of your clone tool clone changes.

2. GAME and CUSTOM both perform version updates on up-to-date files, which makes me sad.
by Mogri
Fri Sep 14, 2012 2:19 am
Forum: General Discussion
Topic: Video Game Tourneys and Mmo Guilds
Replies: 25
Views: 4603

Realm of the Mad God is f2p and allows guilds.
by Mogri
Fri Sep 14, 2012 12:15 am
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

The restaurant system is finished. In theory. Maybe. Cooking food that is not terrible increases the restaurant's popularity, and more popularity means more customers. After the first few days, you will get specific requests -- maybe for a specific dish (or something like it), maybe for a specific i...
by Mogri
Wed Sep 12, 2012 3:35 pm
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

fade screen out(0, 0, 0) teleport to map(2, 11, 9) show map wait(5) walk hero(me, up, 4) fade screen in wait for hero(me) suspend caterpillar walk hero(1, left) walk hero(1, up) walk hero...
by Mogri
Wed Sep 12, 2012 2:59 pm
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

You mean how the caterpillar seems to stretch slightly when walking speed increases? This is because in caterpillar mode, each hero is always exactly five steps behind the hero in front of them, without regard for how long in pixels those steps happen to be. If you were willing to script caterpilla...
by Mogri
Wed Sep 12, 2012 12:11 am
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

It is in fact animated, which should help with the contrast issues. The shaded green horizontal line moves slowly up. Also animated: http://www.slimesalad.com/files/chef6.png The, uh, the not-solid portion, which is perhaps similar to milk but not enough so that you could use it for cooking, rises a...
by Mogri
Tue Sep 11, 2012 8:25 pm
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

NeoSpade wrote:If it doesn't contain a man with three buttocks, then I shall be severely disappointed ;).
What


but


I don't


:???:
by Mogri
Tue Sep 11, 2012 5:57 pm
Forum: Game Discussion
Topic: Heart of the OHR Contest 2012
Replies: 532
Views: 103351

Now for something completely different

Image

What could this mysterious place be? FIND OUT.
by Mogri
Mon Sep 10, 2012 6:06 am
Forum: Game Discussion
Topic: Script Woes - When to "wait"
Replies: 9
Views: 1609

From the Penguin Chef script: fade screen out(0, 0, 0) show backdrop(1) show text box(84) wait(5) fade screen in wait for text box I'm not sure if the 5 makes a difference versus 1, but this achieves the effect I wanted; namely, making ...
by Mogri
Mon Sep 10, 2012 6:03 am
Forum: Game Discussion
Topic: Legacy roadmap
Replies: 261
Views: 45075

He hardly has a monopoly on that style! Indeed. If you are referring to the solids-with-black-outline used in Do You Want to Be a Hero? and others, then I can't claim to have invented it. I do really recommend it as a method of quickly generating graphics that aren't eyesores, not to mention that i...
by Mogri
Mon Sep 10, 2012 5:54 am
Forum: Game Discussion
Topic: Script Woes - When to "wait"
Replies: 9
Views: 1609

"wait" by itself does nothing (usually). You are waiting for zero ticks with that command.

The fade screen commands don't usually play well with other things, and to get them to work properly, you need to include a non-zero wait between them.

(edit) on further inspection, BMR is correct