Noxico


Regarding the new patch system I just whipped up and put on Bitbucket

Given this starting data, music.tml:

Title
	loonie_-_cronologie_4_remix.xm
	sandras_sweet_sex_seminar.xm
Grassland
	joule-mozarella_filofox.xm
	aa-molec.s3m
	hyo-dum.it

and this patch, music.tml.patch:

-- Add this to the end of the file
add: -
	Added
		patch_me_in.s3m
 
-- Add this between Title and Grassland
add: Title
	Inserted
		patch_me_in.s3m
 
-- Add this to Title
add: Title/-
	beek_ita.it
 
-- Remove a particular song from Title
remove: Title/loonie_-_cronologie_4_remix.xm
 
-- Replace a song
replace: Title/loonie_-_cronologie_4_remix.xm
	Cronologie IV.ogg
 
-- Replace the whole set of title music choices
replace: Title
	Title
		Cronologie IV.ogg
		Sandra's Sweet Sex Seminar.ogg
 
-- Change a token's value(s)
set: Inserted
	value: 42
	text: something

Given two tokens with the same name, you can use something like bodyplan[6] (zero-indexed!) or bodyplan[=felin] in a path as well.

[ ] Leave a Comment

The State of Development, April 2016

First of all, those of you playing Noxico builds from Bitbucket may notice that talking to townspeople may or may not crash your game. The error may be a little confusingly worded but it boils down to missing conversational data. This will be fixed naturally as/if/when someone writes better conversational data to replace the stupid and/or stand-in data that’s there now.

Others who played may have had a crash regarding the bodyplan data where the game couldn’t find the “felinoid” data. This is because I was overhauling the plans a little, replacing the felinoids with the species that they directly inspired; the felin. The crash was simply because not all references were adjusted yet. No, anonymous reporter, it was not a typo.

Second, I’m heavily considering to remove the introduction dream from the game. It seems a silly way to teach the player how to control the game, let alone in one or two big ol’ walls of text. So instead I’m planning to replace that with a tutorial mode, which would be enabled from the character creator. Its default state would be taken from the settings file, and basically it’d let the game teach various things as they become relevant. This is why the latest commit adds image support to MessageBox – so our lovely mascot Chelsie can “host” the tutorial and appear as a sort of part of the interface, at the player’s side of the fourth wall. I’d like your opinion on this idea.

Third, I really need to nail down the setting here. Fantasy? Sci-fi? What even is this?! Weapons, clothing and such are all over the place.

Well, that’s about it for now. See ya next year 😀

[ ] Leave a Comment

Oh dear, is that a new character creation backdrop? Yes it is, and it’s dynamic, showing a representative image of the chosen species and sex combination. If a given combination has no matching image file, it’ll try to use just the species. If that isn’t possible, it uses a generic fallback.

[ ] Leave a Comment

In Noxico right now, there are three basic kinds of man-made wall: outer wall, inner wall, and fence.

In codepage 437, which the new Noxico tileset is based on, box drawing characters are laid out like this:

Note that there are two styles – single and double – and not all combinations are represented.

In Unicode, the box drawing characters are like this:

Three styles, two of which two have all sorts of combinations, and a certain logical order.

Now, what I’m thinking of doing is to keep the actual single and double box drawing characters from codepage 437 as they are now, but move around and extend the wall characters to match Unicode’s order. Have the thin and thick lines map to outside and inside walls, and the double lines as fences.

And then, when buildings are placed or updated, have the whole map just simply brute-force it all as far as which exact character to draw where goes.

Thoughts?

[ ] Leave a Comment

Tested the new actual intercourse groundwork. My target had her underpants on so I couldn’t insert. I took off her skirt, still couldn’t insert… and before I could pick “take off her lacy panties” she pinned me.

Luckily, she took the panties off herself shortly after.

[ ] Leave a Comment

So. I just spent some time on the new sex system. I found this foxgirl and used her as a test subject.

For some reason she climaxed using the male variant. I thought it was a bug in the code or data… but it was just a trap.

[ ] Leave a Comment