sleepingkirby

Active Member
Aug 8, 2017
831
1,317
Ew. Why would you name a cereal that?
I had to look it up.

Founded by candy veteran Jeff Rubin in 2006, IT'SUGAR has become one of the largest specialty candy "retailtainers" in the world. with 100 locations throughout the United States and Canada. IT'SUGAR is more than just a candy store - it's an experience. Known for their absurd sugar innovations that celebrate lighthearted rebellion, IT'SUGAR aspires to a future where everyone has access to the pure joy that comes from indulging in a world with fewer rules and more sugar.
At the bottom of their webpage.
© 2024 IT'SUGAR IT’SUGAR is a candy store specializing in innovative sweets, fun novelty gifts, and giant candy. © Copyright 2006-2023 IT'SUGAR® All Rights Reserved
So I guess the answer is, "For the lolz".
 

AceOfAlvie

New Member
Jul 6, 2017
10
0
In script.rpy

View attachment 3521959

I Changed " Saveversion = 1510 " to "Saveversion = 1511"


View attachment 3521961
The game is programmed in such a way that, If Saveversion < 1510. Doreen has a schedule and actually appears in game.
but, as expected, there is not much content in game for her though. Just Stripping, Handjob and masturbation.

PLEASE MAKE A BACKUP FOR YOUR GAME :)

I can't seem to find a script file to edit that myself :(
 

Stem

New Member
Apr 5, 2017
11
25
Maybe I'm asking in the wrong topic, but can anyone share artwork from the author ( oni ) of this game ? I found a torrent but it's been dead for 8 years. Example of the author's work will now add.
3fcf122c1eafde63cc7d91e343e4f9f3.jpg
 

Nast33

Newbie
Jul 1, 2017
60
52
51.d still has very obvious non-ignorable bugs. Anytime I try sitting next to someone in class this happens, either from my previous save or on day 2 when starting over:

While running game code:
File "game/script Locations.rpy", line 653, in <module>
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "script Locations.rpyc", line 389, in script call
File "script Locations.rpyc", line 653, in script call
File "script Functions.rpyc", line 2233, in script
File "E:\H\Rogue-Like-1.51d-win\renpy\ast.py", line 1341, in execute
args, kwargs = self.arguments.evaluate()
File "E:\H\Rogue-Like-1.51d-win\renpy\ast.py", line 184, in evaluate
args.append(renpy.python.py_eval(v, locals=scope))
File "E:\H\Rogue-Like-1.51d-win\renpy\python.py", line 1794, in py_eval
return py_eval_bytecode(code, globals, locals)
File "E:\H\Rogue-Like-1.51d-win\renpy\python.py", line 1788, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/script Locations.rpy", line 653, in <module>
IndexError: list index out of range

Windows-8-6.2.9200
Ren'Py 6.99.13.2919
Rogue-Like 1.51d
 

sleepingkirby

Active Member
Aug 8, 2017
831
1,317
51.d still has very obvious non-ignorable bugs. Anytime I try sitting next to someone in class this happens, either from my previous save or on day 2 when starting over:

While running game code:
File "game/script Locations.rpy", line 653, in <module>
IndexError: list index out of range

-- Full Traceback ------------------------------------------------------------

Full traceback:
File "script Locations.rpyc", line 389, in script call
File "script Locations.rpyc", line 653, in script call
File "script Functions.rpyc", line 2233, in script
File "E:\H\Rogue-Like-1.51d-win\renpy\ast.py", line 1341, in execute
args, kwargs = self.arguments.evaluate()
File "E:\H\Rogue-Like-1.51d-win\renpy\ast.py", line 184, in evaluate
args.append(renpy.python.py_eval(v, locals=scope))
File "E:\H\Rogue-Like-1.51d-win\renpy\python.py", line 1794, in py_eval
return py_eval_bytecode(code, globals, locals)
File "E:\H\Rogue-Like-1.51d-win\renpy\python.py", line 1788, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/script Locations.rpy", line 653, in <module>
IndexError: list index out of range

Windows-8-6.2.9200
Ren'Py 6.99.13.2919
Rogue-Like 1.51d
He probably typed too fast. I know I've done that a few times with Javascript.
Open up that file (game/script Locations.rpy) and on line 652 (Note that it's line 652, not 653), change this:
Code:
 while Present > 2:
to this:
Code:
 while len(Present) > 2:
"Present" is an array/list and he forgot to compare it to the length of the array on 652 but did so on 655.
 
4.40 star(s) 154 Votes