RECENT NEWS
📢 𝟑𝟎% Discount for all ads only this month ❄️

Feather 718/742 - Release ✅✅✅

Secret Agent
power_settings_new
Seen 2 years ago
Mithril Warrior (20/30)
Mithril Warrior
0
0
0
20 Posts
Posts
0
Warning level
0
Likes
0
Dislikes
Joined: 2022-04-24

here isn't a whole lot done to this, but it was the start of a remake that I continued for a while after Jordan quit.
All I can say is just look around the source and do whatever has to be done. No, it doesn't have to continue as a remake but enjoy..
There is an anti-leech, and yes it's stated in this thread somewhere. If you can't fix it, you don't need the source.

Project thread: Feather - RuneScape Remake

Feather

Basic Information
- Original Matrix release.
- June 2012 based Remake
- Full economy


Developers Log:

Code:
- Removing useless NPC's.
- Began tutorial.
- Finished the Lumbridge Cook for this one. More advanced than the last.
- Unlocked Quest Tab.
- Added Item Removing from Equipment Tab.
- Added full player design.
- Task System Configs.
- Quest Tab Configs.
- Finished player design.
- Completed new levelup configs.
- Finished our first quest, "Cooks Assistant".
- Added rest of quest. The wheat removes when picked and respawns after a set time is reached.
- Added a runscript so the interface doesnt show 300 lines.
- Worked on firemaking. Still need to set levels for certain logs.
- Messed with woodcutting. Still need to set levels for tree's.
- Started border guards.
- Random dialogue for Miss Schism.
- Added cow milking.
- Making flour in the mill.
- Completed money pouch.
- Started fishing guild.
- Cleaned up some dialogue.
- Finished Lumbridge Sage dialogue. Nearly 100%.
- Finished Doomsayer. Now I need to start on the warning toggling.
- Completed Grand Exchange tutor.
- Finished Father Aereck.
- Completed cache, now 742.
- Began item lending.
- Worked some more on woodcutting, added inferno adze. 
- Finished toy horsey's.
- Finished shooting stars.
- Completed item lending.
- Rewrote a few dialogues.
- Began clue scrolls. Over 20 scrolls.
Al Kharid
- Camels (Random dialogue each time talked to)
Port Sarim
- Brian
- Gerrant
- Grum
- Wydin
Lumbridge
- Doomsayer
- Father Aereck
- Hans
Varrock
- Aubury (Also teleports you to mine rune essence)
- Iffie (The old lady who sells you costumes next to Thessalia)
- Lowe
- Zaff
Spoiler for Media / Content:

Click here to view the original image of 766x530px.




Click here to view the original image of 767x530px.




Click here to view the original image of 766x526px.




Click here to view the original image of 768x530px.



Click here to view the original image of 766x529px.




Click here to view the original image of 766x528px.







Click here to view the original image of 884x605px.




Click here to view the original image of 882x605px.





Click here to view the original image of 777x538px.



Click here to view the original image of 779x538px.



Click here to view the original image of 777x539px.



Click here to view the original image of 776x537px.



Click here to view the original image of 1279x961px.



Click here to view the original image of 1279x963px.



Click here to view the original image of 805x603px.










Click here to view the original image of 778x539px.

To fix your dev console for admins to spawn and use commands, replace your COMMANDS_PACKET with this:

Code:
		} else if (packetId == COMMANDS_PACKET) {
			if (!player.isRunning()) {
				return;
			}
			boolean clientCommand = stream.readUnsignedByte() == 1;
			boolean unknown = stream.readUnsignedByte() == 1;
			String command = stream.readString();
			if (unknown) {
				Logger.log("Client", "Processing client command : "+command
						+ " player: "+player.getDisplayName());
			}
			if (!Commands.processCommand(player, command, true, clientCommand));
		}

For the client go here: http://www.rune-server.ee/runescape...t-release.html
Feather 718/742 source: Download without cache -- here.
742 cache: https://www.mediafire.com/?5fl1g9ls4u16cdk

Here is the compiler for anyone who absolutely needs it. Thanks to Loyalty_ for this.

Spoiler for Compiler:
@Echo off
title Feather 742 Compiler
echo compiling...
"C:\Program Files\Java\jdk1.7.0_45\bin\javac.exe" -d bin -cp data/libs/*; -sourcepath src src/com/feather/*.java src/com/feather/cache/parser/*.java src/com/feather/content/utils/*.java src/com/feather/cores/*.java src/com/feather/game/*.java src/com/feather/game/item/*.java src/com/feather/game/minigames/*.java src/com/feather/game/minigames/clanwars/*.java src/com/feather/game/minigames/creations/*.java src/com/feather/game/minigames/duel/*.java src/com/feather/game/minigames/pest/*.java src/com/feather/game/npc/*.java src/com/feather/game/npc/combat/*.java src/com/feather/cache/*.java src/com/feather/tools/*.java src/com/feather/io/*.java src/com/feather/net/*.java src/com/feather/net/decoders/*.java src/com/feather/net/decoders/handlers/*.java src/com/feather/net/encoders/*.java src/com/feather/utils/huffman/*.java src/com/feather/game/worldlist/*.java src/com/feather/game/tasks/*.java src/com/feather/game/player/dialogues/*.java src/com/feather/game/player/dialogues/administrator/*.java src/com/feather/game/player/dialogues/alkharid/*.java src/com/feather/game/player/dialogues/catherby/*.java src/com/feather/game/player/dialogues/varrock/*.java src/com/feather/game/player/dialogues/tutorial/*.java src/com/feather/game/player/dialogues/quests/*.java src/com/feather/game/player/dialogues/portsarim/*.java src/com/feather/game/player/dialogues/lumbridge/*.java src/com/feather/game/player/dialogues/falador/*.java src/com/feather/game/player/dialogues/draynor/*.java src/com/feather/game/player/cutscenes/actions/*.java src/com/feather/game/player/cutscenes/*.java src/com/feather/game/player/controlers/*.java src/com/feather/game/player/controlers/pestcontrol/*.java src/com/feather/game/player/controlers/fightpits/*.java src/com/feather/game/player/controlers/events/*.java src/com/feather/game/player/content/agility/*.java src/com/feather/game/player/content/pet/*.java src/com/feather/game/player/content/dungeons/*.java src/com/feather/game/player/content/construction/*.java src/com/feather/game/player/content/*.java src/com/feather/game/item/*.java src/com/feather/game/npc/sorgar/*.java src/com/feather/game/npc/slayer/*.java src/com/feather/game/npc/qbd/*.java src/com/feather/game/npc/pet/*.java src/com/feather/game/npc/others/*.java src/com/feather/game/npc/nomad/*.java src/com/feather/game/npc/kalph/*.java src/com/feather/game/npc/godwars/*.java src/com/feather/game/npc/godwars/zaros/*.java src/com/feather/game/npc/godwars/zammorak/*.java src/com/feather/game/npc/godwars/saradomin/*.java src/com/feather/game/npc/godwars/bandos/*.java src/com/feather/game/npc/godwars/armadyl/*.java src/com/feather/game/npc/fightpits/*.java src/com/feather/game/npc/fightkiln/*.java src/com/feather/game/npc/fightcaves/*.java src/com/feather/game/npc/familiar/*.java src/com/feather/game/npc/dragons/*.java src/com/feather/game/npc/corp/*.java src/com/feather/game/npc/combat/*.java src/com/feather/game/npc/combat/impl/*.java
echo Finished compiling.
pause

 

I do not give permission to have this released anywhere else!
00
  • Like
Reactions: