ralf tauscher :FreiburgSocial: · @stereo
698 followers · 3011 posts · Server freiburg.social

compiled version 10 git on the it took about an hour. now i can not only on it, but can also my own stuff in the sun. ;)

#inform7 #beepy #frotz #glulxe

Last updated 1 year ago

Inform 7 Tips · @inform7tips
265 followers · 813 posts · Server mastodon.gamedev.place

...which is to say that it depends on the I6 variables prior_named_noun and prior_named_list, the latter of which is not directly accessible in by default.

Without getting into every detail, they get set whenever you `say` an object, `say` a list, or say `[regarding <number>]`, `[regarding <object>]`, `[regarding <description of objects>]`.

They're not automatically set just by saying a number; you must use `regarding` in that case if that's what you want.

#inform7

Last updated 1 year ago

Hello, yes, this is Gregly · @gregly
236 followers · 532 posts · Server retro.pizza

Maybe I like projects like and so much because they are absolutely insane, tilting at windmills with wild abandon. They don’t care that their goals are borderline insane; they plunge ahead and do it anyway, unfettered by the concepts of “practicality” and “sensibility”. It’s a sort of barely-restrained, mad-scientist view: “You won’t stop me! NOBODY can stop me! BWAHAHAHA!”

#inform7 #dwarffortress

Last updated 1 year ago

Inform 7 Tips · @inform7tips
262 followers · 781 posts · Server mastodon.gamedev.place

As a dedicated spelunker, on a recurring basis I wonder "am I the only one who's noticed this?"

The List Writer Internal rule responses have two different entries for "closed" at 'E' and 'O'.

ganelson.github.io/inform/stan

I suppose someone *could* want to rename "closed" as used in the Printing room description details (E) and the Printing inventory details (O) activities independently...

(I assume I'm usually *not* the first person to notice...I'm just a blabbing about outlier)

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
262 followers · 776 posts · Server mastodon.gamedev.place

Don't mind me, toward testing the listwriter, I wrote a script to generate an program to create every combination of container and supporter -- lit/unlit, wearable or not, holding something or not, that thing being concealed or not, that thing being lit or unlit, and also, for containers,
transparent/opaque, openable or not, lockable or not, open/closed, locked/unlocked, then checking their inventory and room descriptions in a dark and lit room, worn or not worn for wearable things...

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
262 followers · 774 posts · Server mastodon.gamedev.place

I've long been in the habit of never using Instead rules to forward an action to a different action in -- unless you have some unusual and unlikely reason to delay it, you're better off with a Before rule. But I've still sometimes been nervous about the before rules ending up in an unfortunate order and screwing things up. I finally thought of an obvious approach.

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
260 followers · 768 posts · Server mastodon.gamedev.place

You may recall how WI 4.16: Names Made in Assembly tells us that one can use either of these:

A person (called its fan) likes every colour.
Every person likes a colour (called his favourite colour).

This construction directs to *create* a thing as a side effect of creating another thing on a 1:1 basis.

zedlopez.github.io/i7doc/WI_4.

#inform7

Last updated 1 year ago

Nate! · @nate
60 followers · 1677 posts · Server frogmob.life

I’ve been tinkering with , , and for writing lately and they are all so good! Each has a different focus but they are all interesting and well thought out and elegant in their own ways.

#interactivefiction #twine #ink #inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
258 followers · 763 posts · Server mastodon.gamedev.place

pull me
twist me
squeeze me
turn me
press me
move me
push me
screw me

Things to which replies, by default:

"You might not like that."

...

I dunno, doesn't sound that bad.

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
258 followers · 763 posts · Server mastodon.gamedev.place

's default response to `push me`:

"You might not like that."

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
258 followers · 760 posts · Server mastodon.gamedev.place

List-writing in uses "and" by default and it's not especially obvious how to switch it to "or".
--
list-writer-conjunction is initially "".

For issuing the response text of list writer internal rule response (C) when list-writer-conjunction is not "": say " [list-writer-conjunction] ".

To say (L - a list of values) with/using (t - text):
let previous be list-writer-conjunction;
now list-writer-conjunction is t;
say L;
now list-writer-conjunction is previous;

