Search results

  1. scoping king

    317 Tarnish: Updated public release

    Is there anyone able to help me set this up? I have it loaded into intellij, not sure about the other steps.
  2. scoping king

    317 DOWNLOAD NOW ValorOS | Exciting PvP Combat | Nostalgia Getting Back Memories | Scythe

    SO you mean I have to follow everyone else?
  3. scoping king

    317 DOWNLOAD NOW ValorOS | Exciting PvP Combat | Nostalgia Getting Back Memories | Scythe

    Thank you fixing link now. :P Fixing link now
  4. scoping king

    317 DropBox Link not working

    https://www.dropbox.com/scl/fi/6bkvknzmx5hkhd50ebswg/Cache.zip?rlkey=8r00h6eabn9oanz92xqblxsrb&st=ficvv3eh&dl=1 After Dropbox updated the site this links got updated to this and no longer work how can i fix it?
  5. scoping king

    317 DOWNLOAD NOW ValorOS | Exciting PvP Combat | Nostalgia Getting Back Memories | Scythe

    Play Now Video Tutorial Guide About Us Started this RSPS out of the love of old PvP content and wanted to create something people could enjoy, the server may not be flashy or have all the bells and whistles but I want to dedicate my time and make it better for people who are wanting to...
  6. scoping king

    317 ToolKit Issue

    I was trying to figure out how objects worked inside the client, i deleted a createObject(409, x, y, face) ... ect I ended up getting an error so i did control z thinking it would go back to normal and i'm stuck with this error in my client now i even tried to replace with an old version i had...
  7. scoping king

    317 Weapon Interface

    OK, I figured it out for the most part I just need to know where to call the HandleWeaponStyle so I don't have to call the same method multiple times in order to get the effect I need. public void handleWeaponStyle(Client c) { if (c.fightMode == 0) { c.getPA().sendFrame36(43, 0); } else...
  8. scoping king

    317 Weapon Interface

    Anytime I switch from Whip to Ags or any 3 combat style item to a 4 combat style item it don't want to show the correct one.. here is some pics of what I mean. (the part highlighted in red) It applies the correct XP, just doesn't show the correct one it's on. } else if...
  9. scoping king

    317 Cache Download

    I found this but with the "?" in there it won't read the file correctly, I tried to delete it but didn't work.
  10. scoping king

    317 Cache Download

    Added
  11. scoping king

    317 Cache Download

    So your saying to do it like this then? If so I have tried and to no avail private String cacheLink = "https://dl.dropbox.com/scl/fi/duy97vqlpvdoh35vwp0ik/AgathaCache.zip
  12. scoping king

    317 Cache Download

    Any Idea why Dropbox is throwing this error when I try to auto download my cache now? It used to be fine I don't know if something had changed. private String cacheLink = "https://dl.dropbox.com/scl/fi/duy97vqlpvdoh35vwp0ik/AgathaCache.zip?rlkey=99c81wv4s0hqkxtzwoxa123ot&dl=0"; I am now just...
  13. scoping king

    317 Looking - [Resizable Client]

    Trying to find a resizable client that will work with Agatha Source
  14. scoping king

    317 How do I access ground item class

    I tried looking inside of ItemHandler but couldn’t find much of anything that was of help, I’ll relook tonight but if anything I have a solution in place already.
  15. scoping king

    317 How do I access ground item class

    Okay so I would have to indeed make a new packet for the NPC pickup? Like this. public interface PacketType { public void processPacket(Client c, int packetType, int packetSize); } packetId[236] = new PickupItem();
  16. scoping king

    317 How do I access ground item class

    I'm Looking for a way to use the getItemX & getItemY I can't make these static for what i'm trying to do. I want the npc to be able to pick it up then it be removed when npc x and y are equal to the item. I have checked for methods in ItemHandler, ItemAssasitance and found nothing related to...
  17. scoping king

    317 NPC total size - requesting help

    So I was getting this error when trying to open dialogues on certain NPC's, I figured out a fix but not sure if it was the right way to go about it. Here is the error and fix below.. public static void unpackConfig(StreamLoader streamLoader) { stream = new...
  18. scoping king

    317 NPC size error?

    I added an npc and added dialogues to it, when i clicked the npc to open the chat it threw this error. Here is the code where it shows the error. public static void unpackConfig(StreamLoader streamLoader) { stream = new Stream(streamLoader.getDataForName("npc.dat")); Stream stream2 = new...
  19. scoping king

    317 Double coin drop

    Thank you, I figured the loop was the issue, but I didn't know how to get around it.
  20. scoping king

    317 Double coin drop

    for (int e = 0; e < c.playerEquipment.length; e++) { if (o != null && c.playerEquipment[e] > 0) { // if (specialItem(c.playerEquipment[e])) { // continue; // } if (tradeable(c.playerEquipment[e])) { if (c.killerId != c.playerId) { if (c.playerEquipment[e] == -1...