<?xml version="1.0"?>
<rss version="2.0"><channel><title>OSRS Latest Topics</title><link>https://runesuite.io/forum/299-osrs/</link><description>OSRS Latest Topics</description><language>en</language><item><title>RSPSi ~ Beginners Guide</title><link>https://runesuite.io/topic/9573-rspsi-~-beginners-guide/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p style="text-align:center;"><strong>Welcome to my beginners guide for RSPSi!</strong></p><p style="text-align:center;"><strong>I did not make any of the content I am describing here, I am simply trying to make getting started on RSPSi easier to understand for new members to the community.</strong></p><p>I started digging into the RSPS scene about a month ago and have had the opportunity to look into many of the tools available to people within the community. One of these amazing tools is a Map Editor that is free to use called, RSPSi. The purpose behind this guide will be to help individuals who are interested in starting to map for RSPS's, but may be having issues getting the tool to launch and once the tool is launched they may struggle learning the UI. Today, I hope to make it as simple of a process as possible for you to start creating new maps!</p><p style="text-align:center;"><strong>For the purpose of this tutorial, I will be referring to the Zenyte Source for any examples.</strong></p><p> </p><p><strong>What is RSPSi?</strong></p><ul><li><p>RSPSi is a map editor for Runescape Private Servers.</p></li><li><p>Here is an invite link to the official discord: [Hidden Content]</p></li></ul><p> </p><p><strong>How can I download RSPSi?</strong></p><ul><li><p>RSPSi can be downloaded directly from the GitHub link: [Hidden Content]</p></li><li><p><s>You can also download my files from here:  </s>Link Removed</p><ul><li><p>My files are named CErverMapEditor, however, there is no difference it was simply the way I have it named (had like 10 RSPSi on my desktop, this is the one that worked.)</p></li><li><p>[Hidden Content]</p></li><li><p>I have also included a copy of the required JRE.</p></li></ul></li></ul><p> </p><p><strong>How can I run RSPSi?</strong></p><ul><li><p>RSPSi is able to work with multiple clients, for example; Zenyte, Necrotic, etc.</p></li><li><p>Find out the plugin that will work for your source, for Zenyte, we will be using OSRSPlugin.</p><ul><li><p>Move the plugin you will be using from inactive to active, only one should be active at a time.</p></li></ul></li><li><p>Make sure that you have JRE 1.8 installed in /Program Files/Java/JRE_1.8 ([Hidden Content])</p></li><li><p>Create a run.bat file to run editor.jar.</p><ul><li><p>"C:\Program Files\Java\jre-1.8\bin\java.exe" -jar editor.jar</p></li></ul></li><li><p>Run the file!</p></li></ul><p> </p><p><strong>How to start working on a project?</strong></p><ul><li><p>Once you've got RSPSi to run, we will need to load a cache and XETA keys, you can find some here: [Hidden Content] </p><ul><li><p>For Zenyte (Rev 179), I used an OSRS Cache - Build 187 for my own home area ([Hidden Content])</p></li></ul></li><li><p>Once you have successfully completed this, you will see white text that says "Please select a map to load..."</p><ul><li><p>We have a couple options here, we can load through .dat/.gz files, .pack files or by using a HASH.</p><ul><li><p>.dat files are typically structured like MAPNAME_l.dat + MAPNAME_m.dat</p></li><li><p>.pack files will be a singular file, MAPNAME.pack</p></li><li><p>HASH is the default map based on the build, you can locate the hash for the region you want to edit by looking here: [Hidden Content]</p></li></ul></li></ul></li><li><p>Begin editing your map! </p></li></ul><p><img src="https://gyazo.com/9513f3f123f5482a3f62801690d10d0a.png" alt="spacer.png" class="ipsRichText__align--block" width="556" height="406" loading="lazy"><img src="https://gyazo.com/cd2cb476b52e6640b0a15efcfaae36a2.png" alt="spacer.png" class="ipsRichText__align--block" width="1000" height="531" loading="lazy"></p><p><img src="https://gyazo.com/fbf267b67e0640d08c4e8404e48184f7.png" alt="spacer.png" class="ipsRichText__align--block" width="1000" height="532" loading="lazy"></p><p style="text-align:center;"> </p><p style="text-align:center;"> </p><p style="text-align:center;"><strong>~ MORE INFORMATION TO COME ~ </strong></p><p> </p><p> </p></body></html>
]]></description><guid isPermaLink="false">9573</guid><pubDate>Wed, 15 Nov 2023 00:23:58 +0000</pubDate></item><item><title>Reason Simple Quest System</title><link>https://runesuite.io/topic/10560-reason-simple-quest-system/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><h1>Quest System — Complete Guide</h1><hr><h2>Overview</h2><p>The quest system allows you to create custom quests with NPC dialogue, requirements, stage tracking, and rewards. Player progress is saved automatically via MongoDB.</p><hr><h2>Part 1 — Installation</h2><h3>File Structure</h3><p>Create these folders and files in your project:</p>[Hidden Content]<hr><h3>Step 1 — Register Quest Module</h3><p><strong>File:</strong> <code>StaticInit.java</code></p><p>Search for:</p>[Hidden Content]<p>Add directly after:</p>[Hidden Content]<hr><h3>Step 2 — Register NPC Actions</h3><p><strong>File:</strong> <code>StaticInit.java</code></p><p>Search for:</p>[Hidden Content]<p>Add directly after:</p>[Hidden Content]<hr><h3>Step 3 — Add Quest Storage to Player</h3><p><strong>File:</strong> <code>PlayerAttributes.java</code></p><p>Search for:</p>[Hidden Content]<p>Add directly after:</p>[Hidden Content]<p>Search for:</p>[Hidden Content]<p>Add directly after:</p>[Hidden Content]<hr><h3>Step 4 — Add Quest Command</h3><p><strong>File:</strong> <code>CommandHandlerRegular.java</code></p><p>Add imports at the top with other imports:</p>[Hidden Content]<p>Add this case inside the <code>switch (command)</code> block:</p>[Hidden Content]<hr><h3>Step 5 — Rebuild</h3>[Hidden Content]<hr><h3>Step 6 — Test in Game</h3>[Hidden Content]<hr><h2>Part 2 — Adding a New Quest</h2><ol><li><p>Create <code>YourQuest.java</code> in <code>quest/impl/</code> extending <code>Quest</code></p></li><li><p>Override all required methods (see template below)</p></li><li><p>Add to <code>Module.java</code>:</p></li></ol>[Hidden Content]<ol start="4"><li><p>Create NPC action file in <code>npc/actions/</code></p></li><li><p>Register NPC in <code>StaticInit.java</code></p></li><li><p>Rebuild</p></li></ol><hr><h2>Part 3 — Full File Reference</h2><hr><h3>Quest.java</h3><p><code>kronos-server/src/main/java/io/ruin/model/quest/Quest.java</code></p>[Hidden Content]<hr><h3>QuestManager.java</h3><p><code>kronos-server/src/main/java/io/ruin/model/quest/QuestManager.java</code></p>[Hidden Content]<hr><h3>QuestStage.java</h3><p><code>kronos-server/src/main/java/io/ruin/model/quest/QuestStage.java</code></p>[Hidden Content]<hr><h3>Module.java</h3><p><code>kronos-server/src/main/java/io/ruin/model/quest/module/Module.java</code></p>[Hidden Content]<hr><h3>ASimpleErrand.java</h3><p><code>kronos-server/src/main/java/io/ruin/model/quest/impl/ASimpleErrand.java</code></p>[Hidden Content]<hr><h2>Part 4 — Quest Template</h2><p>Use this as a starting point for every new quest:</p>[Hidden Content]</body></html>
]]></description><guid isPermaLink="false">10560</guid><pubDate>Sun, 24 May 2026 17:18:14 +0000</pubDate></item><item><title>Wanted to give it a try?</title><link>https://runesuite.io/topic/9142-wanted-to-give-it-a-try/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	im a new programer looking for something to kinda mess with and i love runescape so this seems like the perfect route so i joined this site and before i can download anything <img alt="XD" data-emoticon="" src="https://runesuite.io/uploads/emoticons/cd.gif" title="XD" loading="lazy">   i need 10 post? so heres one i guess if u got any 317 blank source and client thats were id like to start or if u have any tips or info that would be great!
</p>
</body></html>
]]></description><guid isPermaLink="false">9142</guid><pubDate>Sat, 08 Jul 2023 21:13:40 +0000</pubDate></item><item><title>Looking for dev!</title><link>https://runesuite.io/topic/8981-looking-for-dev/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	Tryin to start something great please get ahold of my discord ( Diddly618#6362 ) 
</p>
</body></html>
]]></description><guid isPermaLink="false">8981</guid><pubDate>Fri, 26 May 2023 04:13:43 +0000</pubDate></item><item><title>How do I start my own OSRS RSPS</title><link>https://runesuite.io/topic/7454-how-do-i-start-my-own-osrs-rsps/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	It contains balista and Dragon Hammer as well.<br>
	Is there an Tutorial on Making an OSRS RSPS and Adding Custom items to the RSPS as well?
</p>
</body></html>
]]></description><guid isPermaLink="false">7454</guid><pubDate>Sat, 19 Mar 2022 05:53:15 +0000</pubDate></item><item><title>Looking for modeller</title><link>https://runesuite.io/topic/8899-looking-for-modeller/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	Add me if your able to create high quality models for a rsps
</p>
</body></html>
]]></description><guid isPermaLink="false">8899</guid><pubDate>Tue, 02 May 2023 12:40:53 +0000</pubDate></item><item><title>looking for a tut coder</title><link>https://runesuite.io/topic/8931-looking-for-a-tut-coder/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	pls
</p>
</body></html>
]]></description><guid isPermaLink="false">8931</guid><pubDate>Sun, 07 May 2023 13:46:48 +0000</pubDate></item><item><title>help osrsps</title><link>https://runesuite.io/topic/7511-help-osrsps/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	im new to this thanks 
</p>
</body></html>
]]></description><guid isPermaLink="false">7511</guid><pubDate>Mon, 11 Apr 2022 23:16:45 +0000</pubDate></item><item><title>looking for dev</title><link>https://runesuite.io/topic/8210-looking-for-dev/</link><description><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><p>
	add  discord od #0995
</p>
</body></html>
]]></description><guid isPermaLink="false">8210</guid><pubDate>Tue, 22 Nov 2022 01:06:07 +0000</pubDate></item></channel></rss>
