Jump to content

Intellivision Brasil

Members
  • Posts

    49
  • Joined

  • Last visited

1 Follower

Contact / Social Media

Profile Information

  • Gender
    Male

Recent Profile Visitors

2,438 profile views

Intellivision Brasil's Achievements

Chopper Commander

Chopper Commander (4/9)

162

Reputation

  1. Name: Max-It! Description: Challenge a friend or the computer in this classic board game. Capture a number and corner your opponent. Use your strategy to make him lose points. Risk everything by capturing wildcard value. For 1 or 2 players. Brief Manual: The game features a 10x10 board with a number filled in each cell (between -15 and 15). Player 1 moves only horizontally and player 2 only moves vertically. Each player, in turn, must choose an available number and press the button to capture it. The value will be added or subtracted from your score (values with a gray background are positive and values with a red background are negative). The last number captured will be shown next to the scoreboard. The "wildcard" cells have a hidden number and their value will only be revealed after the player captures it. During the game, a random scan of the board may occur and one cell will be hidden with a white card. Just like the wildcard, this cell has a hidden number, but its value will be doubled when captured. The game ends when all numbers have been captured or when a player is unable to play. The player with the highest score will be the winner. Select the number of players from the menu. Use the 0 key to turn the sound on or off during the game. Have fun! Sergio Vares Maxit.rom
  2. X-Rally has a hidden level and a trick that keeps your lives.
  3. Thank you! I don't know much about the OSX structure, but it could be an interesting path for me to follow.
  4. Hi. The new version of IntelliTool, a graphical interface to assist in creating games for Intellivision, is available for download. It has an intelligent code editor, tile and screen editor, as well as integrating other tools such as IntyColor and Bin2Rom/Rom2Bin. Write your code and simply press F5 to see the result. Allows you to create a project with several BAS files (to test different versions, for example). This short video shows some examples. IntelliTool (for Windows) can be downloaded from: http://intellivisionbrasil.com.br (Software/Emulators and Tools menu). Note: you will need to manually include the GROM.BIN, IVOICE.BIN, ECS.BIN and EXEC.BIN files. I hope it can be useful.
  5. Hi. I found information in an old Brazilian magazine about video games that intrigued me: "In the USA, the first Intellivision required a small factory alteration in order to operate the System Changer and the Computer Module. Digiplay informed us, however, that the first model launched in Brazil was electronically equal to the second and will dispense with these modifications. That's why the national Intellivision found difficulties and even didn't play some cartridges created by Coleco for Intellivision. This was a problem that occurred with Intellivision II. As in Brazil I is electronically equal to II, the problem is explained." I have a Brazilian Intellivision I, but I don't have any Coleco cartridges to do the test and the System Changer was not released in the country. Does anyone of you have a Brazilian console and have you tried using System Changer or a Coleco game? Sergio
  6. Hi friends. I'm finishing up X-Rally but I've run into an intermittent issue with the main song (video attached). At times, the music becomes noisy on channel 2 and only returns to normal when a sound is generated on that channel (using smoke or picking up a flag), although I used NO DRUMS. What I have already identified (and tried) with no positive result: 1 - It occurs intermittently (when I use the control to change direction or even letting the car run freely and without generating any sound with a flag, smoke or collision). 2 - I isolated sound effects 1 by 1 and even disabled all sounds. 3 - All sounds are activated in ON FRAME GOSUB Sounds (with variables that indicate which sound should be played and when it ends). 4 - The menu music uses PLAY FULL and plays normally. At the start of each level, the main music is called this way: SOUND 4,,$38 PLAY OFF PLAY SIMPLE NO DRUMS PLAY MainMusic 5 - This is the structure of the song: MainMusic: DATA 5 MUSIC GOSUB MainMusic1 MUSIC GOSUB MainMusic2... MainMusic1: MUSIC SPEED 5 MUSIC A4Y,A2W MUSIC S,- ... 6 - The DATA commands of the song are allocated between 2C2B to 2E2E. If anyone has an idea or suggestion, I would greatly appreciate it. RallyBadSound.mp4
  7. Hi friends. I would like to know if you can help me with this issue. I have several levels in the game in a huge DATA sequence (about 700 lines): GameScreens: DATE $AB6B,$AB6B,.... DATE $AB6B,$AB6B,.... When the player advances to level 2, I use a variable to position the start of the data in the SCREEN command like this: #ScreenAdjust=#ScreenAdjust+2223 SCREEN GameScreens, #ScreenAdjust, 0,14,BACKGROUND_ROWS,LastCol Is there any way to break the DATA into multiple levels and still use only 1 SCREEN command (without IF)? Something like this (it doesn't work): Screens: DATA VARPTR Screen1(0) DATA VARPTR Screen2(0) Screen1: DATE $AB6B,$AB6B,.... DATE $AB6B,$AB6B,.... Screen2: DATE $BBBB,$BBBB,.... DATE $BBBB,$BBBB,.... SCREEN Screens(0), 0, 0,14,BACKGROUND_ROWS,LastCol Instead of this: Screen1: DATE $AB6B,$AB6B,.... DATE $AB6B,$AB6B,.... Screen2: DATE $BBBB,$BBBB,.... DATE $BBBB,$BBBB,.... IF Level=1 THEN SCREEN Screen1, 0, 0,14,BACKGROUND_ROWS,LastCol ELSEIF Level=2 THEN SCREEN Screen2, 0, 0,14,BACKGROUND_ROWS,LastCol ELSEIF .... Thanks!
  8. It will be available soon (cartridge and digital). Making the last adjustments.
  9. Thank you, DZ. I had already tried moving the test for ENTER to the top with no success. But after your explanation, I made a small modification to the main loop to delay the keypress checking for a few cycles. Maybe not the best way, but now the routine runs as expected. c=0 Loop1: WAIT IF CONT.KEY=11 AND NoCtl=0 THEN GOTO Loop2 IF c>2 AND CONT.KEY=12 THEN c=0 IF Level>1 THEN Level=Level-1 ELSE Level=3 GOSUB LevelName END IF IF CONT.LEFT=0 AND CONT.RIGHT=0 THEN NoCtl=0 IF CONT.RIGHT>0 AND NoCtl=0 THEN IF Level<3 THEN Level=Level+1 ELSE Level=1 GOSUB LevelName ELSEIF CONT.LEFT>0 AND NoCtl=0 THEN c=c+1 END IF GOTO Loop1
  10. Hello guys. The routine below shows the difficulty level that can be changed in a loop with the control to left or right. The problem is that, when pressing ENTER, the chosen level "goes back" to the previous level before exiting as if the control was pressed to the left (the procedure "Loop2" shows the chosen level, but it should be 1 level above the one shown in the corner of the screen). Is there any way to avoid this? I made several attempts, but none were successful. Thanks! INCLUDE "constants.bas" Level=1: GOSUB LevelName Loop1: WAIT IF CONT.LEFT=0 AND CONT.RIGHT=0 THEN NoCtl=0 IF CONT.RIGHT>0 AND NoCtl=0 THEN IF Level<3 THEN Level=Level+1 ELSE Level=1 GOSUB LevelName ELSEIF CONT.LEFT>0 AND NoCtl=0 THEN IF Level>1 THEN Level=Level-1 ELSE Level=3 GOSUB LevelName END IF IF CONT.KEY=11 THEN GOTO Loop2 GOTO Loop1 Loop2: PRINT AT 1 COLOR 7,<>Level Loop3: GOTO Loop3 LevelName: PROCEDURE FOR a=0 to 5: #backtab(147+a)=Levels(a+((Level-1)*6))*8+FG_WHITE: NEXT a NoCtl=1 END Levels: DATA " EASY ","MEDIUM", " HARD "
  11. Generosidade é o seu sobrenome. Muito obrigado!
×
×
  • Create New...