Contact Game Server RCon Console
Jun 5, 2011
im wondering how I could contact my Call of Duty: Black Ops game server's console, through RCon, through an application I have created in VB.net.All I want to beable to do is have the ingame console in a textbox or something, it doesnt even have to be live, just so I can execute commands remotely.
View 5 Replies
ADVERTISEMENT
Dec 20, 2010
im trying to send RCon commands to a Call of duty: Black Ops game server.I read a thread from a few years back about sending RCon commands to a CoD 4 server, and all look promising until the application kept crashing when I pressed connect.
[code]....
all I want is to be able to send a few commands to the server through an application.
View 18 Replies
Jul 1, 2011
I know this will have been asked a zillions time before, but I have searched and searched and still can't find an answer,At the moment I have a sort-of-ok php page that uploads picture to the server, emails it then deletes it - same as everyone else.
But, I have been thinking (ALWAYS dangerous) I want to change this so that I can have a simple aspx with smpt varification sent email with an attachment. "Without" up-loading to the server - is this possible and "VERY" simple, as I am just starting out with this stuff.
Has any got a link to a page that you may know of that will give a complete run down of something like this. Unlike w3schools which just give snippets
View 4 Replies
Apr 3, 2012
im trying to use the combobox to update/edit/view the saved data (in contact form) from sql server. my Load_Combobox (in contact form):
[Code]...
View 1 Replies
Dec 15, 2011
I have this progamm and i want to add points when a letter is found 10 points PLZ HELP ME! i also want to make it for two players
Module Module1
Public zoes As Byte
Sub Main ()
[CODE]...
View 2 Replies
Jun 17, 2011
Is there a way to make a health variable that, when hit, you lose health?
View 3 Replies
Jan 17, 2010
I'm making a console game that shows some data:
#: Item Name Item Slot Cost Item Price
in that order. The thing I want to do is to make it come out in nice even columns...but I can't seem to make it do that. It comes it out in nasty uneven rows that don't look attractive...
Basically, here's what it looks like now:
1. Sword Slots: 2 Price: $40
2. W. Stick Slots: 4 Price: $1
I want to get each column to line up nicely with the other (since I control the size name).
View 9 Replies
May 23, 2009
im trying to make rcon tool for cod waw, and i cant find any example code that actually works if anyone knows source any similar source code that would connect to remote console and send commands to it, i would be very happy if someone knows how to do it
View 7 Replies
Oct 3, 2010
I have project to do it.Project name RCON.I created form, where is showing RCON of status (offline/online logged), log, etc.How do i make it RCON work with that program?I have rcon.exe and with that running must be:notepad.exe > saving as startrcon.bat.[code]
View 3 Replies
Feb 19, 2010
How do I connect to the rcon and handle the stuff?
View 5 Replies
Jun 21, 2010
its been a long time but sincerely, am happy to be back. now i've got a problem on my mind and that is; am trying to develop a database application but i want it to be a console application. the major issue is that i dont know how to go about connecting vb.net console application to sql server or if its possible at all, but am sure its possible in this world of ours...
View 2 Replies
Feb 28, 2012
I am trying to get get the path of a directory that I have a template file in. ie in asp.net I use
Dim path as string = Server.MapPath("~/Reports/")) and then once I have the Reports dir I can do this
Using r As StreamReader = New StreamReader(path & "Template.htm")
Dim line As String
[code]...
That works great in asp.net but now I need to do the same thing in a console app. I have tried the function path = GetFullPath("~/Reports/") and instead of getting the absolute path to the Reports dir it returns /bin/debug/reports which is wrong. The file Template.htm is not in that directory.
View 3 Replies
Oct 16, 2011
I am working on something to work with dedicated server for a game. I can not figure out how to run a console from this game in it. This is a torque game called Blockland. The thing I have to put into a .bat file is this [code]Whatever I try it will not load the console for it.
View 1 Replies
Nov 2, 2009
Im working on a client/server application and trying to convert this console appliaction to windows form appliaction but im not sure how, I tried using a timmer to host all the code but it just caved and went not responding could anyone tell me how i should be properly converting it?[code]
View 1 Replies
Feb 13, 2010
Im trying to swap this basic console server to form
[Code]...
but the form application just doesnt load while debugging,
View 3 Replies
Nov 23, 2011
I would like to make a multi-socket TCP server (to accept multiple clients at the same time).I'm working with Visual Studio 2005 Express, maybe that's why files on CodeBank don't work..I found on the web an example about MultiThreaded Server Socket programming, but this is done for "Console application" in this way:
[Code]...
View 7 Replies
Nov 10, 2009
I'm developing an application that detects Source-based games running on the LAN. Following up on the specifications provided by Valve, I have it narrowed down to exactly what I want: making a UDP connection on port 27015, sending an A2S_INFO query (0xFFFFFFFF followed by "TSource Engine Query") and parsing the binary reply.
This is the code I'm working with:
Dim sIP As String = "192.168.0.154"
Dim nPort As Integer = 27015
Dim connectionMessage As String = "ÿÿÿÿTSource Engine Query" & Chr(0)
[code]....
View 3 Replies
Mar 11, 2012
im making a game launcher for a runescape private server. and well when i run the .jar file plain without the launcher it works, but when i run with the launcher, it give me an error on the game.Here is all the
Public Class Form1
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
System.Diagnostics.Process.Start("http://www.*****.com")[code].....
View 1 Replies
Apr 10, 2009
Has anyone ever done this? Is there a tutorial somewhere?
View 1 Replies
Jun 25, 2010
I've got a game I would like to build, it will require a central game server where peoples data (game data :-)) will be sent to and shared with other players - how is the done. Is it remoting? TCP? something else - I need to study up on it but want to make sure I'm learning the right thing.
View 3 Replies
Aug 18, 2009
How would i check a game server is running?
View 2 Replies
Apr 12, 2009
if I could make a tcp server and client so he can restart a game server from a LAN connection. The game server is a test server for online playing games it allows users to test there created maps but after so many errors the program is told to close out the running server cause of errors. The problems are fixed just by restarting the server. I have the client working as far as i know (cant do a full test without a server). During the creation of the TCP client built within the server (to receive commands and send reply) ive used
[Code]...
View 1 Replies
Aug 10, 2011
I am trying to create a console application that does the following:
1) read a text file
2) Save the content over to a SQL Server database
3) Use command line arguments to allow user to specify any delimited file
View 6 Replies
Mar 17, 2009
I whould like to find the IP address of a game server that sends UDP packets to my PC. Of this server I know the fixed Port number, but not the IP address
I can read the netstat -anp udp data and store them in a text file... but this command don't displais the IP Address and the Port number of the external servers, only lots of asterisks
the question is: how to retrieve this IP address?
View 2 Replies
Jul 1, 2010
im makign a game that reads text files off of an ftp server. everything is working great. except for the fact that i cant read more then the first line of the players text file. how would i use substring to, for example, look for 'inventory' and get all the info under 'inventory' and above the next title?
View 4 Replies
Apr 18, 2009
I have a working game server browser project in VB.NET 2008 and I'm trying to fix the CS 1.6 and CS-Source query protocols. Where can I go to learn how to query a game server? The code worked in 2004 and now I want to update it [Code]
View 2 Replies
Jun 1, 2011
I was thinking of adding a simple bandwidth monitor to a console application and I was wondering if it would be possible to keep a line in the console window visible at all times. I could set something up manually to pass new console output into a method that would get the contents of the console, clear the console, add the bandwidth data on the first row, then rewrite each line of previous information back to the console, etc.. but that seems like a really hacky way to go about it, and I'd be limited to the amount of rows visible at once in the console window (no scrolling).
STATS: Downloaded: 2599b, Uploaded: 754b <- this always stays at the top
constantly changing text
constantly changing text
constantly changing text
[code]....
View 3 Replies
Jan 23, 2009
Is there a way for my program to send Linux Console Commands to a remote Linux server?
View 4 Replies
Jun 21, 2012
I'm converting an application from using WebDav to EWS. I'm now in the process on converting the code the fetch contact.I notice that the property from WebDav were found by using
urn:schemas:contacts:facsimiletelephonenumber
urn:schemas:contacts:fileas
...
[code].....
View 1 Replies
Jan 15, 2012
How can I simply format the contact number in vb.net The format that I want is (123)456-78-95?
View 4 Replies