Need help with (Runescape Classic Graphiced) online game

I am wondering if someone could link the program Jagex used to make Runescape Classic. Or if you have to, a land generator and character, graphics, object program. If you could also explain how to work it into HTML. That would be good too. I want to put this game (will be massively Multiplayer) on my website. Please help soon.
P.S. Explain how to make it multiplayer.

I am wondering if someone could link the program Jagex used to make Runescape Classic.Jagex tends to use proprietary in-house tools, so the odds are that the modeller used to make RS Classic isn't available on the web. To be honest, it wouldn't surprise me to learn that the Gowers hand-coded the early models in a hex editor.
If you're looking for 3D modelling tools which are used by games developers, you could do worse than Blender or Milkshape3D. However, given that you don't seem to know what an applet is or how to do networking, I think you're biting off more than you can fit in your mouth, let alone chew. Start with learning the basics and think about doing a MMORPG in a year or two.

Similar Messages

  • I need help with shooting in my flash game for University

    Hi there
    Ive tried to make my tank in my game shoot, all the code that is there works but when i push space to shoot which is my shooting key it does not shoot I really need help with this and I would appriciate anyone that could help
    listed below should be the correct code
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    listed below is my entire code
    import flash.display.MovieClip;
        //declare varibles to create mines
    //how much time before allowed to shoot again
    var cTime:int = 0;
    //the time it has to reach in order to be allowed to shoot (in frames)
    var cLimit:int = 12;
    //whether or not the user is allowed to shoot
    var shootAllow:Boolean = true;
    var minesInGame:uint;
    var mineMaker:Timer;
    var cursor:MovieClip;
    var index:int=0;
    var tankMine_mc:MovieClip;
    var antiTankmine_mc:MovieClip;
    var maxHP:int = 100;
    var currentHP:int = maxHP;
    var percentHP:Number = currentHP / maxHP;
    function initialiseMine():void
        minesInGame = 15;
        //create a timer fires every second
        mineMaker = new Timer(6000, minesInGame);
        //tell timer to listen for Timer event
        mineMaker.addEventListener(TimerEvent.TIMER, createMine);
        //start the timer
        mineMaker.start();
    function createMine(event:TimerEvent):void
    //var tankMine_mc:MovieClip;
    //create a new instance of tankMine
    tankMine_mc = new Mine();
    //set the x and y axis
    tankMine_mc.y = 513;
    tankMine_mc.x = 1080;
    // adds mines to stage
    addChild(tankMine_mc);
    tankMine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal(evt:Event):void{
        evt.target.x -= Math.random()*5;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseMine();
        //declare varibles to create mines
    var atmInGame:uint;
    var atmMaker:Timer;
    function initialiseAtm():void
        atmInGame = 15;
        //create a timer fires every second
        atmMaker = new Timer(8000, minesInGame);
        //tell timer to listen for Timer event
        atmMaker.addEventListener(TimerEvent.TIMER, createAtm);
        //start the timer
        atmMaker.start();
    function createAtm(event:TimerEvent):void
    //var antiTankmine_mc
    //create a new instance of tankMine
    antiTankmine_mc = new Atm();
    //set the x and y axis
    antiTankmine_mc.y = 473;
    antiTankmine_mc.x = 1080;
    // adds mines to stage
    addChild(antiTankmine_mc);
    antiTankmine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal_2(evt:Event):void{
        evt.target.x -= Math.random()*10;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseAtm();
    function moveForward():void{
        bg_mc.x -=10;
    function moveBackward():void{
        bg_mc.x +=10;
    var tank_mc:Tank;
    // create a new Tank and put it into the variable
    // tank_mc
    tank_mc= new Tank;
    // set the location ( x and y) of tank_mc
    tank_mc.x=0;
    tank_mc.y=375;
    // show the tank_mc on the stage.
    addChild(tank_mc);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onMovementKeys);
    //creates the movement
    function onMovementKeys(evt:KeyboardEvent):void
        //makes the tank move by 10 pixels right
        if (evt.keyCode==Keyboard.D)
        tank_mc.x+=5;
    //makes the tank move by 10 pixels left
    if (evt.keyCode==Keyboard.A)
    tank_mc.x-=5
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    if (tank_mc.hitTestObject(antiTankmine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(antiTankmine_mc);
    if (tank_mc.hitTestObject(tankMine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(tankMine_mc);
        //var maxHP:int = 100;
    //var currentHP:int = maxHP;
    //var percentHP:Number = currentHP / maxHP;
        //Incrementing the cTime
    //checking if cTime has reached the limit yet
    if(cTime < cLimit){
        cTime ++;
    } else {
        //if it has, then allow the user to shoot
        shootAllow = true;
        //and reset cTime
        cTime = 0;
    function updateHealthBar():void
        percentHP = currentHP / maxHP;
        healthBar.barColor.scaleX = percentHP;
        if(currentHP <= 0)
            currentHP = 0;
            trace("Game Over");
        updateHealthBar();

    USe the trace function to analyze what happens and what fails to happen in the code you showed.  trace the conditional values to see if they are set up to allow a shot when you press the key

  • Need help with power supply & graphics card upgrades

    I have a HP Pavilion p6320y that I bought 8 months ago. AMD Phenom II x4820 Quad Core processor.   I play WoW and since the last big patch, have been suffering with low fps. I updated drivers and followed all the advice given to me by Blizz and finally figured out that my Nvidia GeForce 9100 (integrated graphics) isn't good enough anymore.
    I checked my computer and discovered that I have a 300w power supply (12V) and read on another post here that something stronger than 300w is needed to run a decent graphics card.
    Now for my questions:
    How much of a power supply can I upgrade to without hurting my computer, but will be enough to run a good card?
    What would be a good graphics card for this computer?
    I've been looking at the Nvidia GeForce GTX 460 1GB GDDR5 PCI Express graphics card and wonder if that will work on my computer.  Most of the nicer cards seem to be the PCI Express and I'm not sure if that will work.
    Any advice will be most helpful. I have some experience with the inner workings of my PC and would like to fix this myself instead of running to the closest computer shop and paying someone else to. Thanks!
    This question was solved.
    View Solution.

    Well, you are starting out from a fairly low baseline with the integrated graphics. It will not cost much to have a substantial increase if all you want to do is run WoW without error messages. Yes, the 300w power supply is an issue and rules out any card that will require its own power (i.e. needs its own power cord like a hard drive) but there are several mid-grade cards that can run off bus power alone (i.e. just from the pci-e slot itself). Just taking a quick look at newegg.com I see the following:
    GeForce 9400 under $50
    Radeon HD 4650 under $50
    GeForce 9500GT a little over $50
    Any of these should get you where you want to be and not require a PS upgrade. The slot you have available is a PCI Express x16 slot so don't look at AGP cards; they will not work. If you want to install the card you mention you need to get a better PSU.

  • Need help with slideshow widget appearing online

    Hey out there a big thanks in advance for this.
    I have slideshow widgets set up for my artwork and graphics pages on my website and they were working fine before the last Muse update.  I then went into Muse to add more images to said slideshows and export and upload them just like normal.  Everything went fine and then I finished uploading and viewed my site and the widgets did not appear...I also experienced some margin formatting difficulties but that is probably unrelated.  I have not changed any permissions and have not changed anything besides adding in a few images only to one of the two slideshow widgets.  I have completely deleted and re-exported and re-uploaded everything as in all of the files twice and still nothing.  I really need some help with this one as soon as possible.  Again a huge thank you.  To see my site please go to www.joeldsiegel.com  I have been using stablehost and the ftp client is CPanel if that is of any other help.  Thanks again!!

    Sorry, should've been more clear on that. Yes, the images
    have been converted to movie clips, adn the linkage ID's are
    img1-img8. The reasoning behind that is that, at some point, new
    pictures will take the place of the current pictures.
    The attempt at randomness is actually a leftover from a
    previous incarnation of this project. Ideally I'd like the pictures
    to always play through in the same order, but I'd like it to start
    at a random place in that order so it's not always the same image
    coming up when the page first comes up. So, basically, I left it in
    for lack of a better idea.
    As for the setInterval() and runTimer() and "Void" question,
    that part is complete patchwork on my part. I'm not surprised that
    I missed something or included something extra. There isn't any
    code beyond what's attached in my previous post.
    I think, at the time, I was hoping that the "if(timePassed
    > nTimeout){" part was on the right track, but are you saying
    that the void cancels that part out?

  • Need help with animation, for my XAML game

    Hello friends,
    I need help in creating animation for my snake and ladder game(C#,XAML). I have completed the game logic, but can't understand how to animate my UI.
    1. I want to animate 6 dice images so that when the player clicks on the Roll Dice Button a shuffle animation will play, and while the animation is playing the user can't click any thing.
    2. I want the player disc to move one step at a time (animation) on the game board.
    Please help me I am new to animation. Kindly give a reply

    Hello,
    I would recommend using
    Storyboards and / or the
    XAML animation library.
    Other resources:
    Storyboarded animations (XAML)
    XAML animation library sample
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Need help with developing a small pool game

    Hi,
    I want to develop a small pool game ....Im using the netbeans ide and ....what I have so far is 2 classes ......Pool and GUI
    Basically the main method is in the Pool class.......withing main I created a new GUI object .....which in turn creates a frame.
    I now want to custom code a rectangle and make it a container for the pool table and also colour it......the thing is can I do animations in a frame and by using independant classes rather than using an applet?
    I know this may be innefficient but I want to create a standalone pool game that uses custom objects and classes for the various tasks. I was just wandering if it was possible to do drawings the way i am saying without using an applet? Its just all the tutorials I see .....well all the code seems messy and lumped together in the one place ....and I basically want things such as a independant ball class and perhaps a painter custom interface that colours rectangles.
    Any advice would be appreciated
    David

    Thanks for the advice .....The thing is I understand pretty well what is needed .....and I have programmed small applications that take bookings for a hotel and and a library ....Im am familiar with references, arraylists and the alike and im also reading about the java collections interface ......I have also coded a simplistic program in the past that basically a ball was bouncing of the sides of a container and made a sound when it hit the edge(this used threads i believe). However it has been a while ......and although I am happy with some of the concepts of java........we did not do any java graphics programming at college. In all fairness though I learned the importance of using classes properly and in a way thats why im finding it so difficult to code even basic graphic movement that Im happy with as the tutorials Ive seen have everything lumped in one place(as mentioned) and trying to make them more modular can be difficult. As far as I know from coding some basic applets they are generated on the client side to enable everyone with different platforms to view stuff over the web. I dont want applets as I dont at this time want to distribute any of my meager programs over the web :-)). It is good to know that I can use threads and such independent of the applet class........I know my question may be naive but 100% of the tutorials I saw invoked the applet class in some way and emplied in a way that it was essential.......I thought there would be a way to do it without using applets but was not 100% sure which is why I asked.
    I will just need to try and find one guide now that actually shows me how to do what im asking:-)
    Cheers
    David
    I also have 3 java books.......each of which concentrate on graphics by use of applets ....im going to look them out again as they might contain something useful .....to be honest though they were a bit of a waste of money lol(well 2 of them were)

  • Need Help With Installling Classic on OS X Panther??

    Hi: When I installed OS X Panther, I wasn't aware that in order to run Classic 9, I needed 9.2. Well, I purchased 9.2 but everytime I install it it's giving me an error message. I've checked the disk as well as my HD and everything seems to be fine. I've turned off screensaver, unplugged my printer and disconnected the cable to the internet. What's up? It still won't install. It keeps saying there were errors in installing. Can anyone help me out here. I'd sure appreciate it.
    G4 AGP Sawtooth   Mac OS X (10.3.9)  

    Hi flyingcat,
    reinstalling OS 9 is not always an easy task. See if any of these article s can help:
    Using Apple Software Restore to install or reinstall parts without erasing (Mac OS X 10.1.5 or earlier)
    Using Restore Discs with Mac OS X 10.2 through 10.3.3
    Mac OS X 10.4: Restoring applications from a Mac OS X 10.2 Software Restore disc
    Using Restore discs with computers that ship with Mac OS X 10.3.4 through 10.3.7
    Using Restore discs with computers that ship with Mac OS X 10.3.7 or later
    Mac OS X: Reinstalling Mac OS 9 or recovering from a software restore
    Mac OS X 10.2, 10.3: How to perform Mac OS 9 clean installation with Restore CDs
    If this answered your question please consider granting some stars: Why reward points?

  • Need Help with Navigation for an Online Art Gallery

    I am trying to create a web site for an online art gallery.
    I am new to DW8 and I have been reading several books,
    forums, etc trying to figure out how to build a simple and elegant
    navigation system.
    I have successfully built simple navigation using a frame set
    as the index.html page. I have successfully built and incorporated
    the art gallery using Photo Assist (Photo Assist is a DW8 extension
    that creates photo albums using AJAX). The gallery.html page built
    with Photo Assist has thumbnail browsing and a slideshow mechanism.
    Photo Assist also uses CSS that I have been able to modify for my
    personal tastes in terms of creating a simple and elegant user
    interface for the gallery section of the web site.
    My index.html frame set consists of navFrame.html and
    mainDisplayFrame.html pages. I created a navigation button (using
    Fireworks 8) that links the gallery.html as its source and targets
    mainDisplayframe.html.
    My plan was to just add about 5 or 6 more navigation buttons
    and target the mainDisplayFrame.html from each navigation button to
    display some static information.I think the site looks fairly good
    except that the frame set requires scroll bars when browsed with
    800 x 600 screen resolutions. I thought that I could just use
    'layers' instead of a frame set, but there is not a "target"
    mechanism when usings layers.
    At the end of the day, I would prefer to just use one web
    page for displaying the navigation and all of my other web pages
    including the gallery.html page. I think I have the right idea but
    I can't seem to get a good handle on a navigation system that is
    better than a frame set.
    My online art gallery that is under construction is:
    http://www.andrew.cmu.edu/user/tburak/
    Photo Assist 1.0.1 DW extension URL is:
    http://www.webassist.com/professional/products/productdetails.asp?PID=108
    Please note that I am not a web designer that has deep
    knowledge of HTML, CSS, javascript, server side stuff, etc. I do
    know a little bit about C++ and Java programming and a little bit
    about html tags, and also a little bit about how CSS works. Beyond
    that, I am pretty much a point and click type of web page builder.
    My real expertise is more or less on photographing and digitizing
    the art.
    I should mention that I eventually want to build in PayPal
    eCommerce if at all possible, but I realize I might not have the
    skills to do so.
    Any help, suggestions and comments are very much
    appreciated.

    [discussion moved to LiveCycle Forms forum.]

  • Need help with iPod classic/Alpine stereo deck interface

    Hey All-
    I have installed a brand new Alpine CDE-143BT stereo deck in my car.  I have a 160gb iPod classic that I connect and control via the iPod sync cable, directly into the USB port on the deck. I currently have 113GB of music on the iPod.  The deck is less than 4 months old, and the iPod also has the most current software on it. 
    When I do an alphabetical search for Artist, Album, etc. I have noticed that not all of the letters in the search take me to that letter group.  For example, when I do a search for "D" it goes to "The Crystal Method";  "M-T" it takes me to "The Kinks", and so on.  It seems to be worse with an Artist search over Album search. 
    Any suggestions?

    If you have full resolution copies of the photos on the iPod have a look here: Apple Knowledge Base article - Use Disk Mode to copy photos from iPod
    If not, there are a few programs out there for recovering photos from an iPod, have a look at the ones below. If you search the internet you can find more. Just be aware that what you'll be recovering will be photos optimised for the iPod so they won't be the same quality as the original full resolution versions:
    Keith's iPod Photo Reader Mac only
    iPod Photo Liberator Mac & Windows
    TouchCopy Mac and Windows Versions (iPhone and iPod Touch compatible)

  • Need help with the classic question: iMac or MacPro?

    HI all,
    I have been tossing this questions for a little while now, high end iMac or low end MacPro? So if I can request your patience, please allow me to rattle this lot off and see if you can help.
    My current spec is:
    • MacPro 1,1
    • 2 x 2.66 Dual Core Xeon
    • I have 2 screens, 24"
    • All 4 internal bays have HDs, 1 is designated for TimeMachine.
    • 2 external HDs, 1 for iTunes and misc, 1 for boot HD backup.
    The software I run are mostly the Adobe CS suites, some 3d, some audio, and soon some FCPX.
    I have had the computer for about 4 years now, and although it has served me very well it is getting tired etc. I am a long-term tower computer fan, but I can't ignore the question.
    So, I have been thinking of either:
    • Going for the high-end iMac, and consolidate much of my internal HDs into an external RAID system.
    or
    • Getting the low-end MacPro, with the 3.2ghz Nehalem chip upgrade, and basically keep the same 'style' of system I have now.
    The
    What would you recommend? My concern is of course related to price, and bang for the buck, but more than that - longevity for the upcoming years. Pretty much now is the time when I will be updating, and I expect to keep whatever system for the next few years.
    I don't see my uses for the Mac to be too much different from what is listed above. I have not installed anything other than additional HDs and RAM into my current Mac - so in that respect expandability isn't too much of an issue.
    The price is similar enough to be comparable.
    In case you wonder, the current MacPro has been earmarked for use in another task, which is likely to include usage of the screens... Hence in somerespects, this is a "starting from scratch" situation...
    Thoughts?
    Many thanks,
    Aaron

    Forgot to mention Aperture. Lot's of photos.

  • Need help with iPod classic photo sync

    I received an iPod classic with photos of my wedding on it, as a gift. I want to move the photos from the iPod to my Apple TV device, but when I try to sync, I'm prompted with the warning that a sync would replace the photos on the iPod with photos from my computer's library...something I'm obviously trying to avoid.
    Any suggestions?

    If you have full resolution copies of the photos on the iPod have a look here: Apple Knowledge Base article - Use Disk Mode to copy photos from iPod
    If not, there are a few programs out there for recovering photos from an iPod, have a look at the ones below. If you search the internet you can find more. Just be aware that what you'll be recovering will be photos optimised for the iPod so they won't be the same quality as the original full resolution versions:
    Keith's iPod Photo Reader Mac only
    iPod Photo Liberator Mac & Windows
    TouchCopy Mac and Windows Versions (iPhone and iPod Touch compatible)

  • Need help with a simple basketball game.

    Hi im new here and I need help with making this simple basketball game.
    Im trying to recreate this game from this video. Im not sure if he is using as2 or as3
    Or if anyone could help me make a game like this or direct me to a link on how to do it It would be greatly appreciated.

    If you couldn't tell whether it is AS2 or AS3, it is doubtful you can turn it from AS2 into AS3, at least not until you learn both languages.  There is no tool made that does it for you.

  • Need help with "Shield" on side scrolling shooter game

    I am horribly new to Flash, and I need lots of help with a lot of things, most notably a shield I'm trying to give the player in a side scrolling shooter game. I need help with:
    1. Making the ship change color when it's activated.
    2. Making it so enemies die on contact with the ship.
    3. Making the "shield" variable go down constantly while in use.
    If anyone could help, I would appreciate it a lot.

    I wouldn't want any of you to write this program for me because I want to learn it myself. Yes I'm a student and I have to write some game with my groupe for a telephone in java like language doja. We decided to let it be a chess game. However I'm looking for an already written game in java that preferebly has some comments above the program lines so I can see what they've done. Offcourse if nobody has anything like this, yes I'm looking for a way to make an algorithm that makes the cpu move each time the player makes it's move. I have no idea on how to do this. I was hoping it can be solved with for, while, if and genest for statements. Yes it wil be a game with graphics but I think we can manage that part ourselves. So main question is the algorithm for the cpu moves. Do I have to pre-program every game in the book or is there another way etc..
    I hope there's anybody that can and is willing to get me on my way since I know it maybee isn't the most simple question.

  • Need help with ending a game

    i'm making a game at the moment.......
    i need help with a way to check all the hashmaps of enimies in a class called room......i need to check if they all == 0...when they all equal zero the game ends......
    i know i can check the size of a hash map with size().....but i want to check if all the hashmaps within all the rooms == 0.

    First of all stop cross posting. These values in the HashMap, they are a "Collection" of values, so what is wrong with reply two and putting all these collections of values into a super collection? A collection of collections? You can have a HashMap of HashMaps. One HashMap that holds all your maps and then you can use a for loop to check if they are empty. A map is probably a bad choice for this operation as you don't need a key and an array will be much faster.
    HashMap [] allMaps = {new HashMap(),new HashMap()};

  • Need help with buying graphics card and ram for MSI 865PE NEO 2-V

    Hi,
    I want to buy 1GB of ram for motherboard MSI 865PE NEO 2-V I need help with finding correct parts.
    I also want to buy 512Mb or 1GB graphics card.
    as i said before i need help with finding correct ones so they match motherboard, I would appreciate if any one would post link to cheap and fitting parts.
    I found graphics card allready, i just need to know if it will fit.
    the card is
    NVIDIA GeForce 7600 GS (512 MB) AGP Graphics Card
    Thanks for help.

    here you can see test reports for your mobo:
    http://www.msi.com/product/mb/865PE-Neo2-V.html#?div=TestReport

Maybe you are looking for

  • Error in making an .exe file

    hello..    i just make a labview file  and tried to make an .exe file.. i show error..   missing of  file path of an  Icon.. it is in NI Library file.. Why it is not taking the path from thr..  it also showing error that.it may be due to the moving o

  • Help finding files for SSO

    Hi everyone, We're trying to setup SSO at my company using this article (we're on Apex 3.1.2): http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html Everything is going smoothly so far, but we're now caugh

  • 10gDB Performance:R12

    Hi, I found following activitoes on my ADDM report .. Plz advice FINDING 2: 73% impact (13482 seconds) SQL statements consuming significant database time were found. RECOMMENDATION 1: SQL Tuning, 25% benefit (4640 seconds) ACTION: Run SQL Tuning Advi

  • Problem with AE CS5 recognizing png sequence

    I am trying to import a png sequence into After effects CS5. It is importing a completely different file! I have tried renaming the file, and re-creating the file, but it still imports another, completely different one. The names aren't even similar.

  • Gah.. can't join domain! DNS problem

    The server has Intel Xeon CPU E5606 @ 2.13 GHz,  8 GB RAM. Windows Server 2012 R2 DataCenter x64 The workstation has Intel Core i7 4820K CPU @ 3.70 GHz 16 GB RAM. Windows 8.1 Professional x64