Thread: 2006Redone Release - Highly Accurate Runescape 2006 Remake

Page 12 of 32 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 313
  1. #111  
    Registered Member Text's Avatar
    Join Date
    Nov 2012
    Posts
    302
    Thanks given
    61
    Thanks received
    27
    Rep Power
    21
    Really enjoying this release, it's a lot of fun just to look at. My only problem are there are some problems with second and third NPC interact packet, also I always load at absx: 0, absy: 0 when logging in

    Is anyone else having this issue? If so, will post fix when I find.
    Attached image
    Reply With Quote  
     

  2. #112  
    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 Text View Post
    Really enjoying this release, it's a lot of fun just to look at. My only problem are there are some problems with second and third NPC interact packet, also I always load at absx: 0, absy: 0 when logging in

    Is anyone else having this issue? If so, will post fix when I find.
    I don't have any of these issues. What is the problem with the npc clicking?
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

  3. #113  
    Registered Member
    Join Date
    May 2017
    Posts
    7
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    does anyone know how to fix the npcs from not droping 3 of each item like lets say it drops bones it drops 3 bones. I checked npcdrop.java and the npchandler and it is coded as 1 but still drops 3 for any drop and everytime i drop a item i can pick it up and 3 times
    Reply With Quote  
     

  4. #114  
    Registered Member
    Join Date
    Apr 2017
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    There is a problem when it comes to at least the sheep shearer quest where:
    1. The shears don't spawn on the table in Fred the Farmers house like normal, though this problem is alleviated easily since the shears are sold in the general store, for nothing oddly enough
    2. The main problem is that shearing sheep doesn't give me wool and most of the time it says that the npc has already been transformed
    I can try and fix this problem myself, but I am no where near proficient enough yet in the java programming language to do so at this time. So if anyone can help or at least point me in the right direction, that would be appreciated.
    I have already applied both of the item related fixes so I'm not sure if this is involves something else or what.
    Reply With Quote  
     

  5. #115  
    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 jmfindorff View Post
    There is a problem when it comes to at least the sheep shearer quest where:
    1. The shears don't spawn on the table in Fred the Farmers house like normal, though this problem is alleviated easily since the shears are sold in the general store, for nothing oddly enough
    2. The main problem is that shearing sheep doesn't give me wool and most of the time it says that the npc has already been transformed
    I can try and fix this problem myself, but I am no where near proficient enough yet in the java programming language to do so at this time. So if anyone can help or at least point me in the right direction, that would be appreciated.
    I have already applied both of the item related fixes so I'm not sure if this is involves something else or what.
    Make use of this method I wrote:

    Code:
    	
    	public void shearSheep(Player player, int itemNeeded, int itemGiven, int animation, final int currentId, final int newId, int transformTime) {
    		if (!player.getItemAssistant().playerHasItem(itemNeeded)) {
    			player.getActionSender().sendMessage("You need " + ItemAssistant.getItemName(itemNeeded).toLowerCase() + " to do that.");
    			return;
    		}
    		if (transformId == newId) {
    			player.getActionSender().sendMessage("This sheep has already been shorn.");
    			return;
    		}
    		if (animation > 0) {
    			player.startAnimation(animation);
    		}
    		requestTransform(newId);
    		player.getItemAssistant().addItem(itemGiven, 1);
    		player.getActionSender().sendMessage("You get some " + ItemAssistant.getItemName(itemGiven).toLowerCase() + ".");
    		CycleEventHandler.getSingleton().addEvent(player, new CycleEvent() {
    
    			@Override
    			public void execute(CycleEventContainer container) {
    				requestTransform(currentId);
    				container.stop();
    			}
    
    			@Override
    			public void stop() {
    				
    			}
    		}, transformTime);
    	}
    from there its common sense





    ----



    Quote Originally Posted by fun in the sun View Post
    does anyone know how to fix the npcs from not droping 3 of each item like lets say it drops bones it drops 3 bones. I checked npcdrop.java and the npchandler and it is coded as 1 but still drops 3 for any drop and everytime i drop a item i can pick it up and 3 times
    This isn't an issue I have ever experienced, try re downloading server and re applying fixes.
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

  6. #116  
    Registered Member
    Join Date
    Jun 2015
    Posts
    7
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Well the Server is running and the client too but its trying to connect to a web server... and retrying all time hmmm any guess?
    Reply With Quote  
     

  7. #117  
    Registered Member

    Join Date
    Oct 2011
    Posts
    2,084
    Thanks given
    0
    Thanks received
    1,043
    Rep Power
    3608
    Quote Originally Posted by Anonyme123456 View Post
    Well the Server is running and the client too but its trying to connect to a web server... and retrying all time hmmm any guess?
    the post suggests to also run the live server.
    Reply With Quote  
     

  8. #118  
    Donator

    i dds you's Avatar
    Join Date
    Jun 2013
    Posts
    831
    Thanks given
    678
    Thanks received
    160
    Rep Power
    92
    looks nice, thanks for sharing

    Reply With Quote  
     

  9. #119  
    Registered Member
    Join Date
    Jun 2017
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Server initiate batch file was pointing to "server.server". Once changed to "redone.server" it ran correctly.
    Reply With Quote  
     

  10. #120  
    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 oldserverpls View Post
    Server initiate batch file was pointing to "server.server". Once changed to "redone.server" it ran correctly.
    Just use eclipse and you won't have to worry about that.
    Add my new Skype: live:extremezgp

    Discord: Mr Extremez#3049

    Reply With Quote  
     

Page 12 of 32 FirstFirst ... 2101112131422 ... 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
  •