Create A Little Program Where Can View A Few Game Servers?

Jul 18, 2011

I'm trying to create a little program where I can view a few game servers, specifically cs, cs:s, and cod4?

Imports GameServerInfo
Public Class Form1
Dim server As GameServer = New GameServer("74.201.57.23", 27015, GameType.CounterStrike)

[code]....

I've tested multiple servers as well that were up and running so It's not the servers I'm putting in.

View 5 Replies


ADVERTISEMENT

Create A Memory Game In Program?

Apr 16, 2012

I am a noob to Visual Basic and I am currently learning it at my college. I have a final project to do and I am having some trouble deciding on how to attack it. First off, I have done a lot of research and I cannot find my answer, so I am using this(post) as a last resort. The book my prof is having me use is outdated, its coding on vb6, and we are using vb2010...hence my problem. I am not looking for an answer in code, but more to be pointed in the right direction, or maybe some classes that I do not know about.[code]...

View 7 Replies

Create A Program That Plays A Game With The User?

Oct 18, 2011

Im new to visual basic and im taking a class on visual basic currently We are suppose to create a program that plays a game with the user. The game is about guessing a random number the program guesses If you are too high from the computers guess it will tell you "too high"If you are too low from the computers guess it will tell you "too low"If you are right it will let you know your right Currently im having problem with Line 7, its saying RandomInteger is expecting declaration But i declared it above as a integer

[Code]...

View 2 Replies

VS 2008 Make A Third Person View Program In First Person Game?

May 5, 2009

I wanted to know how to make a Third FOV program in a First Person shooter game.

View 16 Replies

Deleting A File Or Folder On Multiple Servers From A List Of Servers?

Sep 29, 2011

I don't really know how to code but am pretty good at tweaking. I'm trying to set up a script that I can run to delete a single file, multiple files, a folder or multiple folders on a list of servers.I was thinking that the script could read the files to be deleted from a .txt file and apply the deletion to a list of servers in another .txt file.Example:

FilesToBeDeleted.txt:
\(insert_server_name_from_list)c$Program FilesBINexample_file.rpt
or

[code].....

View 1 Replies

VB 2008 Create A Program That Intercepts The Traffic Going Into And Out Of The Game Including Whats Writen In The Chatbox?

Aug 30, 2010

I have a game which has a chatbox in it and was wondering if its possible to create a program that intercepts the traffic going into and out of the game including whats writen in the chatbox.I am the host of the game.Basicly I want the information to be displayed in something like a richtextbox?

View 1 Replies

Create RDP Session On Remote Servers

Mar 31, 2010

I am trying to find the way to create RDP session on remote computer using VB and net framework.

Because my company is using RDP(not a console session), some processes that have window that is to show logs and event must be executed on the screen.

However there is a lot of computers, I have to find some solution that is to execute remotely.

The problems that I encounter are as below.

1. if there is no session(in case of restarted) - I have to create session.

2. if there is session - I have to get appropriate sessionID

3. Remote execution - to execute remotely on the session.

View 1 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

VS 2010 Game Multi-Client - Program That Enables A Game To Have More Than One Instance Running

Nov 18, 2011

I want to make a program that enables a game to have more than one instance running, where it would otherwise be unable to be done. How should I go about this? A sandbox? Hack?

View 3 Replies

Game Programming :: Pig Dice Game - When Program Runs - Never Goes To Computer's Turn And Does Not Update Users Score Either

Apr 18, 2012

On programming assignment without having any real experience in vb. I guess I don't understand subroutines that well. When the program runs it never goes to the computer's turn and does not update the users score either. This assignment is already in but would like to know what is going wrong. Using VB 2010, and this is windows application.

Code:
Public Class Form1
Dim Myturn As Integer
Dim Computerturn As Integer

[CODE]...

View 6 Replies

Show Program Front Of The Game While Playing A Game

Nov 7, 2011

I want to make program that shows info in game while playing. Problem is that I have no idea how to do it. I tryed some methods, but unsuccessfully. So does anyone has idea how to make it ?

View 3 Replies

Basketball Game Monitor - Update The Database With The Info Put In The Datagrid View

Apr 6, 2010

