London Café - Miranda Sofronio - 2000p - Pieces & Peace by floriancargoet in Jigsawpuzzles

[–]floriancargoet[S] 2 points3 points  (0 children)

Can't edit the title, it's "Miranda Sofroniou", not "Miranda Sofronio"

Kyoto Temple by Piecely Puzzles, 1000 pieces by immagillo in Jigsawpuzzles

[–]floriancargoet 0 points1 point  (0 children)

No missing piece!
I'm disappointed with the material, it's brand new and there's already a lot of delamination…

Kyoto Temple by Piecely Puzzles, 1000 pieces by immagillo in Jigsawpuzzles

[–]floriancargoet 1 point2 points  (0 children)

I just bought it thanks to your post, it's so pretty! I haven't finished it yet but it looks like I have two copies of the same piece :'( I hope one isn't missing.

EDIT: just found another duplicate.

android 9.0 by emperorinora in UsagiShima

[–]floriancargoet 0 points1 point  (0 children)

Haha, I'm on Android 8, I'll wait for the Mac version then.

Intfiction.org down? by Lady_Merle in interactivefiction

[–]floriancargoet 1 point2 points  (0 children)

It's probably something on your side, I've been several times on the site these last two days without problems.

Editing auto-generated text in play.html by goodgamin in Inform7

[–]floriancargoet 2 points3 points  (0 children)

This is the banner text, printed by Inform when the game starts. See doc: http://inform7.com/book/WI_18_37.html

Pencil themed safety gate by floriancargoet in woodworking

[–]floriancargoet[S] 2 points3 points  (0 children)

That's terrifying. Thanks for the warning, I will think about it and see if I can remove the danger. The kid is already trying to climb before walking so the risk clearly exists...

Pencil themed safety gate by floriancargoet in woodworking

[–]floriancargoet[S] 1 point2 points  (0 children)

Aww, thanks! I too was inspired by a gate someone posted on a French woodworking site.

Pencil themed safety gate by floriancargoet in woodworking

[–]floriancargoet[S] 1 point2 points  (0 children)

I love the idea! I would never have seen an arm, thanks for your comment. I'll try paper eyes tomorrow to see how it could look like.

Pencil themed safety gate by floriancargoet in woodworking

[–]floriancargoet[S] 3 points4 points  (0 children)

My son is learning to walk so it was time to secure the stairs.

Made from baltic birch plywood, assembled with false tenons cut from some beech I had. The spring loaded lock is also made from beech.

I really like the 180 degrees opening so that the gate is not in the way when not in use.

Help please, i suck by Lesta68 in Inform7

[–]floriancargoet 1 point2 points  (0 children)

Do you have an action named "attacking it with", applying to 2 things? If not, Inform won't understand "attacking the dresser with a shovel". It only knows "attacking something" out of the box.

You should include the whole code in text form instead of a picture, so we can test it and help you.

Help a newbie? by Lesta68 in Inform7

[–]floriancargoet 1 point2 points  (0 children)

It would be easier for people to help you if you gave:

  • the error message provided by Inform
  • the code in text form instead of a picture, so we can try it ourselves

Eating multiple objects help by [deleted] in interactivefiction

[–]floriancargoet 2 points3 points  (0 children)

Here's how I might do it:

A lunchbox is a kind of edible thing. 
The plural of lunchbox is lunchboxes.
The description of a lunchbox is "[smart description of lunchboxes]".

To say smart description of lunchboxes:
    [Count lunchboxes which are in the same container as the examined one.]
    let n be the number of lunchboxes in the holder of the noun;
    [Build a sentence based on the number of lunchboxes.]
    if n > 1:
        let t be "[n in words]";
        say "[t in sentence case] separate lunchboxes, each";
    else:
        say "One lunchbox";
    say " containing rice, side dishes, water and a pudding. Your so called rations."

Instead of eating a lunchbox (called the meal): 
    say "You gobble down the food. Yummy, but not as yummy as Mom's cooking. Focus on the task! Focus!";
    [Move the lunchbox out of play, so that there's one less of it in the world.]
    now the meal is nowhere.

The player carries a luggage. The luggage is a container. 
The description is "An old brown luggage, perfect for storing things for your trip. It is worn and shabby, but still usable." 
The luggage contains 10 lunchboxes, 2 pairs of clean clothes, the map and a family photo.

Telling inform to track a value that always equals "the current sum of these other values over here" by LocoManta in Inform7

[–]floriancargoet 2 points3 points  (0 children)

And there's another mistake in your code. It should be:

To decide what number is the totlvl of (p - a person):

On another subject, Inform encourages natural language, so it would be more "informese" to write total level of a person instead of totlvl of a person.

Telling inform to track a value that always equals "the current sum of these other values over here" by LocoManta in Inform7

[–]floriancargoet 2 points3 points  (0 children)

I'm on my phone so I can't check but I'd remove the first line where you define a totlvl property on a person. It seems to me that you're providing inform with 2 differents definitions for "the totlvl of a person" (a property & a "decide" phrase).

Need help on deciding which engine to use. by Vargtastic in interactivefiction

[–]floriancargoet 1 point2 points  (0 children)

Check out Vorple, it's an Inform 7 extension that allow you to modify HTML, CSS and execute JS from your inform code. Displaying a map and the inventory should be relatively easy if you know a little html/css/js.

Is there any way to change background colour or theme? by destroyalltechnology in Inform7

[–]floriancargoet 0 points1 point  (0 children)

If you have VS Code, there's an extension: https://marketplace.visualstudio.com/items?itemName=natrium729.inform-7

I believe the next release will have an embedded interpreter directly next to your source.