HTML vnAdult - devlog - public build 2019.03.09

vnAdult

Member
Dec 11, 2018
207
264
Update:

Weekend :coffee:. Coding time and a new public release. The release is mostly code, but you might find some unfinished story.



// old post

(Rushed) Public build

Here is the new public build:

Really wanted to get it out before work this weekend so it is a bit rushed. Will do some hot-fixes if needed.
new public build to share my work. Almost the same as the game before but now generated from a twine file.

Characters: 16693
Words: 2223
Passages: 96
Links: 171
Story Conditionals: 75
Stat-checks:
Charisma : 12
Looks : 9
Luck : 7
Penis-size : 8
Perception : 6

Don't expect much. Mostly an engine but a lot have been fleshed out by now. Contains spelling errors and bugs.

 
Last edited:
  • Like
Reactions: Winterfire and Eoin

vnAdult

Member
Dec 11, 2018
207
264
Daily motivator:
Gave up on the .json story format and editor. The workflow was slow and cumbersome once the editor was done. Lost a lot of time but workflow is important. The big loss is the quick translation possibility. Wrote a text->php compiler that translates renpy-like text to php for faster workflow.

Renpy-like 'start.label':
Code:
To reset the game press Play/Reset at the top of the screen.
{choice:let's play:introduction}
{choice:no thanks:noThanks}
php-result 'game.php'
Code:
function labelStart(array $array) : void
{
        $this->text("To reset the game press Play/Reset at the top of the screen.");
        $this->player->addChoice("let's play", "introduction");
        $this->player->addChoice("no thanks", "noThanks");
}
ingame result
new_play.png

code
build: 2388

story
build: 355
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Mid-)Daily motivator:

The new editor is done and works pretty well. Re-writing the .json file to the new format.

new_editor.png
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Late-)Daily motivator:

The updated editor and compiler is working fine. Had a story bug right away that took forever to find so a visual render of the story would be best in the future to avoid those mistakes. Thinking about trying Twine and and convert the text over to php with the compiler.
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
Daily motivator:

The twine2php compiler is working fine. Needs some refinement but works for now.

The shift to twine looks like the right move for now. Started re-write the game in the twine editor. Missing a good zoom function and auto-expand windows in twine.

story screenshot
twine_1.png
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Late-)Daily motivator:

Got a couple of more bugs in the compiler that needed fixing. More story outline work in twine.

twine_3.png

Characters: 9561
Words: 1290
Passages: 54
Links: 78
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Mid-)Daily motivator:

Added "init:", "isFirstTime" and "debug:" to the compiler. So values from twine can be converted into php.

Color coded the nodes: red=location, blue=system and yellow=actor.

twine_4.png

Characters: 9914
Words: 1310
Passages: 55
Links: 80
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Late-)Daily motivator:

Spent to much time trying to build a new version of Twine. No luck on Windows. Got in a little more story and logic.


twine_5.png

Characters: 11631
Words: 1525
Passages: 61
Links: 90
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Tiny-Early-)Daily motivator:

Added some more story-stat counters to keep track.

Characters: 11631
Words: 1525
Passages: 61
Links: 90
Story conditionals: 52

stat-checks:
Charisma: 11
Looks: 5
Luck: 6
Penis-size: 1
Perception: 5
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Mid-)Daily motivator:

Messing around with story. Just an update before I try to color-code the lines in twine.

twine_6.png

Characters: 15719
Words: 2089
Passages: 92
Links: 156
 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
Daily motivator:

Decided to upload a public build to share my work. Almost the same as the game before but now generated from a twine file.

Characters: 16693
Words: 2223
Passages: 96
Links: 171
Story Conditionals: 75
Stat-checks:
Charisma : 12
Looks : 9
Luck : 7
Penis-size : 8
Perception : 6

Don't expect much. Mostly an engine but a lot have been fleshed out by now. Contains spelling errors and bugs.

 
  • Like
Reactions: Winterfire

vnAdult

Member
Dec 11, 2018
207
264
(Late-)Daily motivator:

twine_8.png

Characters: 18.407
Words: 2.478
Passages: 112
Links: 221
Story Conditionals: 75
Stat-checks:
Charisma: 14
Looks: 9
Luck: 8
Penis-size: 8
Perception: 9
 
  • Like
Reactions: Winterfire