#inform7

Last updated 1 year ago

Drew Cook: Gold Machine · @golmac
240 followers · 273 posts · Server zirk.us

In hopes of making a better experience for itch.io players, I've tuned a release of Repeat the Ending for comfortable play/reading. I've also added instructions for "reading" RTE for those who have would prefer not to experience it as a parser game. I hope this is helpful!

kamin3ko.itch.io/repeat-the-en

#interactivefiction #inform7 #parser

Last updated 1 year ago

Inform 7 Tips · @inform7tips
258 followers · 756 posts · Server mastodon.gamedev.place

If you try compiling this code (assuming there's a Table of Fish with a name column and at least 1 row...)

To select row: choose row 1 in the Table of Fish;

when play begins:
select row;
say name entry;

you'll get this error:

"You wrote 'say name entry': but no row seems to have been chosen at this point, so it doesn't make sense to talk about the entries within it."

I always you needed a `choose row` or a table reference with `listed in` to satisfy the compiler.

#inform7

Last updated 1 year ago

ivedonestranger · @ivedonestranger
42 followers · 122 posts · Server blorbo.social

@DeadlyEssence01

I used to actually them a few years ago in

#write #inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
256 followers · 737 posts · Server mastodon.gamedev.place

So, I think I've gotten more or less to the bottom of one of 's secrets...

I've mentioned before that the kinds over which one can iterate with `repeat with x running through the Ks`:: enumerated kinds of value, external files, figure names, sound names, scenes, objects, truth states, use options, responses, verbs, table names, action names, or descriptions of values of those kinds.

Units, aka specified kinds of value, are arithmetic values.

#inform7

Last updated 1 year ago

Inform 7 Tips · @inform7tips
255 followers · 736 posts · Server mastodon.gamedev.place

Many debugging commands, like `rules` or `trace` or `responses` can produce a *lot* of output. A convenient way to capture it can be:

echo 'test me'|cheap-glulxe gamefile.ulx > gamefile_testme.out

where cheap-glulxe is glulxe built with the CheapGlk library. (This assumes your code has a test me with the commands whose output you want.) Use dfrotz for Z-machine games.

The `transcript` command is another viable way to capture output.

#inform7

Last updated 1 year ago

Tobias Hellgren · @thanius
289 followers · 3296 posts · Server mastodon.chuggybumba.com

So... I will attempt to write an using .

Here's a small WIP on the first room (and spoiler alert on how to beat the game! 😂)

By release it will look (and sound!) more 8-bit than now.

Wish me luck!

#interactivefiction #inform7 #youarelikelytobeeatenbyagrue

Last updated 1 year ago

Drew Cook: Gold Machine · @golmac
239 followers · 269 posts · Server zirk.us

I've had a couple of small improvements suggested for Repeat the Ending, and I'd like to revamp the hints related to scoring. I'll do another (final?) release of Repeat the Ending to incorporate these changes.

Please let me know if you have had problems with it or would just like to suggest something.

No, "I didn't like it" doesn't count as a suggestion! :P

ifdb.org/viewgame?id=eueqjtej7

#interactivefiction #repeattheending #inform7

Last updated 1 year ago

Nate! · @nate
58 followers · 1664 posts · Server frogmob.life

Using to prototype out the conversations in my current Interactive Fiction project, because it's easier than using the REALLY fancy Conversation Framework Eric Eve built for

Once I get the conversation flow more or less where I like it I think it won't be too hard to convert into Inform. But this is faster for now.
And it feels SO GOOD to be interested in a creative project again!

inklestudios.com/ink/

#amwriting #interactivefiction #projectnotes #inform7 #inkle

Last updated 1 year ago

ralf tauscher :FreiburgSocial: · @stereo
643 followers · 2812 posts · Server freiburg.social

@spacehobo the clockworkpi uconsole seems also attractive as an interactive fiction appliance ;)

and i need the .gblorb interpreter. i compiled some time ago, but that was on

i completely forgot that the pi zero 1 is armv6. so i cant just copy stuff.

#inform7 #riscv

Last updated 1 year ago