Click to See Complete Forum and Search --> : New to game Programming
mortyr
Jul 18th, 2000, 06:33 PM
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.
Fox
Jul 19th, 2000, 12:27 AM
Of course you can ;)
Oh, click here (http://orion.spaceports.com/~mccloud/coding/graphical.htm#Scrolling) for a scolling demo.
/\/\isanThr0p
Jul 19th, 2000, 03:03 AM
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.
mortyr
Jul 20th, 2000, 09:49 AM
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.
/\/\isanThr0p
Jul 21st, 2000, 08:47 AM
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
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.