Flyte

Newbie
Sep 2, 2017
37
7
I tried to cheat the poker game using this:

#girl's chips
g_poker_game.participants[1] = 0
#player's chips
g_poket_game.participants[0] = 500

but i only get the "an exception has occured"-error. Anyone got an idea, what i am doing wrong? when i only type "g_poker_game.participants[1]" it does not show me the variable, but instead: "store.cl_poker_participant object at 0x071609B0" (the Hex-Code varies).

Thankfull for any help.
 
  • Like
Reactions: Bigman2563

KingsRaiden

Engaged Member
Jan 4, 2017
3,060
2,122
I tried to cheat the poker game using this:

#girl's chips
g_poker_game.participants[1] = 0
#player's chips
g_poket_game.participants[0] = 500

but i only get the "an exception has occured"-error. Anyone got an idea, what i am doing wrong? when i only type "g_poker_game.participants[1]" it does not show me the variable, but instead: "store.cl_poker_participant object at 0x071609B0" (the Hex-Code varies).

Thankfull for any help.
Should only need to do:
g_poker_game.participants[0].chips = # (player's chips)
g_poker_game.participants[1].chips = # (girl's chips)

You are almost there, just need to add ".chips"
Assuming the players chips you have is just a copy typo with poket...the command is mostly right.

If you don't put in chips all you are going to get is the object, which is not going to display correctly, you need the property.
 
  • Like
Reactions: PeterLuck and Flyte

Reddy.97

Member
Jan 11, 2018
135
84
This is a porn game and not a poker simulator. Duh
I always increase the Bet, always bet bet bet bet and bet. If the girl has 2 stars or lower, you will win
statistically. If she has 3 or more, you should start to think about your moves or u could loose
 

Flyte

Newbie
Sep 2, 2017
37
7
Should only need to do:
g_poker_game.participants[0].chips = # (player's chips)
g_poker_game.participants[1].chips = # (girl's chips)

You are almost there, just need to add ".chips"
Assuming the players chips you have is just a copy typo with poket...the command is mostly right.

If you don't put in chips all you are going to get is the object, which is not going to display correctly, you need the property.
Thanks a lot. Its a shame, that you can't just open the .rpy files and check variables (or decisions). normally a big plus in renpy games
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,802
8,443
Thanks a lot. Its a shame, that you can't just open the .rpy files and check variables (or decisions). normally a big plus in renpy games
Almost no one distributes the unencrypted files nowadays.
There are decryption tools out there. In any case good luck doing it with my game...
It's 1000% more complex than 99% of the renpy games out there. If you don't know what you are doing, you won't be able to find anything useful in the files.
About the poker game. You can simply open the console and type:
g_cheats_enabled = True
This will always show you who has the winning hand in the poker game. So there shouldn't be the need to further cheat and risk game corruption with it.
 
  • Like
Reactions: Bantry and UncleVT

Flyte

Newbie
Sep 2, 2017
37
7
Almost no one distributes the unencrypted files nowadays.
There are decryption tools out there. In any case good luck doing it with my game...
It's 1000% more complex than 99% of the renpy games out there. If you don't know what you are doing, you won't be able to find anything useful in the files.
About the poker game. You can simply open the console and type:
g_cheats_enabled = True
This will always show you who has the winning hand in the poker game. So there shouldn't be the need to further cheat and risk game corruption with it.
Thanks. For the answer and the game ;)
 

Chriss

New Member
May 8, 2017
12
2
Small problem
I'm sorry, but an uncaught exception occurred.

While loading <'Image' u'poker/Desire/Desire_poker14.png'>:
File "game/script.rpy", line 1224, in script call
File "game/loc_nightbar.rpy", line 138, in script call
File "game/loc_nightbar.rpy", line 280, in script
File "renpy/common/000statements.rpy", line 471, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
IOError: Couldn't find file 'poker/Desire/Desire_poker14.png'.

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

Full traceback:
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\bootstrap.py", line 295, in bootstrap
renpy.main.main()
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\main.py", line 487, in main
run(restart)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\main.py", line 147, in run
renpy.execution.run_context(True)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\execution.py", line 761, in run_context
context.run()
File "game/script.rpy", line 1224, in script call
File "game/loc_nightbar.rpy", line 138, in script call
File "game/loc_nightbar.rpy", line 280, in script
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ast.py", line 1706, in execute
self.call("execute")
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ast.py", line 1724, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\statements.py", line 145, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 471, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\exports.py", line 2526, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ui.py", line 285, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 2526, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 2883, in interact_core
self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 1955, in draw_screen
renpy.config.screen_height,
File "renpy/display/render.pyx", line 427, in renpy.display.render.render_screen (gen\renpy.display.render.c:6806)
rv = render(root, width, height, 0, 0)
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "renpy/display/accelerator.pyx", line 108, in renpy.display.accelerator.transform_render (gen\renpy.display.accelerator.c:2027)
cr = render(child, widtho, heighto, st - self.child_st_base, at)
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 473, in render
im = cache.get(self)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 200, in get
surf = image.load()
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 524, in load
surf = renpy.display.pgrender.load_image(renpy.loader.load(self.filename), self.filename)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\loader.py", line 543, in load
raise IOError("Couldn't find file '%s'." % name)
IOError: Couldn't find file 'poker/Desire/Desire_poker14.png'.

Windows-8-6.2.9200
Ren'Py 6.99.12.4.2187
Holiday Island 0.0.9.2
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,802
8,443
Small problem
I'm sorry, but an uncaught exception occurred.

