Thread: #180 Project51. Anguish w/ fixes & more. Raids rework. 95% Revenant Caves.

Page 9 of 13 FirstFirst ... 7891011 ... LastLast
Results 81 to 90 of 124
  1. #81  
    I live to die another day.
    Kharyrll's Avatar
    Join Date
    Feb 2018
    Posts
    532
    Thanks given
    2
    Thanks received
    60
    Rep Power
    170
    Even when removing

    Code:
    player.getItems().wearItem(-1, -1, player.playerHat);
    player.getItems().wearItem(-1, -1, player.playerChest);
    player.getItems().wearItem(-1, -1, player.playerLegs);
    player.getItems().wearItem(-1, -1, player.playerWeapon);
    player.getItems().wearItem(-1, -1, player.playerAmulet);
    player.getItems().wearItem(-1, -1, player.playerCape);
    player.getItems().wearItem(-1, -1, player.playerFeet);
    player.getItems().wearItem(-1, -1, player.playerHands);
    player.getItems().wearItem(-1, -1, player.playerShield);
    It still nulls and actually equips ghostly robes, and also still nulls and sends some items to your inventory if you remove this block.
    You can rewrite it to equip actual items, but if you want to remove the whole block itself I'm not sure what to tell you. I messed around with it for a little bit.
    Last edited by Kharyrll; 10-05-2020 at 08:51 AM.
    Reply With Quote  
     

  2. #82  
    Registered Member
    Join Date
    Jun 2010
    Posts
    632
    Thanks given
    61
    Thanks received
    22
    Rep Power
    49
    Quote Originally Posted by Slayer. View Post
    Even when removing

    Code:
    player.getItems().wearItem(-1, -1, player.playerHat);
    player.getItems().wearItem(-1, -1, player.playerChest);
    player.getItems().wearItem(-1, -1, player.playerLegs);
    player.getItems().wearItem(-1, -1, player.playerWeapon);
    player.getItems().wearItem(-1, -1, player.playerAmulet);
    player.getItems().wearItem(-1, -1, player.playerCape);
    player.getItems().wearItem(-1, -1, player.playerFeet);
    player.getItems().wearItem(-1, -1, player.playerHands);
    player.getItems().wearItem(-1, -1, player.playerShield);
    It still nulls and actually equips ghostly robes, and also still nulls and sends some items to your inventory if you remove this block.
    You can rewrite it to equip actual items, but if you want to remove the whole block itself I'm not sure what to tell you. I messed around with it for a little bit.
    worked for me but I already had to fix a punch of things (Bank Tabs don't work on first login for example lol)


    [Only registered and activated users can see links. ]

    Reply With Quote  
     

  3. #83  
    I live to die another day.
    Kharyrll's Avatar
    Join Date
    Feb 2018
    Posts
    532
    Thanks given
    2
    Thanks received
    60
    Rep Power
    170
    Quote Originally Posted by MarkQ View Post
    worked for me but I already had to fix a punch of things (Bank Tabs don't work on first login for example lol)
    When removing this block it still nulls out, and when you equip/unequip anything it puts on like a black scimitar and ghostly robes. So weird.
    Reply With Quote  
     

  4. #84  
    Registered Member
    Join Date
    Oct 2020
    Posts
    2
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    Cant launch the server it shows : a JNI error has accoured. What do i do ?
    Reply With Quote  
     

  5. #85  
    Donator

    Kid Buu's Avatar
    Join Date
    Aug 2017
    Posts
    427
    Thanks given
    169
    Thanks received
    222
    Rep Power
    399
    Quote Originally Posted by Slayer. View Post
    When removing this block it still nulls out, and when you equip/unequip anything it puts on like a black scimitar and ghostly robes. So weird.
    Find the following code in dialougehandler.java
    Code:
    		case 678:
    			c.getPA().movePlayer(3096, 3510, 0);
    			c.getItems().wearItem(-1, -1, c.playerHat);
    			c.getItems().wearItem(-1, -1, c.playerChest);
    			c.getItems().wearItem(-1, -1, c.playerLegs);
    			c.getItems().wearItem(-1, -1, c.playerWeapon);
    			c.getItems().wearItem(-1, -1, c.playerAmulet);
    			c.getItems().wearItem(-1, -1, c.playerCape);
    			c.getItems().wearItem(-1, -1, c.playerFeet);
    			c.getItems().wearItem(-1, -1, c.playerShield);
    			c.getItems().wearItem(-1, -1, c.playerHands);
    			sendNpcChat("Around the Home bank you can find", "many things to help make your grind easier",
    					"spinning wheel or maybe the vote shop");
    			c.nextChat = 679;
    			break;
    Replace that chunk with
    Code:
    		case 678:
    			c.getPA().movePlayer(3096, 3510, 0);
    			sendNpcChat("Around the Home bank you can find", "many things to help make your grind easier",
    					"spinning wheel or maybe the vote shop");
    			c.nextChat = 679;
    			break;
    Reply With Quote  
     

  6. Thankful user:


  7. #86  
    Registered Member
    Join Date
    Jun 2010
    Posts
    13
    Thanks given
    3
    Thanks received
    3
    Rep Power
    29
    Many thank's kid. Going to check this out and maybe use for a base.
    Fuck COVID

    Reply With Quote  
     

  8. #87  
    Donator
    Join Date
    Oct 2020
    Posts
    3
    Thanks given
    0
    Thanks received
    1
    Discord
    View profile
    Rep Power
    0
    Real nice fixes bro thank you for this
    Reply With Quote  
     

  9. #88  
    Registered Member duration's Avatar
    Join Date
    Feb 2017
    Posts
    106
    Thanks given
    40
    Thanks received
    3
    Rep Power
    0
    why are there no library's hahaha
    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  10. #89  
    Registered Member
    Join Date
    Oct 2020
    Posts
    9
    Thanks given
    0
    Thanks received
    1
    Discord
    View profile
    Rep Power
    0
    I wanted to try to remove some of the NPCs, but there is no area inside of this whatsoever that allows you to do so.... at least I can't find it after 2 hours of looking
    Reply With Quote  
     

  11. #90  
    Registered Member KushKings's Avatar
    Join Date
    Jul 2018
    Posts
    441
    Thanks given
    49
    Thanks received
    24
    Discord
    View profile
    Rep Power
    37
    Quote Originally Posted by Vaiisiuss View Post
    I wanted to try to remove some of the NPCs, but there is no area inside of this whatsoever that allows you to do so.... at least I can't find it after 2 hours of looking
    Sever side go to data then cfg then go to spawn_config you can add or remove npcs there
    Reply With Quote  
     

Page 9 of 13 FirstFirst ... 7891011 ... 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. Replies: 267
    Last Post: 04-13-2021, 11:29 PM
  2. OSRS/317 180-8 Data + 317 Fixes
    By Tutus Frutus in forum Configuration
    Replies: 21
    Last Post: 08-15-2019, 05:52 PM
  3. Replies: 10
    Last Post: 01-02-2019, 12:05 PM
  4. Replies: 2
    Last Post: 08-22-2015, 02:01 PM
  5. [317] Error? How do I fix (Small)
    By phl0w in forum Help
    Replies: 3
    Last Post: 04-12-2009, 05:07 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •