Search results

  1. GameMaster

    autospawn generator for personal use

    I may be confused. Could this not easily be replicated with a simple command?
  2. GameMaster

    Need help on making npc stand still and not follow the player in combat

    You could add a flag to your NPC class that depicts whether or not your NPC will engage in stationary combat. Add these in your NPC class: private boolean stationaryInCombat; public boolean isStationaryInCombat() { return stationaryInCombat; } public void...
  3. GameMaster

    718 Zoom

    While the code works, there is no reason to have multiple try/catches in the same method here. You could easily simplify this code with the following: if (mousewheelevent.isShiftDown()) { int z = mousewheelevent.getWheelRotation(); String action = null; if (z == 1) { action...
  4. GameMaster

    317 Perfect Rune Pouch

    private static final Map<Integer, Rune> FOR_ID = new EnumMap<>(Rune.class); static { for (Rune r : values()) { FOR_ID.put(r.id, r); } } public static Rune getById(int id) { return FOR_ID.get(id); } }
  5. GameMaster

    Troubles Updating Cache --Dumping/Repacking --GZip Error

    The error you are receiving indicates that the files being requested are not of the GZIP format, and it is likely you should employ other methods to read the data. To easily check if the files being requested are GZIP-compressed, you can read them manually to see if they start with the GZIP...
  6. GameMaster

    client background black line not in split photo???

    I imagine this strange line occurs due to improper rounding. Please show me the code you change when editing your background image.
  7. GameMaster

    Advent of Code 2023

    Decided to begin taking my crack at the puzzles, they're very fun, I wish I had learned of this sooner. Only first 3 days are done so far, here is the repository: GitHub - Gemuoi/advent2023 I will continue to update the repository as I continue finishing the puzzles. Please ignore that I am...
  8. GameMaster

    Advent of Code 2023

    I haven't heard of this until just now. Very cool, very fun, thanks for that. I may participate in 2024, or I may participate in some of these and post the results later. Who knows what may happen, it's a whacky world out there.
  9. GameMaster

    Major Money Master

    Hi everyone, ignore the title, idk what I was on, I'm GameMaster. I go more often go by gemu these days, and you can find me on the Rune-Server Discord under that name as well. I have realized my name on the Discord is also GameMaster. While technically I've been apart of the RuneScape private...
  10. GameMaster

    Help with player dancing ( spinning when following each other)

    I don't know what source you're using, so I won't be able to help specifically, but maybe I can help point you in the right direction as well as providing you with generic code examples. RuneScape, as well as it's private server counterparts, uses a tick system to handle packets of information...
  11. GameMaster

    637 [639] HydraScape is BACK

    "idk who you are, which means you're a nobody to me, which means your criticism on my project is invalid" is an interesting marketing tactic, I must say.
  12. GameMaster

    742 Atlantis |-| The Lost City (742 Loading OSRS)

    The interfaces are pretty neat! Good luck with your project. :)
  13. GameMaster

    317 ETHOS NullPointerException - Can't Run!

    The variable local12 is likely not initialized, causing it to throw a null pointer error. You can find this variable in class ServerData on line 79. To better read the console errors, the line that shows at ethos.server.data.ServerData.loadServerData(ServerData.java:79) is telling you where the...
  14. GameMaster

    194 [195] Gauntlet | OSRS WITH A TWIST | $1000+ RELEASE IN PRIZES!

    I agree. Any time I've ever "owned" a project, it's always been solo. Fortunately, I've been friends with Shinatobe for over a decade and have offered my services free of charge. No malicious intent here, I just like to code. :) The other developer that stole our source is wildly mediocre and I...
  15. GameMaster

    194 [195] Gauntlet | OSRS WITH A TWIST | $1000+ RELEASE IN PRIZES!

    Unfortunately, one of our developers decided to steal our source and attempt to ruin the economy as well as some of our code. Due to this action, we have put the server back into a beta phase where our upcoming release will now be October 15th. I am now happy to be apart of this team and help...
  16. GameMaster

    [Paid] Content Creators for RSPS

    Hello! :) Welcome to my thread. Putting it simply, I am seeking content creators for my upcoming official launch of a RuneScape private server. If you are interested in checking it out before making an offer, please refer to my signature. Now, I am mostly seeking out content creators in the...
  17. GameMaster

    [Beta] Pauper: Properly Unique

    Recent Updates: Pikkupstix' Summoner Shop has been added for Ironman accounts, apparently I forgot a good portion of the Taverly shops - I will work to add those Rewrote Shooting Stars to be much more efficient and less cluttered ;;empty command dialogue rewritten and easier to understand for...
  18. GameMaster

    [Beta] Pauper: Properly Unique

    Due to the complaints and my own personal hassle, Pauper has gotten a host upgrade! https://pauperps.com/community/showthread.php?tid=74
  19. GameMaster

    ↭ Alora - Revenant Caves & Mage Arena II LIVE ★ Inferno ★ Raids ★ Hardcore Ironman ↭

    Recommend being a bit more transparent with the community/potential community, or strange questions that may be difficult to answer might start to arise in bundles. It's a bit odd to me that the testing was opened to one tier of donors and a handful of staff -- instead of a dedicated testing...
  20. GameMaster

    RS2 [Hidden] (Do not delete)

    Your packaging is a site to behold. Absolutely beautiful. Also the way you've handled farming makes me want to redo some of my own code, it's so nice. Very impressed, very nice! Can't wait to see what the future holds for this project! Will be following closely.