Jobarbille, The Reader

Member Since

5/30/2019

Last Activity

8/8/2023 11:01 AM

EXP Points

64

Post Count

9

Storygame Count

2

Duel Stats

1 win / 0 losses

Order

Marauder

Commendations

165
No Profile Entered

Storygames

Finali Incantatum

Depuis plusieurs mois, des sorcières et sorciers du monde entier perdent leurs pouvoirs magiques lors d'évènements étranges.


Lorem Ipsum

On raconte qu'il y a plusieurs décennies, un élève de génie aurait caché un livre de sorts hors-normes quelque part dans Poudlard : le Lorem Ipsum. Le retrouverez-vous ?


Brouillon
unpublished

Test 394
unpublished

Test téléphone
unpublished

Recent Posts

What “outside the bounds of the array” means? on 8/14/2020 5:07:35 AM

Indeed! It was not on the script but on the page itself, I've rewrited the page and now it works perfectly.

Thank you very much, I was afraid it can be caused by having created too many pages!


What “outside the bounds of the array” means? on 8/13/2020 6:07:45 PM

In Preview mode, when I go on some pages of my story, an error occurs and says:

Index was outside the bounds of the array
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.IndexOutOfRangeException: Index was outside the bounds of the array.
” (details here: https://zupimages.net/up/20/33/28aq.png )

What does it means? Please help me, I'm working on this story for a while, with many many pages (+1000) and links, I don't want to lose it all x_X


Multiple "if / then" in script doesn't work on 6/14/2020 5:03:45 PM

So thank you too for your stalling xDD


Multiple "if / then" in script doesn't work on 6/14/2020 4:51:39 PM

It works!! Thank you very much ^^


Multiple "if / then" in script doesn't work on 6/14/2020 4:43:42 PM

Is there some way to avoid this?


Multiple "if / then" in script doesn't work on 6/14/2020 4:37:46 PM

Indeed! I moved "2 to 1" to the end, and now it's "3 to 2" that doesn't work… It looks like the first one is always skipped!


Multiple "if / then" in script doesn't work on 6/14/2020 4:04:02 PM

I've tried to add a script to a link, but it doesn't work. The goal is, when the player clicks on a link, a variable change : from 1 to 4, 2 to 1, 3 to 2, 4 to 3 (but the player remains on the same page). So i've written that in the script:

IF %VARIABLE1 = 2
THEN %VARIABLE1 := 1

IF %VARIABLE1 = 3
THEN %VARIABLE1 := 2

IF %VARIABLE1 = 4
THEN %VARIABLE1 := 3

IF %VARIABLE1 = 1
THEN %VARIABLE1 := 4

It works… except for "2 to 1"! Instead, the 2 goes to 4.

Why? And how to fix this?


How do you code "between"? on 7/1/2019 6:30:09 AM

It works, thank you very much!


How do you code "between"? on 6/30/2019 12:50:30 PM

Hi!

I'm trying to create random encounters, but I don't know how to code "between"... For example, it doesn't works when I write :

%RAND := 1D100?

IF %RAND > 0 < 51 THEN
BEGIN
%LASTPAGEID := $PAGEID
$DEST := @P10
END

So what is the code to write "between" ?