While loading <'Image' u'poker/Desire/Desire_poker14.png'>:
File "game/script.rpy", line 1224, in script call
File "game/loc_nightbar.rpy", line 138, in script call
File "game/loc_nightbar.rpy", line 280, in script
File "renpy/common/000statements.rpy", line 471, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
IOError: Couldn't find file 'poker/Desire/Desire_poker14.png'.

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

Full traceback:
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\bootstrap.py", line 295, in bootstrap
renpy.main.main()
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\main.py", line 487, in main
run(restart)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\main.py", line 147, in run
renpy.execution.run_context(True)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\execution.py", line 761, in run_context
context.run()
File "game/script.rpy", line 1224, in script call
File "game/loc_nightbar.rpy", line 138, in script call
File "game/loc_nightbar.rpy", line 280, in script
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ast.py", line 1706, in execute
self.call("execute")
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ast.py", line 1724, in call
return renpy.statements.call(method, parsed, *args, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\statements.py", line 145, in call
return method(parsed, *args, **kwargs)
File "renpy/common/000statements.rpy", line 471, in execute_call_screen
store._return = renpy.call_screen(name, *args, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\exports.py", line 2526, in call_screen
rv = renpy.ui.interact(mouse="screen", type="screen", roll_forward=roll_forward)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\ui.py", line 285, in interact
rv = renpy.game.interface.interact(roll_forward=roll_forward, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 2526, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, **kwargs)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 2883, in interact_core
self.draw_screen(root_widget, fullscreen_video, (not fullscreen_video) or video_frame_drawn)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\core.py", line 1955, in draw_screen
renpy.config.screen_height,
File "renpy/display/render.pyx", line 427, in renpy.display.render.render_screen (gen\renpy.display.render.c:6806)
rv = render(root, width, height, 0, 0)
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\layout.py", line 693, in render
surf = render(child, width, height, cst, cat)
File "renpy/display/render.pyx", line 110, in renpy.display.render.render (gen\renpy.display.render.c:3440)
cpdef render(d, object widtho, object heighto, double st, double at):
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "renpy/display/accelerator.pyx", line 108, in renpy.display.accelerator.transform_render (gen\renpy.display.accelerator.c:2027)
cr = render(child, widtho, heighto, st - self.child_st_base, at)
File "renpy/display/render.pyx", line 196, in renpy.display.render.render (gen\renpy.display.render.c:2978)
rv = d.render(widtho, heighto, st, at)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 473, in render
im = cache.get(self)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 200, in get
surf = image.load()
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\display\im.py", line 524, in load
surf = renpy.display.pgrender.load_image(renpy.loader.load(self.filename), self.filename)
File "C:\Users\admin\Desktop\HolidayIsland-0.0.9.2-pc\HolidayIsland-0.0.9.2-pc\renpy\loader.py", line 543, in load
raise IOError("Couldn't find file '%s'." % name)
IOError: Couldn't find file 'poker/Desire/Desire_poker14.png'.

Windows-8-6.2.9200
Ren'Py 6.99.12.4.2187
Holiday Island 0.0.9.2
Don't use the console to cheat if you don't know what you are doing. No idea what you did.
 
  • Like
Reactions: Bantry and partanen

KingsRaiden

Engaged Member
Jan 4, 2017
3,060
2,122
Thanks a lot. Its a shame, that you can't just open the .rpy files and check variables (or decisions). normally a big plus in renpy games
You can always activate the Developer Menu and scan the list of variables in use with the game, most tend to be rather easy to figure out.
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,802
8,443
Love the game, but cannot find any blue pills to fill the high lust vials....what I'm doing wrong?
If you masturbate with high lust and collect the sperm samples, bring them to the doctor. For every 3 or 5 of them (don't remember the exact count) she will give you one blue pill.
 

Chriss

New Member
May 8, 2017
12
2
Don't use the console to cheat if you don't know what you are doing. No idea what you did.
I used to cheat just to play poker with Joy and Desire just. When I play with Desire with cheating or without getting me out of the game. Practically at the end of the game when I'm naked I have a choice.
 

darkhound1

Well-Known Member
Game Developer
Aug 8, 2017
1,802
8,443
I used to cheat just to play poker with Joy and Desire just. When I play with Desire with cheating or without getting me out of the game. Practically at the end of the game when I'm naked I have a choice.
As I said you fucked something up.
Open the console and check this:
desire.poker_images
it should be 4
If it isn't - set it back to 4, typing
desire.poker images = 4
 

UncleVT

Låt den rätta komma in
Moderator
Jul 2, 2017
9,423
99,093




Hi,

just wanted to show you a little new feature.

The deletion of no longer needed old save files has been made easier. You can just use the mouse to click on the small trash can icon to delete the save file.

Darkhound
 

PisakPL

Member
Jul 20, 2017
111
19
Should only need to do:
g_poker_game.participants[0].chips = # (player's chips)
g_poker_game.participants[1].chips = # (girl's chips)

You are almost there, just need to add ".chips"
Assuming the players chips you have is just a copy typo with poket...the command is mostly right.

If you don't put in chips all you are going to get is the object, which is not going to display correctly, you need the property.
thank u man
 

PisakPL

Member
Jul 20, 2017
111
19
Should only need to do:
g_poker_game.participants[0].chips = # (player's chips)
g_poker_game.participants[1].chips = # (girl's chips)

You are almost there, just need to add ".chips"
Assuming the players chips you have is just a copy typo with poket...the command is mostly right.

If you don't put in chips all you are going to get is the object, which is not going to display correctly, you need the property.
You know how incrase favor poins ?
 
4.00 star(s) 215 Votes