Thread: 2006Redone Release - Highly Accurate Runescape 2006 Remake

Page 23 of 32 FirstFirst ... 132122232425 ... LastLast
Results 221 to 230 of 313
  1. #221  
    Donator
    Mr Extremez's Avatar
    Join Date
    Jun 2012
    Posts
    2,243
    Thanks given
    97
    Thanks received
    298
    Rep Power
    61
    Quote Originally Posted by Van Der Graf View Post
    I still think that this is a great 2006 base and is fairly easy to mod for, but sadly monsters can't attack you diagonally, which breaks the gameplay. All it takes is a single step away in a diagonal direction and the npc will do nothing, allowing you to stand right beside it and take no damage with ranged or magic. If your auto retaliate is on you can actually safespot it using melee.

    I also found a dupe glitch involving the amulet of glory, but that can be "fixed" by making the item untradeable, unsellable, etc.
    Both of those can be fixed, glory one is very easy just check and see if played has it in inventory or equipped and if not don’t teleport.
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

  2. #222  
    Registered Member
    Join Date
    Mar 2018
    Posts
    2
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Quote Originally Posted by Mr Extremez View Post
    Update on the items issue: I have successfully fixed the dropping items issue.

    Hint: Itemhandler.java and ItemAssistant.java

    Will post more detailed fixed tonight


    UPDATED:


    ItemHandler.java

    Replace createGroundItem method with this:

    Code:
    public void createGroundItem(Client player, int itemId, int itemX, int itemY, int itemAmount, int playerId) {
    		if (itemId > 0) {
    			if (itemId >= 2412 && itemId <= 2414) {
    				player.getActionSender().sendMessage("The cape vanishes as it touches the ground.");
    				return;
    			}
    			if (itemId > 4705 && itemId < 4760) {
    				for (int[] brokenBarrow : brokenBarrows) {
    					if (brokenBarrow[0] == itemId) {
    						itemId = brokenBarrow[1];
    						break;
    					}
    				}
    			}
    			if (!redone.game.items.Item.itemStackable[itemId] && itemAmount > 0) {
    				for (int j = 0; j < itemAmount; j++) {
    					player.getActionSender().createGroundItem(itemId, itemX, itemY, 1);
    					GroundItem item = new GroundItem(itemId, itemX, itemY, player.getH(), 1, player.playerId, HIDE_TICKS, PlayerHandler.players[playerId].playerName);
    					addItem(item);
    					String itemName = ItemAssistant.getItemName(itemId).toLowerCase();
    					if (player.isDead == false && itemId != 526) {
    						if (player.getPlayerAssistant().isPlayer()) {
    							GameLogger.writeLog(player.playerName, "dropitem", player.playerName + " dropped " + itemAmount + " " + itemName + " absX: " + player.absX + " absY: " + player.absY + "");
    						}
    					}
    				}
    			} else {
    				player.getActionSender().createGroundItem(itemId, itemX, itemY, itemAmount);
    				GroundItem item = new GroundItem(itemId, itemX, itemY, player.getH(), itemAmount, player.playerId, HIDE_TICKS, PlayerHandler.players[playerId].playerName);
    				addItem(item);
    				String itemName = ItemAssistant.getItemName(itemId).toLowerCase();
    				if (player.isDead == false && itemId != 526) {
    					if (player.getPlayerAssistant().isPlayer()) {
    						GameLogger.writeLog(player.playerName, "dropitem", player.playerName + " dropped " + itemAmount + " " + itemName + " absX: " + player.absX + " absY: " + player.absY + "");
    					}
    				}
    			}
    		}
    	}
    This will fix dropping issues
    Could someone post their itemhandler.java file? I keep trying but i dont understand coding
    Reply With Quote  
     

  3. #223  
    Blurite

    Corey's Avatar
    Join Date
    Feb 2012
    Age
    26
    Posts
    1,491
    Thanks given
    1,245
    Thanks received
    1,729
    Rep Power
    5000
    Quote Originally Posted by hopethisworks View Post
    Could someone post their itemhandler.java file? I keep trying but i dont understand coding
    Learn then
    Attached image
    Reply With Quote  
     

  4. #224  
    Registered Member
    Join Date
    Mar 2018
    Posts
    2
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    finally got it haha ty extremes
    Reply With Quote  
     

  5. #225  
    Donator
    Mr Extremez's Avatar
    Join Date
    Jun 2012
    Posts
    2,243
    Thanks given
    97
    Thanks received
    298
    Rep Power
    61
    Quote Originally Posted by Van Der Graf View Post
    If you're having trouble with basic copying and pasting code to get drops working, you're going to have a really hard time fixing the diagonal attack issue, and the cache. For other bases I've tried it's a simple matter of using Tom's Cache Suite to change and replace the sprites, logo, etc. But with this base, using Tom's Cache Suite isn't making any noticeable difference on the cache, for reasons I have yet to figure out.

    If anyone out there likes modding for 2006Redone (or just likes discussing/playing Runescape 2006 in general) add me on Discord. Name is Van Der Graf#7799. I love anything and everything 2006 Runescape related.
    Modify the cache inside the file server then delete old cache and re load client.
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

  6. #226  
    Registered Member
    Join Date
    Apr 2018
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Hey all - I dockerized this so that I can run it on my home server a bit easier. In case you want to use those Docker images:

    https://hub.docker.com/r/jeffcasavan...redone-server/
    https://hub.docker.com/r/jeffcasavan...ne-fileserver/

    You'll have to build the client on your own, but if you want to from the CLI, I have been using:

    javac -cp src/ -d bin src/*java

    and to run:

    java -cp bin Main
    Reply With Quote  
     

  7. #227  
    Registered Member
    Join Date
    Jul 2012
    Posts
    29
    Thanks given
    2
    Thanks received
    5
    Rep Power
    11
    Has anyone managed to fix the doors?
    Reply With Quote  
     

  8. #228  
    Registered Member
    Join Date
    Apr 2018
    Posts
    2
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    When I try hit Initiate inside the "2006Redone Server" folder it says Error: Could not find or load main class server.server
    press any key to continue...

    Any help would be much appreciated guys
    Reply With Quote  
     

  9. #229  
    Donator
    Mr Extremez's Avatar
    Join Date
    Jun 2012
    Posts
    2,243
    Thanks given
    97
    Thanks received
    298
    Rep Power
    61
    Quote Originally Posted by 06PK View Post
    When I try hit Initiate inside the "2006Redone Server" folder it says Error: Could not find or load main class server.server
    press any key to continue...

    Any help would be much appreciated guys
    Use eclipse
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

  10. #230  
    Registered Member
    Join Date
    Jul 2017
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Quote Originally Posted by 06PK View Post
    When I try hit Initiate inside the "2006Redone Server" folder it says Error: Could not find or load main class server.server
    press any key to continue...

    Any help would be much appreciated guys
    I wish dev/people would explain a little and stop trying to make things complicated more then what they are.
    Don't get me wrong I love this release as its what I have been looking for AND BY NO MEANS I'M NOT FLAMING ANYONE HERE.
    Just saying if your going to put something out please help people little better by point someone in the right direction.

    So the IDA program Eclipse is what you need and make sure you use a eclipse that is a older version with JRE7 & JDK7 is what I use for best luck or if have to use JDK1.6.20 and JVM is required for lower versions java and eclipse. At least this was what I read done and worked for me without errors. When Dev said to use eclipse he forgot to say eclipse arguments needs to be setup also here.

    Eclipse versions : Eclipse Project Archives
    best to use jd8 and jre. I got better use 4.7 eclipse. later in time tried.
    http://archive.eclipse.org/eclipse/d...-201706120950/

    JDK 8 version:
    http://fs3.softfamous.com/downloads/...indows-x64.exe

    error fix arguments scroll down a bit and you will see what I'm talking about.
    https://www.rune-server.ee/runescape...p-eclipse.html

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~`
    Here is the answer: (Remember google is your friend)

    build script is as follows.
    @echo off
    java -jar libs/javac++.jar src libs bin
    pause

    and

    initiate is as follows.
    @echo off
    java -Xmx256m -cp bin;libs\*; redone.Server true false false
    pause


    Now I helped you please help me change cached files with server ip info???



    Mr Extremez I WANT TO SAY FIRST I UNDERSTAND WHAT ITS LIKE TO KNOW AND TRY TO EXPLAIN TO SOMEONE WHO DOESN'T KNOW AND ITS LIKE HERE WE GO AGAIN.

    SOME PEOPLE CANT EXPLAIN VERY WELL I UNDERSTAND! All I say is I will try to help and plus Thank you very much for all your hard work.


    ~~~~~~~~~~~~~~~~~~~~~~~~
    MY THOUGHTS ON PPC !! LOLZ
    (x) HEX = WORLD OF IDA PRO!
    (Y) PPC = XBOX ONE AND XBOX X60
    x and y = reverse the hypervisor and give me what I want.

    Last edited by hexxxxxx; 05-17-2018 at 05:02 PM. Reason: EDITED SOMETHING ?
    Reply With Quote  
     

Page 23 of 32 FirstFirst ... 132122232425 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. 2006Redone || Runescape 2006 Remake
    By Mr Extremez in forum Projects
    Replies: 167
    Last Post: 03-07-2014, 08:29 AM
  2. Replies: 85
    Last Post: 03-09-2013, 01:22 PM
  3. Replies: 28
    Last Post: 11-01-2012, 11:04 PM
  4. 2006Redone || Runescape 2006 Remake
    By Mr Extremez in forum Advertise
    Replies: 69
    Last Post: 09-28-2012, 09:55 PM
  5. RSPSHub - A Real Runescape 2006 Remake
    By Russian in forum Advertise
    Replies: 190
    Last Post: 12-09-2011, 07:46 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •