

DruggedCamels
Members-
Posts
92 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
Top List
Everything posted by DruggedCamels
-
Thanks
- 123 replies
-
- moparscape
- 30/3/2017
-
(and 2 more)
Tagged with:
-
Thanks for sharing, But Dead link
-
FuryPS Base (Frontier) Source & Client Download
DruggedCamels replied to Oak Tree's topic in Other (377-742)
Pretty cool looking -
popular Zenyte RSPS w/mobile, website released - an OSRS Master Piece
DruggedCamels replied to Jack's topic in OSRS
Pretty interesting to say the least -
RuneScape Original 317 RSPS Cache Download
DruggedCamels replied to RuneArchive's topic in Deob, Cache & Resources
Pretty interesting I want too see what's in this if it's the original it's all dats -
Welcome and be safe not everyone is here for fun. Just like all other things online.
-
Drugscape and cheatskape yeah I'm an oldie but they where the best.
-
The links dead
-
After posting the links dead and this is an OSRS based cache not the original 377 if you are loading 85. Still would have liked to see the package though.
-
Glad to be here, Also hi Administrator not many forums have the staff commenting that's nice to see.
-
Free Allatori Obfuscator (way better alternative to Proguard)
DruggedCamels replied to
Jire's topic in RSPS Tools Downloads
Leave it up to Jire to have the fun stuff, Also i assume you are Jire originally from Moparscape? -
Lets home the link is still valid and guess what guys it is.
-
Okay Curiosity has me i hope the stuff still is visable after the comment
-
Assuming your source is compatable with Java 13 you could use enhanced Switch as shown below and if your using java 17 LTS you could move to using Switch Expressions they are very beautiful even more so if you are using Arrays with named types. Fun fact for anyone that is Beginner to Intermediate with the Java Programming Language did you know that Switch Cases are typically faster once compiled into byte code assuming you are using java conventions and using a modern JVM similar to Java 17. Just using one or two if statements will be faster than using Switch or Switch Expressions but if you look at most Server Applications they are riddled with if statements paired with ugly outdated and depressingly complex for a simple task. Meet Easier public boolean isDemon() { switch (Defender.npcType) { case 1531, 3134, 2006, 2026, 7244, 1432, 415, 7410, 135, 3133, 484, 1619, 7276, 3138, 7397, 7398, 11, 22978 -> { //Dragon Hunter Lance if (attacker.lastWeaponUsed == 22978 && defender.isDragon()) { damage *= 1.2; accuracy *= 1.2; } } } The First Part public boolean isDemon() { return switch (npcType) { case 1531, 3134, 2006, 2026, 7244, 1432, 415, 7410, 135, 3133, 484, 1619, 7276, 3138, 7397, 7398, 11 -> true; default -> false; }; } This assumes you have added anything useful yet here is the first switch statement switch (Defender.npcType) { case 1531: case 3134: case 2006: case 2026: case 7244: case 1432: case 415: case 7410: case 135: case 3133: case 484: case 1619: case 7276: case 3138: case 7397: case 7398: case 11: case 2978: { //Dragon Hunter Lance if (attacker.lastWeaponUsed == 22978 && defender.isDragon()) { damage *= 1.2; accuracy *= 1.2; } } return true; } return false; } yes this works just fine but its freaking ugly also not using break; or return; on each case also slows down the byte code optimizations as it skips and moves threw each case.
-
I find this layout to be very appealing.
-
Pretty cool i don't think i will use it but again collecting and archiving.
-
Hmm i am assuming you mean the theme? sure ill post
-
Oh do i love collecting free stuff based on rsps, then updating it as a hobby.
-
I would love to have this in my collection, and yes the link is working
-
This explains why the original store hated me i knew i needed to update it but PHP 7.2 is nice most PHP Software is moving to 7.4 and then keeping updated with the 8.x i think the latest being 8.2 at the moment. Kinda important but you should know your link has died? Would you update it?
-
I was having trouble understanding what the site even was googled it and found out. Someone likes ripping random websites don't we I mean i keep a very documented archive of old 317 source code broken down by class name, handler, time created, time rewritten, and so on. We all got hobbies 😛
-
FIXED: Ely, RuneX, Xeros, Zeah.GG, Boomscape, Exora Websites
DruggedCamels replied to Austen's topic in RSPS WEB Downloads
Yet another amazing share on this forum, I should have joined RuneSuite before now. -
ApacheNick Complete Package + Web Shop
DruggedCamels replied to Bananastreet's topic in RSPS WEB Downloads
UPDATE: yes still downloadable threw media fire Hopefully these are still downloadable. -
UPDATE: Yes everything is here but some of the PHP Source code needs updated along with the server sided source code some of its pretty rough around the edges. I hope most of this is still here seeing its offline now and Fox2007 is no more?