0

ここでエラーが発生するのはリンクですhttp://cdn.imghack.se/images/b902d2e1eea1f477e1a649f6004f34f3.png、これをコードに入れるとエラーが発生するディレクタークラスを使用しています

        local path = system.pathForFile( "myfile.txt", system.DocumentsDirectory )
        local file = io.open( path, "w+" )
        local reader, er = io.open( path, "r" )
        local contents = reader:read("*n")

                local function update( event )
                updateBackgrounds()
                updateSpeed()
                updateMonster()
                updateBlocks()
                updateBlasts()
                updateSpikes()
                updateGhosts()
                checkCollisions()
                updateScore()
                end


            function updateScore()

                        if (stopscore == false) then
                                score = score + 1
                                scoreText.text = "score: " .. score
                                scoreText:setReferencePoint(display.CenterLeftReferencePoint)
                                scoreText.x = 0
                                scoreText.y = 30
                                print (er)
                        else
                                if(  contents == nil ) then 
                                        file:write(score)   
                                        file:close()
                                        reader:close()  

                                else
                                        file:close()
                                        reader:close()
                                end

                                 if ( contents < score and monster.isAlive == false)
                                        file:write(score)   
                                        file:close()
                                        reader:close()
                                else
                                        file:close()
                                        reader:close()
                                end


                        end     
             end

誰かが私を助けることができますか?まだ同じエラーを投稿しています

4

1 に答える 1