Aller au contenu

voskom

GamerLine
  • Compteur de contenus

    4
  • Inscription

  • Dernière visite

Tout ce qui a été posté par voskom

  1. In the Graphic options menu in the first item the only options that appear to me are Clear and None. I've selected Clear. When finish the level an the game only show the intro video. I'll try when I have 2 levels to see how it works.
  2. thanks karis, that was the problem. now the code would look like this: Level[1] = {"Un nuevo aventurero", 8043,9220, 4, 0, 0, -1} function setupMoves(thisLevel, thisScene) if thisLevel == 1 then if thisScene == 1 then sceneStart = 1177 sceneEnd = 2809 totalMoves = 6 move[1] = {1283, 1301, UP, 1} Another cuestion, after finish the level clear level video or victory video should be viewed? frameVictory = offsetMenus +3 -- Frame for the picture shown when the game is completed. offsetClear = 75722 -- Positions of the video after clearing a level (can be a single frame). offsetClearend = 75842 at finish the level and the game no video is displayed, it's my code: offsetMenus = 8013 frameOptions = offsetMenus +0 frameVictory = offsetMenus +3 frameSave = offsetMenus +6 frameRankings =offsetMenus +9 frameControls = offsetMenus +12 frameSpecial = offsetMenus +12 offsetGameOver = 3386 offsetGameOverend = 3769 offsetGameOverAlt = 3773 offsetGameOverAltend = 3916 offsetNewHScore = 3920 offsetNewHScoreend = 3991 offsetEnterHScore = 3995 offsetEnterHScoreend = 5650 offsetRankings = 5654 offsetRankingsend = 5989 offsetContinue = 5993 offsetContinueend = 6952 offsetClear = 6956 offsetClearend = 7147 offsetMovieEnd = 22102 -- Death frames -- totalDeath = 1 offsetDeath = 7151 Death[1] = {offsetDeath + 0, offsetDeath +95} ---------------------------------------------------------------------------------------------------- -- 3. List of Levels (Title, Start Frame, End of Intro Clip, Total Scenes, Mirror, Death Mirror.) -- ---------------------------------------------------------------------------------------------------- finalstage = 1 PlayOrder = {1} AllowSecret = false RelativeFrames = true Level[1] = {"Un nuevo aventurero", 8043,9220, 4, 0, 0, -1}
  3. it doesn't work, the strange thing is that I have deleted the skip line and it still appears in the game...
  4. Hi, I'm trying to create an FMV game with singe 2, but I've run into a problem. In the 1st scene of my level, I have a SKIP as the first movement, if I let the sequence pass without pressing any button, the video continues but the SKIP!!! image continues appearing and no button responds anymore and the Overlay images of the other movements are not shown either. If I press a button to skip the scene it is played again from the beginning, then it works correctly. I've more SKIP movements at the scene all works fine. Level[1] = {"Un nuevo aventurero", 8043,22102, 4, 0, 0, -1} ---------------------------------------------------------------------------------------------- -- 4. Lista de movimientos para cada nivel, por escena (StartFrame, EndFrame, MOVE, Death#) -- ---------------------------------------------------------------------------------------------- function setupMoves(thisLevel, thisScene) if thisLevel == 1 then if thisScene == 1 then sceneStart = 0 sceneEnd = 2809 totalMoves = 6 move[1] = {23, 1177, SKIP, 0} move[2] = {1283, 1301, UP, 1} move[3] = {1755, 1771, RIGHT, 1} move[4] = {1854, 1870, BUTTON1, 1} move[5] = {1953, 1969, DOWN, 1} move[6] = {2010, 2026, DOWNRIGHT, 1} Sorry by my bad english
×
×
  • Créer...