Jump to content

lord_sasquatch

Members
  • Content Count

    9
  • Joined

  • Last visited

Posts posted by lord_sasquatch


  1. Im having a problem in visualbb im getting syntax error line 62 column 33 when i try to compile. This is the first time i have used this program and i am just following a basic tutorial. Im building up to making my own homebrew, sasquatch invaders! Probably something obvious that is wrong but i cant find it. Code Below, Thanks

     

    I will also attach the file of the game so you can have a look more easily.

     

     

    rem Generated 10/12/2014 19:36:26 by Visual bB Version 1.0.0.554
    rem **********************************
    rem *<filename> *
    rem *<description> *
    rem *<author> *
    rem *<contact info> *
    rem *<license> *
    rem **********************************
    playfield:
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    ................................
    ................................
    ................................
    ................................
    ................................
    ................................
    ................................
    ................................
    ................................
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    end
    COLUBK = $66
    COLUPF = $D8
    missile0height=4:missile0y=255
    NUSIZO = 16
    sprites
    player0x=50
    player0y=50
    player1x=20
    player1y=20
    player0:
    %01111100
    %11111110
    %01111100
    %01010100
    %01010100
    %01111100
    %00111000
    %00000000
    end
    player1:
    %00101000
    %00111000
    %10010010
    %10010010
    %11111110
    %00111000
    %00111000
    %00111000
    end
    if missile0y>240 then goto skip
    missile0y = missile0y-2;goto draw_loop
    skip
    if joy0fire then missile0y=player0y-2:missile0x=player0x+4
    draw_loop
    drawscreen
    goto sprites

    default.bas

×
×
  • Create New...