Game Utility Development

Ok, I have done alot of fruitless searching and need someone to point me in the right direction. First off, I do not want to develop a game. I want to develop third party utility programs to make playing online games "easier". And, I have no idea where to begin.
I have taken intro courses in VB, C, C++, Java, and am currently taking a data structures course using the Java language. I feel fairly confident with basic syntax and library use to an extent. But, for the life of me, I have no clue about how to go about getting one of my programs to talk to another program, especially one I don't have the source code for.
I would be extremely happy if I could, hmmm... make one of my characters take a single step or park my lumberjack next to a tree and have him chop wood, etc.
Ok, I hope this is enough to give you an idea at what I am looking to do and would appreciate any advice you might have, espcially stuff like what subject material books I should be reading, web sites, what libraries or classes I should be studying, etc.
And my apologies for the displayed frustration, I am just loosing a little faith in our school system, since I went back to school over two years ago part time and have not been able to start a project yet that I went to school in the first place for.

Hmm, hmm... Basicaly, you want to create a program that will help you to develop "robots" for online RPGs. I.e. a program (ROBOT) that will interact with a running instance of another one (RPG). Problem is that RPG was certainly not designed to be controlled externally. So don't worry about your programming knowledge. What you need here is serious hacking knowledge :-)
Some hints :
1) use your OS APIs to periodically grab screenshots of the RPG so your ROBOT can "view" what's happening.
2) use your OS APIs to simulate fake user actions on RPG (mouse move and key strokes) so your ROBOT can "control" the RPG.
3) create a local network proxy between the RPG and its server, and try to analyse the data flow. It is probably crypted and secured, but you may try to break the security. If you suceed, you will then have total control on RPG !
G'd luck

