Thread: [667] Ring of Stone and Easter Ring

Results 1 to 8 of 8
  1. #1 [667] Ring of Stone and Easter Ring 
    Registered Member
    Join Date
    Jan 2015
    Age
    28
    Posts
    210
    Thanks given
    2
    Thanks received
    53
    Rep Power
    2
    I was just messing around looking for things to do, and googled to see if anyone had done the Ring of Stone for this revision.
    I found this http://www.rune-server.org/runescape...unny-ears.html.

    It was removed and people were commenting about how bad it was or whatever, well I feel like they tried to over-complicate it, so I decided to do it my way.

    In InterfaceManajer.java, add the following:
    Code:
    public void sendUnmorph() {
    		closeInventoryInterface();
    		closeEquipment();
    		sendTab(resizableScreen ? 94 : 208,375);
    		player.setInfiniteStopDelay();//could be player.lock(); in some sources
    		player.stopAll();
    	}
    In ButtonHandler.java, add the following in the handleButtons method:

    Code:
    if (interfaceId == 375) {//unmorph
    			if (componentId == 3) {
    				player.getAppearence().transformIntoNPC(-1);
    				player.getInterfaceManager().sendInventory();
    				player.getInterfaceManager().sendEquipment();
    				player.getInventory().unlockInventoryOptions();
    				player.setNextAnimation(new Animation(14884));
    				player.reset();//player.unlock(); in some sources
    			}	
    		}
    Also in ButtonHandler.java, search for public static void sendWear(Player player, int[] slotIds) and under
    Code:
    for (int slotId : slotIds) {
    			Item item = player.getInventory().getItem(slotId);
    			if (item == null)
    				continue;
    Add the following:
    Code:
    if (item.getId() == 6583) {
    				player.getAppearence().transformIntoNPC(2626);
    				player.getInterfaceManager().sendUnmorph();
    				return;
    			}
    			if (item.getId() == 7927) {
    				player.getAppearence().transformIntoNPC(Utils.random(3689,3694));
    				player.getInterfaceManager().sendUnmorph();
    				return;
    			}
    [SPOIL]Attached image[/SPOIL]
    Reply With Quote  
     

  2. #2  
    The One & Only


    Join Date
    Oct 2013
    Posts
    2,572
    Thanks given
    422
    Thanks received
    1,620
    Rep Power
    5000
    Thanks, I like the easter ring. I recall you could turn into random egg colors and not a specific one though
    Attached image
    Spoiler for More Signatures:

    Attached image
    Credits to Niceman, Vippy and Dami for the awesome signatures
    Attached image
    Attached image


    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    Jan 2015
    Age
    28
    Posts
    210
    Thanks given
    2
    Thanks received
    53
    Rep Power
    2
    Quote Originally Posted by Royal View Post
    Thanks, I like the easter ring. I recall you could turn into random egg colors and not a specific one though
    Yeah this one you can turn into any of them, the gif just wasn't long enough.
    Reply With Quote  
     

  4. #4  
    The One & Only


    Join Date
    Oct 2013
    Posts
    2,572
    Thanks given
    422
    Thanks received
    1,620
    Rep Power
    5000
    Quote Originally Posted by TheRealJordon View Post
    Yeah this one you can turn into any of them, the gif just wasn't long enough.
    Ah, good job
    Attached image
    Spoiler for More Signatures:

    Attached image
    Credits to Niceman, Vippy and Dami for the awesome signatures
    Attached image
    Attached image


    Reply With Quote  
     

  5. #5  
    Banned

    Join Date
    Jul 2011
    Posts
    1,767
    Thanks given
    493
    Thanks received
    425
    Rep Power
    0
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Jan 2015
    Age
    28
    Posts
    210
    Thanks given
    2
    Thanks received
    53
    Rep Power
    2
    player.getTemporaryAttributtes().put("RingNPC", Boolean.TRUE);


    Nice. I definitely think mine looks a little better
    Reply With Quote  
     

  7. Thankful user:


  8. #7  
    Banned

    Join Date
    Jul 2011
    Posts
    1,767
    Thanks given
    493
    Thanks received
    425
    Rep Power
    0
    Quote Originally Posted by TheRealJordon View Post
    player.getTemporaryAttributtes().put("RingNPC", Boolean.TRUE);


    Nice. I definitely think mine looks a little better
    lol was just putting it =P

    good job tho
    Reply With Quote  
     

  9. #8  
    Registered Member
    Join Date
    Oct 2012
    Posts
    62
    Thanks given
    8
    Thanks received
    9
    Rep Power
    14
    had this for awhil but thanks good job
    Reply With Quote  
     


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. [PI] Easter ring & ring of stone.
    By Fupac in forum Snippets
    Replies: 13
    Last Post: 08-01-2014, 07:47 AM
  2. how to fix easter ring and ring of stone
    By _Jamal in forum Snippets
    Replies: 10
    Last Post: 04-18-2014, 11:16 AM
  3. Easter & Ring of Stone
    By Hoodlumbot in forum Snippets
    Replies: 3
    Last Post: 09-18-2013, 03:21 PM
  4. pi easter ring and ring of stone no walking!
    By g0d 0f war in forum Snippets
    Replies: 13
    Last Post: 08-14-2013, 03:18 AM
  5. [667/7**] Easter Ring/Ring of Stone/Bunny Ears
    By 13lack drag in forum Snippets
    Replies: 21
    Last Post: 03-28-2013, 05:26 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
  •