Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

crud when I replaced that line now I get this did I do it wrong?

SCRIPT ERROR: startscene: Invalid get index 'Null' (on base: 'Dictionary').

          At: res://files/scripts/newsexsystem.gd:2131

ok also another one you can't end a sex scene if it's after a date.

SCRIPT ERROR: endencounter: Invalid call. Nonexistent function 'name_short' in base 'Reference ()'.

          At: res://files/scripts/newsexsystem.gd:2943

(2 edits)

This one's my mistake as well. Line 2943 of newsexsystem.gd has

i.name_short()

but it should be

i.name

No, I don't think you got it wrong, otherwise the line number would likely be the same. It's my fault again, I changed a lot of things and didn't test all of it. Line 2131 of newsexsystem.gd has

i.person.dictionary(requests[i.request])

but it should be

i.person.dictionary(requests['stop'])

No worries. It being my mistake is always a high possibility.