Similar Messages

  • TS1424 Game and developer wrong on email invoice

    I recently purchased an app upgrade and also downloaded a few free apps on the same day.  I got the billing email and it was for the right amount but the game was wrong.  It said I had been billed for one of the free games which had a different developer. This does not really affect me as it was the same amount going out of my account but not really fair on the developer.   I tried to report it as a problem but the email link does not work.

    Norman, you've been so helpful - thanks.  I hope that Skype takes into account Chat and Vision's dishonest conduct in this matter (and other matters; it is quite clear that I am one of many people having been dealt with dishonestly by them) when considering their relationship with this company.
    When there are so many reputable companies providing excellent customer service who would jump at the chance to be Skype's preferred sales partner, it seems the appropriate action would be for Chat and Vision to be disendorsed and any link with them removed from Skype's websites.
    Unfortunately this was paid through a Skrill account purchase which I think means that I'm not entitled to have this charge reversed, but I will certainly try.
    In the meantime, for the benefit of others considering purchasing anything from Chat and Vision, here are a few updates of the latest outrageous correspondence from these liars:
    on 3 February from a new representative named Debbie:
    My sincere apologies for any inconvenience this may have caused.
    We have received an update from the relevant department and they have confirmed that universal adapter has been included to the parcel.
    We hope that this helps clear up any queries in your mind, but please let us know if further clarification is required.
    This is a clear case of fraud and I will also consider options for taking the matter further directly against Chat and Vision.

  • Word guessing game Flash Develop as3

    I am coding a word guessing game for primary level age 5/6. They have to guess a five letter word by looking at the image. I want to provide a clue button, which when clicked will give the user one correct letter. There are five words contained in an array. I want to give one letter as a clue. Here is my current code (not completed). If anyone has any ideas, they would be greatly appreciated as havn't done this before!!
                        public function clue(event:MouseEvent):void {
                                  for (var  i : uint = 0; i < 5; i++)
                                  if (this["text" + i].text != currentWord.charAt(i))
                                                                //changing colour to red
                                                                trace ("checking if equal");
                                                                this ["button" + i] = setImage("../images/red2.png", 405 + (40 * i), 600);
                                                                this["button" + i].visible = true;
                                                                //need to give the user one correct letter
                                                                ["Text"+i] == currentWord.charAt(i)

    Hi Ned,
         Mt current Word is the current word in my Array which could be any out of 5. The current letter was i was trying to get a letter out of the current Word in the array and provide one correct letter as a clue to the user. The text+i is the letter/word at position i in the array. I basically took my method for search for char and tried to change it for searching for letters instead of words but not really sure what i am doing. Here is search for char code i was basing the other one on. This method checks the letters inputed into the 5 textfields against the current word in the array and changes coloured cirlces underneath each letter to yellow if correct and red if incorrect.
    public function searchForChar(evt:MouseEvent):void {
                                  trace ("coming in here");
                                  //make sure all text fields have been entered
                                  for (var  i : uint = 0; i < 5; i++)
                                            trace ("looping");
                                            //if letter is right
                                            if (this["text" + i].text == currentWord.charAt(i))
                                                      //changing colour to yellow
                                                      trace ("checking if equal");
                                                      this ["button" + i] = setImage("../images/yellow2.png", 405 + (40 * i), 600);
                                                      this["button"+i].visible = true;
                                                      else
                                                                if (this["text" + i].text != currentWord.charAt(i))
                                                                //changing colour to red
                                                                trace ("checking if equal");
                                                                this ["button" + i] = setImage("../images/red2.png", 405 + (40 * i), 600);
                                                                this["button" + i].visible = true;

  • Best way to develop flash games for desktop + mobile, today

    Hi
    It has been a nice run of about 7 or 8 years now that we have developed Flash browser based games for the web exclusively. Of course with the ubiquity of mobile devices, things have changed. Clients are starting to demand, almost assume, that games will work in the browser - on the desktop and on their tablets.
    Putting aside the whole discussion of using an HTML5/JS solution instead, we're sticking with Flash for the next project and need to figure out the best way to get it to run on the desktop browser and on the iPad, while maximizing code re-use.
    Given the current state of technologies today, what is the best path? This game will be a 2D side-scroller type game, and development will be done mainly with bitmap graphics (as opposed to vector) and spritesheets :
    Option 1: Develop the game targeting the 'standard' flash player for web, then port to an iOS AIR 3.2 app, doing appropriate optimizations.
    Option 2: Use Starling/Stage3D for desktop, and then port to an iPad app. Just wondering if starling is ready for primetime making production quality games for mobile + desktop. Does Stage3D still work well enough in software mode on older machines?
    Option 3: The new feature in CS6 that lets us publish to HTML5. Is this even close to mature enough to publish a full game? The benefit of this solution is that it could run in the browser on the iPad instead of being a separate app.
    Thianks so much for any guidance.. I'm also wondering about pitfalls, and optimization techniques involved in any of these.
    -rich

    Well I don't know if I can give you 'guidance' without knowing the details of you and your project and all that, but here's my personal opinions:
    Option 1: I would go for developing for iOS and Android first and then "in-brower" over the other way around. But I would actually develop for all targets at once so that I know I am not using a solution that breaks another platform/formactor that has to be redone later. iOS has allot more guidelines and things you have to consider than the the 'browser' where there is no approval proccess. So if you can get it approved on iOS then it should be able to go to Android and the browser without so much trouble, but the other way around you could really create allot of stuff that needs to be redone -- Apple is very strict on making sure that the users are not stuck with bad UI or a bad user experience(as is defined by their user interface guidelines). I have some projects that were made for in-browser flash first, and it has been hell porting them over to iOS/Android. The whole way they interact with the user has to be rethought for mobile/small screens/touch screens. If I had made them originally with mobile in mind, then it may not have been as much of an ordeal.
    Option 2: I am not familiar with 'starling' or Stage3D, so I can't be helpful here.
    Option 3: I was under the impression that the 'publish to HTML5' feature was just for animations, not ActionScript -- Maybe someone else can answer this for sure. Even if it could do ActionScript, there still may be no way to access some of the stuff an app could (saving levels/data/whatever to the device hard-drive, etc).
    Anyhow, curious why you would want to avoid vectors? With so many screen resolutions, and the potential that they may get higher in the future (like they did with retina display on iOS), vector would make your project better suited to work on future devices without having to redo things and add higher resolution bitmaps later. If you have something that absolutely demands insane perfomance, then the bitmap/spritesheet stuff might be needed I guess... (or if it is some '8-bit retro' type of thing)

  • Game development strategies

    Does anyone have any good strategies or articles on how games are developed? I am very weak in the area of game development with Java. I have only got into a simple area of Java2D but I need more material. So, if you have any great articles or thoughts on Java Game Development and the strategies that you use please feel free to share them...
    Thanks in adavance...

    Have a look at the javagaming forums at:
    http://www.javagaming.org/cgi-bin/JGNetForums/YaBB.cgi

  • I have a problem in the game Contract Killer 2 (Glu Games Inc.)

    I have a problem in the game Contract Killer 2 (Glu Games Inc.)
    This application does not function as expected
    I bought a package 4.99$
    My account was debited. But the game does not give me credit.
    Receipt number: ****.
    ID : MH*****J8X.
    Please help my credit or help refund for me.  (2)
    <Edited By Host>

    Most of the people on these forums, including myself, are fellow users - you're not talking to iTunes Support here.
    If you've tried contacting the game's developer and not had a response from them then you can contact iTunes Support via this link and ask them for help : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Project management utility

    Hello!
    Does exist the way to unload MII projects automatically? I have dozens projects and need to unload it to external or network drive periodically. Now I do it manualy for each project via Project management export function.
    Thanks.
    Edited by: A.Andreev on Feb 20, 2011 12:17 PM

    Hi,
    You can use the SAP MII backuper utility developed by Abesh available in the following link :
    /people/abesh.bhattacharjee/blog/2010/10/29/release-sap-mii-backuper-v-10
    Thanks,
    Dipankar

  • How To Get Newest Adobe Flash Player So You Can Play Pc Game

    How Do I Get The Newest Flash Player on my IBbook G4 To PLay Woozworld If The Newest Flash Player isn't Compatible With my mac Ibook G4...Please Some one help

    The iBook G4 800 Mhz model is limited to Mac OS X 10.4.11.
    The iBook G4 1 Ghz and higher models can run up to Mac OS X 10.5.8.
    Adobe Flash for PowerPC can be upgraded based on this thread:
    Flash 11.5 hack for PowerPC
    On both operating systems.  However, if the game is developed for a newer version of Flash, or uses ActiveX and requires more than Windows 2000, you can't use it on an iBook G4.  Please note, games in general from the PC world that require any special animation or audio file formats generally are not playable on PowerPC Macs, unless they were ported to them.    You may seriously want to consider getting a used or refurbished Intel Mac, if playing Windows games is important to you*:
    http://www.macmaps.com/usedrefurbished.html
    Upgrading to either from Mac OS X 10.1.x (based on your signature), is not easy, and requires an Archive and Install minimum as described here:
    kmosx: Installation options and their meaning
    Upgrading to Intel Macs entails this process:
    https://discussions.apple.com/docs/DOC-2295
    * Links to my pages may give me compensation

  • I have made an in app purchase then the game has frozen but still taken my money

    For the 3rd time now i have made an in app purchase and then the app has frozen but still taken my money.
    it is getting ridiculous and i want something to be done about this

    If you haven't received the item then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    For the game freezing, have you tried closing it via the phone's taskbar, doing a soft-reset of your phone, and if they don't fix it reported it to the game's developer ?

  • Where I get info about a very good game rejected in Itunes

    Dear Iphone people,
    I'm a developer and I need some information that is really unclear , I want to publish this open letter because it is correct that people know that , I don't want to disclose the title of the game because it is polite I want to just tell you that I'm submitting the applciation and this is the followup number:
    Follow-up: 67693981
    I have submitted the game 3 times and for 3 times you answered on every single problem that the game have , I have fixed all the issue based on your suggestion for 3 times , i spent hours and days on the game to develop it , cost us money without people enjoy or even decide by herself if the game is good or not. The problem is not because the game was refused is because you didn't give any suggestion why you refuse this left me missing information how can i help my game to be published.
    I believe that you don't give answers , you don't provide E-mail to support developers , you don't help them because my expectaction of the money return is correct and in any case you should advise us immediately that the game will be rejected even after 3 times you suggest what to fix.
    I know you don't care too much about developer but i care about Iphone and Iphone user and left them to decide, I will not discole any information of the kind of game because i think this is not correct on my side why you refuse but i think it is correct that you should help me to better understand what is wrong in the applciation and correct the issue to be published. So if you believe that this is corredct to have the possibilities to adeguate my game to Itunes standard.

    This is a user to user forum. No one here can help you with why your app was rejected.

  • Why are there so few games for Mac OS X?

    Yes, I do know the answer, because everybody writes software for Windows.
    But aren't we at a point where times are changing? Many people exchange their PC's for a Mac nowadays, and the number of Linux (which is basically the same under the hood) is rapidly growing too. Those people like to play games too, don't they?
    Does anyone see some light in the distance for companies porting their games to the Mac too?

    Agreed. You have to remember everything is drive by economics in our capitalistic society so games are written for the OS that has largest market penetration and most likely to return huge profit and currently that is Windows. That is also why one of the most famous game programmers, John Carmack, just recently rewrote some of his games for iPhone/ipod touch and made quite a nice profit from his own account.
    "Carmack said that there was a lot of "hand wringing" initially over the idea of spending the company's own money (there was no publisher to help fund development) on making games for the iPhone. Doom Resurrection, when it hit, was probably the most expensive game to develop for the iPhone, Carmack says.
    "It did really well for us," he said. "It was Wolfenstein Classic that made the argument for iPhone development for me. We made quite a bit of money off of that."
    http://kotaku.com/5397350/carmack-on-iphone-fallout-quake-live-and-elves-and-orc s
    That is not to say that Mac's can't be used as game machines since Apple actually has a webpage dedicated exactly to this you can check out:
    http://www.apple.com/games/hardware/
    So in a nutshell to answer the OP question the reason you see fewer games on mac's is because it's not profitable. As you can see if there is no technical limitations writing games like Doom3 for iphone there is none for the mac.
    I know I've personally not bought a macosx game since I also have a pc and use that for games so I'm not helping the business case for more games for mac. Vote with your pocket and go out and buy more mac only games if you want to see more for the mac.

  • 5MP Playbook Camera Blackscreen - Errors - Hardware or NDK Game Caused Glitch?

    Hi. I own a 64 GB Playbook. Last week my outer 5MP camera stopped working. When I accessed the camera application the screen was black.The camera record button and camera/video buttons appear. 
    The black screen of doom
    Picture Cam
    If I pressed the button to snap a picture, the button would become disabled and hang for about 20 seconds. No image is visible from this camera. The screen is completely black.
    Video Cam
    The video screen on the 5MP cam also is black, and I can only access the context menu (top), and record button, and cam/video toggle buttons.
    I cannot view anything from the camera.
    Things that do work: able to switch view to front facing 3MP cam. The image shows. I can take pic, record vid with front facing cam. I am able to use context menu to go into my videos or pictures folders.
    Device Specs:
    OS Version: 1.0.7.3312 
    Free Storage: 26 GB
    Videos: 407
    Pictures: 879
    The errors I am getting.
    [screen captures, and picture attached] 
    "Camera Error" - There was an error creating your picture. Please try again.
    "Camera Error" - The camera is in use, please close any other instances of the camera and try again. 
    There were no other applications actively running on the device when I got the second error.
    I thought a security wipe would somehow fix this issue. But it has not.
    When This Started
    I first noticed my 5MP camera was not working after I finished playing "Spider-Man: Total Mayhem HD". I think I spent an entire hour playing the game. I've owned this Playbook since it launched, and have not had any problems with the camera or hardware. There is not physical damage to the 5mp camera.
    During gameplay, there were elements of the ui that took "screenshots" or "screen captures" of fight sequences. I have a feeling this may have something to do with why my camera is not working now. My understanding is that this game is developed using NDK. I fear that a bug in the game, and how it handles these screen captures may have affected my Playbook's OS and my camera.
    Security wipe, refresh did not fix the issue. Still getting the same errors.
    Please help me! I own a 64GB Playbook without a working camera 
    This is really bugging me out. : (
    Solved!
    Go to Solution.
    Attachments:
    pbcamissuesc.jpg ‏25 KB
    pbcamissuesc2.jpg ‏35 KB
    pbcamissue-error.jpg ‏120 KB
    pbcamissue.jpg ‏82 KB

    First I would like you to do a Back Up of your PlayBook using your computer and BlackBerry Desktop Software.
    This can be downloaded for free from http://us.blackberry.com/apps-software/desktop/
    After the Back Up is complete I need you to unplug your PlayBook and then push and hold down the Power Button until the unit Force Powers Off.
    Now, while Desktop Software is still open on your computer and the PlayBook Powered Off, Connect the PlayBook to your computer.
    You should see and error screen from Desktop Software pop up that has the options to Retry, Update, or Cancel.
    QUICKLY choose the Update option.
    This will erase all the information off of your PlayBook and Re-Write the Software back onto it. Once it's complete your PlayBook will need to go back through the setup wizard, and you can then perform a restore using Desktop Software to return your information. The only thing that won't come back after the restore are the apps that you downloaded from App World but they can be easily Re-Installed using the My World feature in App World.
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Downloaded games

    i would think, you would get more game downloads and game play if we can play the games with and without wifi. Not everyone is able to continue long continuous play due to their data plans. And not every where has free wifi. Please please make ALL GAMES WIFI AND WIFI FREE to play.

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple.
    It's up to a game's developer as to whether it needs to be online in order to play them. The game's description page should list its requirements, including whether you need to be online

  • Please Review This Game

    Could anyone please check out this game I developed for a Software Design assignment. We have to make an evaluation so if I could get some feedback, good/bad/constructive... it would be helpful.
    The setup package is about 6.5Mb.
    http://www.angelfire.com/wizard2/neozenith/CypherSetup.exe
    The game is supposed to recreate Master Mind. The game itself has some graphics problem because the GIF's are too large to render and I am using a Timer to update them. The HTML renderer for the Help Screen is also rather sluggish. Any help or recommended improvements can be directed to
    [email protected]
    Please Note that the Java runtime environment 1.4.2_04 is required to run. I haven't tried bacwards compatibility testing. I know this post is long but thanks for bearing with me.
    Cheers.

    There may be a better way to do this now, but here's something I whipped up way back when to
    circumvent a bug in the old 1.1.5 JVM included with Netscape. 4x.
    It does in fact get an image form a jar.
    import java.awt.*;
    import java.io.InputStream;
    public class ImageFromJar
    public ImageFromJar()
                   // returns an Image retrieved from a jar file
    public Image getImageFromJar(String fileName)
       if( fileName == null )
           return null;
       Image image = null;
       byte[] tn = null;
       Toolkit toolkit = Toolkit.getDefaultToolkit();
       InputStream in = getClass().getResourceAsStream(fileName);
       try
          int length = in.available();
          tn = new byte[length];
          in.read(tn);
          image = toolkit.createImage(tn);
       catch(Exception exc)
          System.out.println( exc +" getting resource " +fileName );
          return null;
       return image;
    } Have fun ;)
    (T)

  • HT4009 In app purchases, now the game has been changed

         I made several in app purchases over the last 6 weeks to level up a few characters on a Marvel game.  Now, the developers have changed the specs of the characters to "fun balance" the game.  This has essentially ruined my characters, not to mention the time, effort and money that I put into the game.  How can the developers be allowed to change a fundamental piece of the game like that when it is a purchasable variable?  Do I have any recourse here?  

    If you haven't received the item then try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    Or you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    For the game freezing, have you tried closing it via the phone's taskbar, doing a soft-reset of your phone, and if they don't fix it reported it to the game's developer ?

Maybe you are looking for

  • Trying to Update Acrobat 8 on Off-Line Machine

    I have a computer with Acrobat 8 Pro installed, this computer does not have an internet connection and due to the environment can NEVER be connected to the internet.  I am trying to install the updates for this product, which I have downloaded and do

  • Photo stream different folders??

    Ok, so I have an iPhone 5 and I am trying to get rid of some pictures (this is a whole other issue) but I have different amounts of pictures stored?? This is what I have: PC: Photostream foder (402 pics) iPhone 5: Albums> Photo Stream (275 pics) iPho

  • Links error in "flex in a week video training"

    can someone explain me why all links in the page http://www.adobe.com/devnet/flex/videotraining.html which don't have an icone before don't work? for exemple on my computer, Creating a user interface, Adding data to your application, Handling a user

  • White lines crossing through my illustrations

    Hey there, Oftenwhen using the save for web feature, a series of white horizontal lines will appear, intersecting my artwork. Is this a common problem? What would you reccomend!? Thankyou

  • Auto-block expired batch

    Hi SAP Masters, Is there any way to block those expired batch automatically from the MM point of view? Any standard t-code can do so or any ABAP enhancement is required? Thank you in advance. Regards, Edwin