The RuneLocus forum has been archived and does not accept new registrations.
Click here for more information, and click here to join the community on Discord.
Search the Community
Showing results for tags 'boomscape'.
The search index is currently processing. Current results may not be complete.
-
Hi, so I have decided to release the source now, quit RSPS fully got a job and doing better for myself and what's the use in just holding on to a source when theres no point can't be asked to sell anymore copys to anyone or deal with RSPS' anyways enjoy Includes the following stuff Soulwars (Zeal Points/Shop, All working avatars and games) Obelisks (In the wilderness obelisks will automatically teleport you around in the wilderness EXACTLY like RuneScape!) Bank Pins (Secure your banks with Bank Pins which will secure your Banks, Money Pouches and from Trading/Dropping Items!) Grand Exchange (The Grand Exchange is a Secure way to Trade within RuneScape and works great in this source, even whilst your offline you can be banking profits!) Secure Money (What I mean by this is that users coins are almost impossible to NULL we spent a lot of time making this fix and it works great!) Lottery System (Each hour or more if you wanted to edit it there will be a jackpot where users provide money into a pot to be able to win) Glacors (These work great! Just like RuneScape actually! They will split into minions giving users a great fun way of 'bossing') Duel Arena (Duel your friends/enemys and make money by gambling your items for the duel!) Dungeoneering System (Unlike other RSPS' we have a great way of training your Dungeoneering Level, making it difficult and rewarding in a wave system!) All Skills Trainable (That's right! Every skill is trainable in a fun and awesome way!) Lag Fixes (This source has the fix which you can do on any server which would make the ram usage go over the limit causing the entire game to lag) And Much Much More!!! Source Download Client Download Cache Download Anyways enjoy
-
I have changed these lines of code in launcher.java /* Special game ranks */ public static final String[] DEVELOPERS = { "James", "Olly" }; public static final String[] MAIN_ACESSS = { "James", "Olly" }; I changed the name in the commands to be able to use them but none of it works. I can change titles etc but when i compile its like this doesn't work
-
Hello, I have a problem with compiling boomscape. I am quite new with RSPS and I would like to make my own. When I try to compile, it throws up this. [ATTACH=CONFIG]10996[/ATTACH] Java is located correctly I think. [MENTION=7458]echo[/MENTION] off title Client Compiler echo starting... "C:\Program Files\Java\jre1.8.0_40\bin\java" -cp lib/*; -d bin -sourcepath src src/*.java [MENTION=41862]pause[/MENTION]
-
[CENTER][B]This is mostly for boomscape source, but I'm sure it'll work for any other source. All credit goes to me for both of the coding since I done it on my own.[/B] difficulty: 2/10 copy/paste [IMG]http://i.imgur.com/GuSEyT3.png[/IMG] [IMG]http://i.imgur.com/oHySm6I.png[/IMG] First, find this in LoginManager.Java com>rs>game>player [CODE] public static void sendLogin(Player player) {[/CODE] Go under [CODE] World.exiting_delay - delayPassed);[/CODE] Then add this: [CODE] if (player.getUsername().equalsIgnoreCase("yourname")) { World.sendWorldMessage("<col=FF0000><shad=000000><img=1>Main Owner</col><col=00ff2b>yourname</col><col=FF0000> has logged in.", false); } if (player.getUsername().equalsIgnoreCase("yourname")) { World.sendWorldMessage("<col=ff0000><shad=000000><img=1>Developer/Owner </col><col=00ff2b>yourname</col><col=FF0000> has logged in.", false); } if (player.getUsername().equalsIgnoreCase("yourname")) { World.sendWorldMessage("<col=ff0000><img=1><shad=000000>Co-Owner <col=00ff2b>yourname</col><col=FF0000> has logged in.", false); } if (player.isSupporter()) { World.sendWorldMessage("<col=006bff><img=6><shad=000000>Supporter <img=6></col></shad>"+ player.getDisplayName() +"<col=006bff><shad=000000> has just logged in", false); } if (player.getRights() == 1) { World.sendWorldMessage("<col=FFFFFF><img=0><shad=000000>Moderator <img=0></col></shad>"+ player.getDisplayName() +"<col=FFFFFF><shad=000000> has just logged in", false); }[/CODE] For admin, just add in a extra one from the moderator and change the 1 on getRights() == 1 to 2, like this: [CODE] if (player.getRights() == 2) { World.sendWorldMessage("<col=FFFFFF><img=1><shad=000000>Administrator <img=0></col></shad>"+ player.getDisplayName() +"<col=FFFFFF><shad=000000> has just logged in", false); }[/CODE] Also, before someone claims I used a snippet, gtfo lmaooo *cough* hk *cough* Fixed PK Shop to where you exchange 10 tokens instead of 1 for 1 pkp (Since I have a pk shop 2 that uses the FoG tokens) [IMG]http://i.imgur.com/jKdHTw6.png[/IMG] com>rs>game>player>dialouges Mandrith.java Find this: [CODE] case 4:[/CODE] Replace all from Case 4: to case 5 with this: [CODE] case 4: switch (componentId) { case OPTION_1: int givenPoints = 10; givenPoints = player.getInventory().getNumerOf(12852); player.setPkPoints(player.getPkPoints() + givenPoints/[COLOR="#FF0000"]10[/COLOR]); player.getInventory().deleteItem(12852, givenPoints); if (givenPoints != 0) { sendDialogue("You've exchanged " + givenPoints + " pk tokens for " + givenPoints/10 + " points."); if (givenPoints < 10) { player.getPackets().sendGameMessage("You need atleast 10 tokens to exchange for a pk point."); return; } } else { sendDialogue("You don't have any pk tokens to exchange for points."); } stage = 6; break; case OPTION_2: end(); break; } break;[/CODE] Where it shows 10, change it to your value you want. [/CENTER]
-
I'm trying to add p-ring for admins+ but, When I go to change the stats for pring and run itempacker, it makes every other item 0 stats, how to fix it from doing that?