I have this program im making it is supposed to be a basketball game monitor. The user enters two teams and the 12 players on each team then it has you pick the 5 active players and takes you to the run form where you can start the game once started you can add things like fouls and baskets made and attempted if a player gets 5 fouls or you hit stop clock you change which players are active and its supposed to update the database through the dataset and dataadapter but it doesnt seem to update the database with the info put in the datagrid view.

Here is the code of the run form i will also attach source in zip file if needed to point out mess ups

Update: When you hit resume game after change of players is when it puts zero on everyone again.

Basketball-RealTime-Monitor.zip (322.22K)
Number of downloads: 74

Imports System.Data

[CODE]...

View 3 Replies

VS 2008 Server Program Can Receive SMTP Messages From Other SMTP Servers

Aug 14, 2009

I'm using the TcpClient and TcpListener classes to read/write to the network when a request comes in on port 25. All I'm trying to do at the moment is make it so that my server program can receive SMTP messages from other SMTP servers. I've tested in Telnet - if I connect to my own IP on port 25 and type EHLO, MAIL FROM, RCPT TO, DATA etc then all works as it should and the details I entered are logged by the program (it doesnt do anything about delivering these details/email yet).all looks good... but then when I try and just send an email to my domain from my work account I can see that a connection is made to my program and the string "EHLO workdomain.com " is received by my program - my program responds to the remote SMTP server with "250-mydomain.com Hello" and then a CrLF and then "250-OK". After that point however, my app does not receive anything further at all from the server at work. I'm guessing I am doing something wrong with the data I'm returning when it sends EHLO but can anyone point me in the correct direction?

I was using telnet to test with, it seems that I have made it work only with telnet.In telnet each time I type a key the data is passed to the server, however with a real SMTP server it just sends each entire command in one go. So after altering my server a little I can now get it to respond with the 250-OK which I thought it already was doing.. but it still doesnt work. The remote server just sends EHLO and then thats it nothing more.Something interesting, at the moment I am ending all of my responses to the remote server with VbLf - if I change this to VbCrLf (which is what I believe it is meant to be according to the SMTP standard) then I get an infinite amount of empty strings sent to my program (or perhaps some other character that just shows as an empty string in intellisense when stepping through the code). Changing it back to just vbLf or ControlChars.Lf makes it go back to just sending EHLO and then nothing else..

View 4 Replies

Create "a Windows Form Game Called Yahtzis Which Uses Five Dice And Three Throws To Create A Score"?

Oct 18, 2010

i am suppose to create "a windows form game called Yahtzis which uses five dice and three throws to create a score" .

The problem is that i don't even know how to start it can anyone shed some light.

View 2 Replies

Create A Basic Mmo Game For Fun In .net?

May 14, 2012

I'm trying to create a basic mmo game for fun in vb.net. I have done it before with a game api but I'm recently reformat my computer and can no longer find it. I'm trying to dynamically create a new picture box that will be my character or NPC and I can get the image to show up on the screen correctly but I'm not able to use "myGuy" anywhere else in the project. So the character basically sits there and does nothing. I'm wondering if there is away to call "myGuy" (myGuy.Top = 40) in another sub? If you know of a good game api that is not a hog and not expensive let me know.

[Code]...

View 3 Replies

Create A Football Game In .NET?

Mar 24, 2012

I spend my spare time trying to create a football game in VB.NET. I have a save game file saved using serialization which I am using to test code. This file contains all the elements of gameplay (stored plays, games, options, etc...) I create this file in the software itself using the code I created; I put a lot of work into this save game file and I would like to continue using it.

However, I discovered I need to add a couple member variables to the class from which the saved object is derived (object is called m_League, class is ClLeague). Any time I've altered ClLeague my old saved games don't load anymore because the new m_League object does not match the old m_League object. I have to start a new game and create m_League from scratch which wastes a lot of time.

This must pop up in with the professionals out there who write patches for software and need the users old saved files to continue working. Is there any trick to this situation or do I have to just accept it?

View 3 Replies

Create A Quiz Game Application In .NET?

Sep 23, 2010

I am building a quiz application in .net just like on flash mini games, is this possible in .net? and what is the easiest way to create this? make moving objects, cartoon interface and etc. also, it is supposed to be a standalone application.

