How To Create Single Player Mouse Game

Oct 27, 2011

I create a mouse game for a single player. Set up a form with 4 rows of pictures boc controls. when a start button is clicked the mouse is "behind" one of the buttons while a stop image is behind 3 other picture boxes. The object of the game is to click the correct picturebox that contains the mouse. If the stop image appears before the mouse then the game is over. I don't understand how the logic works.

View 2 Replies


ADVERTISEMENT

Game Programming :: Speed (Card Game) One AI Player And A Human Player

Nov 23, 2010

I'm making a speed card game [URL] for the final in one of my programming classes. I'm looking for a little assistance with how to go about getting it done the best way. I've included the code I have so far below. How does it look? What would you do differently? Would you do anything the way I did? I need to have one AI player and a human player.

Code:

View 3 Replies

Make Two Player Game That Allows You To Move Both Player Objects With The Same Event?

Jan 19, 2012

So I am trying to make a program that allows you to move two shapes using two KeyPress events, one to move the first object and another for the second. It works, but it can only move one of the two objects, not both at the same time.

Private
Sub
Form_KeyPress1(ByVal[code]......

View 9 Replies

Forms :: Two Event Methods - Mouse Click And Mouse Down For A Single Button In A Form

Feb 1, 2009

I am new to VB.NET, Now i'm working with Events in VB.NET, I have two event methods, Mouse Click and Mouse Down for a single button in a form, I have displyed a message in each of these methods but only mouse down event is triggered. Why Mouse Click is not triggered? Similiarly I Did the same for Mouse Enter and Mouse Move for a particular button, in this case both the events are triggered.

View 2 Replies

Game Programming :: Get Mouse Coordinates When Click On A Mouse Button Inside A Listbox?

May 24, 2008

I was wondering if there is anyway I can get mouse coordinates when I click on a mouse button inside a listbox? I know how to do it in the form but when I click inside a listbox nothing happens.

View 9 Replies

Check If A Player Has Won The Game?

Nov 25, 2009

How would I check if a player has won the game? I've figured out that there is only eight possibilities for X and eight again for O which makes sixteen in total.Here is what I've tried so far..

If Square1.Text + Square2.Text + Square3.Text = "X" Then
MessageBox.Show("Player 1 has won the game!", "Player 1 wins!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
End If

I thought that this code will only allow that message box to appear only if all of the squares have X as its text. But the message box appears when there is only one square with X. How can I make it so that the message box only appears when all 3 squares have an X.

View 2 Replies

Make A 2-player Go Game?

Aug 16, 2009

How could I start making a Go game? I just need some logic for it, and maybe some code, and then I can do the rest. How can you tell if an area is enclosed, which areas on the board are full, etc.? I also need ideas on how to find infinite capture/retrieve cycles.

View 7 Replies

Game - Making The Map Scroll With The Player

Mar 21, 2012

I am working on a game using Visual Basic.NET and XNA. I am having trouble making the map scroll with the player. I can move the map at a square at a time(32x32) but I don't like the way it looks. I want to move at a fluid rate if possible. I want the player to be able to walk half-way through a square then see a half-square to either direction your moving. IE: Walking left, walk half-way through a square then to the far left of the map see half of the next square going to be drawn. But I don't want just half-way, I want to be able to just have fluid movement where you can walk to an 1/8th of the square and see the next 1/8th on the other side of screen if possible... To open this project and view you must have Windows Phone SDK installed can get it from Microsofts website......Note:Only up and down movement have been added into the game.

View 2 Replies

Make A (Mp3 Player) In Game Menu?

Oct 10, 2009

I want to make an ingame menu. When you open a game a menu will pop up with a hotkey. I don't need you to do the work for me I just need a sample of a ingame menu with a hot toggle (ie: the menu doesnt need an interface, a black square that pops up with key).

View 7 Replies

Texas Hold Em Game - Input Box Pop Up And Ask For A Player Name

Nov 24, 2010

Im working on a Texas Hold'Em game and I am gonna make it so i can have 9 players in the game, I put 9 blank labels on my form and a button. What im looking to do is have an input box pop up and ask for a player name. That part is easy enough and i got that, now im looking for the most efficient way to put what i put in the input box into the 9 labels. Should i have multiple input box variables, each one to handle a label? I know thats not very efficient which is why i wasnt leaning toward that. What i had tried doing was having the input box fill a listbox, which i got that to work fine, but i ran into issues with loading whats in my listbox to my labels. Its my assumption since its trying to load the stuff in the listbox to a label before its even there, it gives an error such as the array is outside of the index. I tried a Do until loop to tell it to do the input box, fill the listbox, and then try to read from it but my problem came is what if only 5 players are playing and the program is trying to read 9 players.

View 14 Replies

Make A 2 Player Game But Both Players Can't Move At Once Unless They Tap The Keys?

Aug 20, 2009

Well I am trying to make a 2 player game but both players can't move at once unless they tap the keys (can't hold the key down or the other person can't move). How would I fix this as well as being able to go diagonally.Would this work?:Declare a bool value for each keypress below the public class thingy. Then use keyup to turn the bool off and keydown makes it go on. Then for the first player and second player I check if they are on and if they are than go to that direction...I think I would need a timer for that part but I dunno...

View 3 Replies

Write A Simple Game On Which The Player Has To Pursuit Some Figures On The Screen?

Oct 16, 2009

I'm currently trying to write a really simple game on which the player has to pursuit some figures on the screen. Since i'm just writing the prototype version i'm using a Panel wich i redraw 1000 times per second. Now, i want that every level is similar but not the same as past level, so i created a Level Class that contains the game objetcs of Player Class and the Figure Class, wich are the ones that have all the movement subrutines. So, with a Timer, 1000 times per second, i get the input from a joystick, pass it to the player objetc and update the position of the figure object. All this stuff is reported to an internal Panel that every level object has, wich i refresh and then pass it ByVal to the panel that the player actually sees. The problem i have is that after the first level ends, when the second level starts running, i can see the last frame of the fisrt level flashing behind the figures and it makes the game run a bit slower after every level. I tried keeping a copy of the inicial state of exterior panel and use it to clean the one i'm using on the levels but it didn't work...

View 11 Replies

Game Programming :: Create A Picture Shuffle Game?

Jun 4, 2012

I am all new to Visual Basic 2008, I am trying to create a picture shuffle game, the problem is I cant seem to be able to move one picture from PictureBox1 to PictureBox2 onClick, here is a Code I written earlier:Sub ChangePicture(ByRef P1 As PictureBox, ByRef P2 As PictureBox)

[Code]...

View 1 Replies

Game Programming :: Create A Zombie Style RPG Game

Sep 11, 2009

Is there any visual basic 2005/2008 RPG games with the source code available for download.Could you possibly reply to this post with a link to the website with the game.Or is there a template i could use to try create a zombie style RPG game text or graphical.

View 2 Replies

Making A 2D Game That Has A Player (me) That Shoots Bullets (pictureboxes) And Kills Other Enemies?

Apr 22, 2011

I am making a 2D game that has a player (me) that shoots bullets (pictureboxes) and kills other enemies. The problem is that when there are many bullets on the screen it gets very slow because it has to move every picturebox.

View 11 Replies

Create Mouse Hotkey - Open Notepad When I Click Mouse Button #5?

Sep 9, 2010

My mouse has 7 buttons. How to make program that will open notepad when I click mouse button #5?

View 1 Replies

Game Programming :: Picture Box Not Following Mouse

Dec 15, 2010

I am making a game where a car picture box has to follow a mouse. to start the game you click the car but when i click the car the car moves down away from the cursor. then it starts following the cursor but is still about 2 cm below the cursor and a little to the side.

[code]...

View 3 Replies

Making A Textfile With A Single Mouse Click?

Aug 18, 2010

I found this piece of code in a Youtube video, that used it to save a file via a normal save dialog, all i intented to do was remove the dialog and simply save the file with no warning.

The problem now is that it says that the "Hula" String is not a part of a string, and im kinda lost.

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myStreamWriter As System.IO.StreamWriter

[Code]......

View 1 Replies

Controlling Mouse X Y Speed Separately For Fps Game?

Sep 23, 2010

I decided to make a program to improve my game... In fps games a small movement can aim the camera all the way up or down, but much more movement is needed to spin around, so I want to build a program that simply multiplies the horizontal movement relative to the vertical movement .5x, 2x, ect.The problem is I do not know how to control the X and Y separate from each other.

View 16 Replies

Game Programming :: Change Mouse Cursor?

Apr 5, 2008

I'm making a map engine for another game I'm working on.... I would like to make my mouse cursor be a 32X32 pixel rectangle. This would make it easier to place my tiles which are all 32x32.

View 4 Replies

Mouse Over Event To Highlight Single Word(s) In Rich Textbox

Sep 11, 2009

I have a rich textbox with words in it separated by space characters. I want to create a mouseover event so that when I drag the cursor over a single word in the rich textbox that the word wil be highlighted grey. How do I set up the mouse over event to trigger whilst hovering above this specific control and do I make it recognize a stand alone word,

View 11 Replies

Game Programming :: Image Rotate To Follow Mouse Position?

Sep 13, 2011

In a game i am making, as the mouse cursor i have crosshairs (like those in FPS games) and i would like an image box to change images as the mouse moves so that it appears that the character in the picturebox is following the mouse cursor.

i thought i would do something along the lines of first finding out which side of the picture box its on (left or right) then finding out exactly where with some maths equations and then assigning 1 of 60 pictures so that it appears that the picture is rotating.

View 1 Replies

VS 2008 - Creating A Tycoon Game / Make The Player Either A 'job Offer' Or 'share Offer'?

Jul 24, 2009

I am creating a tycoon game where you start at the bottom and go up the business ladder. At the end of the year, the player can either, stay with him current job, get another job or go it alone. I would like to know how I can make the player either a 'job offer' or 'share offer' when they own their own business.

View 4 Replies

Game Programming :: Use Mouse Hover Event For Getting The Same Image Back After Hovering?

Nov 20, 2009

I am using VB 2008 Express. I am creating minesweeper game with picture boxes. I want a box in the grid to glow & I have created Different images form that. I want that whenever we hover over the box , it glows & I have used the visible property. I have set the property as false of all the glow boxes.

[Code]...

View 1 Replies

Lotto Game Mouse Hover Wait To Display Label After All 6 Boxes Have Been Hovered?

Feb 21, 2010

I have a slight issue on my program. I have everything in working order except for displaying "You Win!" or "Try Again!" after all text boxes have been hovered. Currently it displays the answer on the first hover because all boxes are already populated with random numbers from an Array and it knows the answer. I want the label to display at the end of the game on the last hover event.

Public Class Form1
'Declare variables we want to use on more than one sub or function.
Private randObj As New Random(1)
Private LottoArray(5) As Integer

[code]....

View 2 Replies

Making A GDI++ Game - Monster(picturebox) To Go After The Player(picturebox)

Jan 14, 2010

Hey I am making a GDI++ game in vb.net. Now what I want is the monster(picturebox) to go after the player(picturebox). There Are No Vertical Walls. Only The Edge of map barriers. For example to get to the player the AI would have to go to the end of the ledge and either jump off and fall to the lower ledge or take the ladder down. There is no jumping, only falling and going up and down ladders and across the horizontal ledges. So How Can I make this pathfinding system?

View 18 Replies

Create A Movie Player By Using VB?

Sep 6, 2010

how to create a movie player by using visual basic?

View 3 Replies

How To Create Media Player In .net

Jan 10, 2011

I want to create media player in vb.net. It will supports all the different file formats like wmv,flv,mpg etc.,

View 1 Replies

Create A .exe Wrapper For A Flash Player?

Feb 9, 2010

I would like to create a .exe wrapper for a Flash Player using VB.NET. I am having a few problems.1.I seem to remember being able to import Flash Player as a control into Visual Studio (2008 Pro). For some reason, I can't seem to VS to import it anymore. (I tried using the OCX from Visual Studio) Perhaps I'm looking for the wrong file. What file am I looking for?

2.Is including Flash inside of a VB program legal?

3.When a control is included in a VB.NET program (such as Flash) does the control need to be distributed in a separate file, or will the compiled application contain it in the ".exe"?

I was able to import the control as the Flash10b.ocx from c:WindowsSystem32Macromed directory as a COM component. Question 2 and 3 still remain.Is there documentation on the ActiveX control? I am trying top figure out the API for ExternalInterface.

View 1 Replies

Create A Simple DVD Player With Program?

Apr 26, 2012

I am trying to create a simple DVD Player with Visual Basic 2008 (Express). But I am trying to find this item for the Toolbox-"MSWebDVD".

Does anybody have, like a download link to get it for VB 2008? If you do provide me with a download link, then I would kindly ask to tell me on how to apply it.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved