how do i play vb?
Printable View
how do i play vb?
????????????Quote:
Originally posted by oakenfold
how do i play vb?
VB isn't a game.
to play volley ball get yourself a net and 1 other person
place the net 6ft off the ground
get a ball (leather) and punch the ball over the net
object of game dont let the ball touch the ground using only your arms
i'm not taking about volley ball u f#cking dickhead. i'm taking about playin grand turismo 2 on vb6 & and making a game like max payne?
Sorry to offend you mate!!!
You SHOULD HAVE STATED THAT IN YOUR ORIGINAL POST!!!
How did we know what you were talking about!!?????
I would suggest you place this question in the games and graphics forum !!
Please keep the language nice in this forum, thank you.Quote:
Originally posted by oakenfold
i'm not taking about volley ball u f#cking dickhead. i'm taking about playin grand turismo 2 on vb6 & and making a game like max payne?
When you post a question like: "How do I play VB" you should expect to get answers like the one rudvs2 gave you.
VB isn't a game VB is a programming environment. You don't play games within VB. It's possible to create simple games in VB even though it isn't the best environment to do so.
Before trying to make a game like grand turismo 2 you must learn the basics of the language.
What kind of an answer did you expect? The source for the game????
YES the source code would b nice please post it ere:) :) :) :) :) :) :p :p :p :p :p :cool: :cool: :cool: :cool: :cool: :eek: :eek: :eek: :eek: :confused: :confused: ;) ;) ;) ;)
he was being sarcastic :eek:
it's not written in VB :rolleyes:
You better calm it down if you want to continue your membership at vbf :rolleyes:
ONLY JOKING B4!!!! I know how do make txt flash but is it possible to make the txt rotate or spin about & is it possible to make a picture flash 2? :D :cool: :) IBCNUL8RZ
don't speak hax0r talk, coz i probably won't be seeing you later :rolleyes:
There's an example on allapi that may hold some relevance..
http://www.microsoft.com/directx/
http://msdn.microsoft.com/library/de...entid=28000410
You can write DirectX games from VB which cover all of this, all the games for the XBox are written in DirectX too.
You want to get yourself the DirectX SDK (software development kit). You can download the SDK from this page and there are a load tof tutorial papers and samples in with this.
Good luck
VB Code:
'In general section Private Declare Function CreateFontIndirect Lib "gdi32" Alias "CreateFontIndirectA" (lpLogFont As LOGFONT) As Long Private Declare Function SelectObject Lib "gdi32" (ByVal hdc As Long, ByVal hObject As Long) As Long Private Const LF_FACESIZE = 32 Private Type LOGFONT lfHeight As Long lfWidth As Long lfEscapement As Long lfOrientation As Long lfWeight As Long lfItalic As Byte lfUnderline As Byte lfStrikeOut As Byte lfCharSet As Byte lfOutPrecision As Byte lfClipPrecision As Byte lfQuality As Byte lfPitchAndFamily As Byte lfFaceName(LF_FACESIZE) As Byte End Type 'In form Private Sub Form_Load() 'KPD-Team 1998 'URL: [url]http://www.allapi.net/[/url] 'E-Mail: [email][email protected][/email] Dim RotateMe As LOGFONT 'Set graphic-mode to 'persistent graphic' Me.AutoRedraw = True 'Rotate degrees Deg = 270 'Size (in points) Size = 20 'Set the rotation degree RotateMe.lfEscapement = Deg * 10 'Set the height of the font RotateMe.lfHeight = (Size * -20) / Screen.TwipsPerPixelY 'Create the font rFont = CreateFontIndirect(RotateMe) 'Select the font n the Form's device context Curent = SelectObject(Me.hdc, rFont) 'Print some text ... Me.CurrentX = 500 Me.CurrentY = 200 Me.Print ":-)" End Sub
Don't know if it's relevant, got it off allapi.net