Results 1 to 5 of 5

Thread: New to game Programming

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2000
    Posts
    5

    Talking

    Is it possible to create a scripting system for games using visual basic?
    Also, I need help learning how to scroll my tiles to make my maps larger than what you can see on screen.

  2. #2
    PowerPoster Fox's Avatar
    Join Date
    Jan 2000
    Location
    *afk*
    Posts
    2,088
    Of course you can

    Oh, click here for a scolling demo.

  3. #3
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181

    Question What do you want to script?

    For what Kind of game do you want to create a scripting system? And what do you want to be manipulated?

    If you just want to do easy stuff like chanching the values of variables it's no problem just to define some small commands like
    change Life = 100 or sth like this

    but if you want to program things to create script for NPC behaviour it can get hard.

  4. #4

    Thread Starter
    New Member
    Join Date
    Jun 2000
    Posts
    5

    I'm using VB4

    I'm using vb4 and I need help with scrolling. The scripting would be used to create weapon effects and player classes and so on.

  5. #5
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    What kind of scrolling just movin a picture from right to left again and again?

    like: (pseudo)
    x=0
    y=0
    do
    draw bitmap to x,y
    draw bitmap to x+bitmapbreite,y

    x= x-1
    if x <= -bildbreite then x = 0
    loop until exit
    Sanity is a full time job

    Puh das war harter Stoff!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width