View 1 Replies

Create A Scoring System Game?

Aug 6, 2009

how can i create a scoring for system for my Maths quiz game made using VB.My quiz game can generate automatic numbers / questions and shows a message box whenever the user gets the answer right or wrong. i.e.when the user presses the check answer button, a message appears stating that he/she go it right or wrong. Then the user can press the next question button to get a new question.

View 8 Replies

How To Create Save Game Function

Oct 17, 2011

I am trying to create a game using vb but don't know how to create a "save game" function. I was told something about saving to files but don't really understand it.

View 2 Replies

Create A DLL Injector For Using It In A Game But It Didn't Work

Jul 18, 2011

I've tried to create a DLL injector for using it in a game but it didn't work for me, here's the code:

Imports System.IO
Imports Microsoft.Win32
Public Class Form1

[code]....

View 1 Replies

Create A Multiplayer Game - Send Some Text

Jan 9, 2011

I'm trying to create a multiplayer game, but i don't know how to communicate between my programs, what I'm trying to send is some text, which my program can understand it. I searched for it and for making a chat application but found no working results...

View 10 Replies

Create A Sports Scoreboard That Has A Game Clock?

Feb 9, 2009

I am trying to create a sports scoreboard that has a game clock. (I am very much a noob at programming)I seem to have a problem with the game clock, I know I am sorry, another timer thread. (Trust me I read through about 50 of the 77 posts with 'countdown' in them)I have two solutions so far, unfortunately neither one are exactly what I am looking for. I want to have a scoreboard that counts down from a set time in the format of 00:00 and allows me to decrease and increase the time if it differs from the official clock.

[Code]...

View 6 Replies

Create A Tic-tac-toe Game But None Of The Tic-tac-toe Tutorials Use 2 Dimensional Arrays

Mar 14, 2010

I am new to VB, trying to create a tic-tac-toe game but none of the tic-tac-toe tutorials use 2 dimensional arrays. Since tic-tac toe is 3x3 I created 9 buttons and want either an X or an O to appear depending on where the user clicks. I want one set of instructions to handle the multiple buttons. I was told to use Case statements.

This is what I have so far. Not sure how much is right but hopefully it gives you an idea of what I am looking for.

[Code]...

View 20 Replies

Create A Video Poker Card Game Using VB?

Jun 10, 2010

I am looking to create a video poker card game using visual basic.I have limited knowledge of visual basic 8 but was very curious about visual basic 10.

View 4 Replies

Create Computer Guessing Game For College?

Mar 28, 2012

i am trying to create computer guessing game for my college. computer guess my number like i have random number in my head for example 45 then the first computer guess is 50 then i tell the computer that is too high then the next guess is 25 then i click low then it goes on i cant figure out how to make it run it like when i click on high it supose to get the number low then when i click on low then it suspose to go low but it doesnt.

Public Class frmMain
Dim IntLowestNum As Integer = 1
Dim intHighestNum As Integer = 100
Dim Count As Integer = 0

[code]....

View 2 Replies

How To Create Simple Points System For Game

Mar 30, 2012

I am creating a points system for a game, this is the code I have but it isn't working as I want it to.
Dim intScore As Integer = 10
Dim intNumOfGames As Integer = 0
intNumOfGames += 1
intScore = intScore - 2
The user will start will a score of 10, but everytime they click the button the user should lose 2 points off the score. But my code above that doesn't happen, when the user clicks the button it only happens once leaving the user with 8 points throughout the game.

View 1 Replies

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

VS 2008 Create Projectile For Cannon Game?

Apr 8, 2011

If I have a starting X/Y position and enter an angle and power, I want to determine the X/Y positions for a cannon to follow. I have seen many sites on this but no straight code to use. Anyone have an example of this? I just want the X/Y posiitons in small steps - not far apart from each other.

View 6 Replies

Borrow Code And Then Manipulate It To Create Tetris Game?

Nov 8, 2011

I have to create a game for programming class in school, my teacher said we were allowed to borrow code and then manipulate it our selves to create our own individual game. I chose Tetris so i am wondering if anybody has any code for this game from vb 2008.

View 2 Replies







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