Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+2)

Hello hello, I haven't encountered this error before. When I try to run the project, it seems totally normal

 ( ˘・з・)

So I checked some post on Internet((Lemma Forums

Maybe you can try this code:

screen save():

    use file_picker

screen load():

    use file_picker

screen load_save_slot:

    $ file_text = "% s\n  %s" % (FileTime(number, empty="Empty Slot"), FileSaveName(number))

    add FileScreenshot(number) xpos 0 ypos 2

    text file_text xpos 50 ypos -25 size 20  color "#000000"

screen file_picker:

    imagemap:

        ground 'gui/saveload_idle.png'

        idle 'gui/saveload_idle.png'

        hover 'gui/saveload_hover.png'

        selected_idle 'gui/saveload_selected.png'

        hotspot (576, 585, 36, 44) action FilePage(1)

        hotspot (619, 585, 36, 44) action FilePage(2)

        hotspot (663, 585, 36, 44) action FilePage(3)

        hotspot (708, 585, 36, 44) action FilePage(4)

        hotspot (753, 585, 36, 44) action FilePage(5)

        hotspot (796, 585, 36, 44) action FilePage(6)

        hotspot (324, 152, 244, 168) action FileAction(1):

            use load_save_slot(number=1)

        hotspot (580, 152, 244, 168) action FileAction(2):

            use load_save_slot(number=2)

        hotspot (840, 152, 244, 168) action FileAction(3):

            use load_save_slot(number=3)

        hotspot (323, 355, 248, 167) action FileAction(4):

            use load_save_slot(number=4)

        hotspot (580, 355, 248, 167) action FileAction(5):

            use load_save_slot(number=5)

        hotspot (840, 355, 248, 167) action FileAction(6):

            use load_save_slot(number=6)

        hotspot (64, 79, 160, 128) action ShowMenu("load")

        hotspot (64, 222, 160, 128) action ShowMenu("preferences")

        hotspot (64, 516, 160, 128) action ShowMenu("help")

        hotspot (64, 372, 160, 128) action ShowMenu("about")

        hotspot (1126, 69, 74, 65) action Return()

init python:

    config.thumbnail_width = 245

    config.thumbnail_height = 150

--------------------------------------------------------------------------------------

Then the save/load screen will look like this:

I hope this code worked for you

(๑•o•)و✧

Ok, this solved the problem, thank you so much!

(+2)

You're welcome I'm glad you found it helpful

(≧∀≦)