Really just not been up to any development work for quite a while now. Will post as soon as I get started again.
Some Editor Buttons broken
Some of the buttons in the Editor are currently no longer functional due to removing the Pretty Editor. This will be rectified in time.
Game System Fixed (hopefully)
After much debate with the webhosts and a little work on my part the gamesystem appears to be functioning again, please let me know if you have any difficulties!
Gamebook System Down
Unfortunately due to my Hosts moving to new Servers none of the Perl Modules I use were installed during the migration and my entire gamebook system is non-functioning.
I am currently debating whether I will spend the week or so necessary to remedy this situation as to be frank, almost nobody appears to use the system anyway.
Randomizer Bug – Possibly FIXED
Up until now I was unaware of a Bug in the Randomizer, whereby some references may have ended up self-referencing. I have now implemented a fix that seems to have worked, but please be aware of this in the eventuality you used it. Testing of the fix is still underway.
Combat Full Editor Button fixed
The Editor button that allows you to make Complex Combats easily was bugged, it is now fixed.
New ‘inv’ attribute added to tt tag.
The ‘inv’ attribute stands for ‘if not visited’ and will easily let you restrict the option to turn to a reference if it has already been visited. Please see the ABML documentation for details.
Referencing extended to Array Indeces
Individual Array indeces may now be referenced with a reference variable. Enjoy.
Currently Reading:
Caverns of the Snow Witch, I never finished this one yet. Also Harry Potter and the Chamber of Secrets, because my son is a big Potter fan and I want to know what the fuss is about.
Referencing extended to Arrays
The new variable referencing facility has been extended to arrays and even array references… I’ve tested it even on function parameters and it seems to work which is awesome… exhaustive testing has not been done ‘cos, well, nobody seems to use this site much anyway let alone code as deeply as using reference variables (check out my tiny violin), but trust me, it’s pretty impressive stuff, and highly useful.
One tiny note:
You cannot reference individual array elements, because I haven’t REALLY implemented dereferencing properly, you can only reference the whole array and index it from there, e.g.
$x=(5,4,3,2,1);
$z=\$x[0] ;
&print $z; ## expecting 5?
…wont work.
Reference the whole thing and dereference the reference as if it were an array like so:
$x=(5,4,3,2,1);
$z=\$x;
&print $$z[0];