Thread: Mystikkal: Non-P2W, Primarily Self-Sufficient, Slow XP (dedication server)

Results 1 to 8 of 8
  1. #1 Mystikkal: Non-P2W, Primarily Self-Sufficient, Slow XP (dedication server) 
    Registered Member
    Join Date
    Mar 2017
    Posts
    1
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    So, I took a long break from programming and this is actually my first ever RuneScape server. Still super early in development but I want the server to grow with the small community I imagine it to have. Since I'm new to the RSPS scene, I wouldn't expect this is be THE BEST SERVER EVER (like everyone advertises their server to be..lol)

    Something to keep in mind is I started developing this to get better at coding and really just to have fun. If you think it's shit, it doesn't bother me. Think what ya want; I don't plan on making this server popular.

    Before I move on, I want to give a shoutout to poanizer (I believe that's his name) as I developed the server off Extinction. Here are the changes I've made from Extiction to Mystikkal (as well as some general features I guess):

    > Added ;;task command to display your slayer task in the chat (no NPC dialogue like extinction had; it was annoying to me.)

    > Added if-statements to check your slayer level to assign tasks that you are high enough to perform (when I started the source, you could be level 1 slayer and get an abby demon task. Fixed C: )

    > Max skill level is 120 instead of 99. (Max cape is all 99s, completionist cape is all 120s)

    > There are 20 working skills as I am not a fan of dung, const, farm, and hunt but if people REALLY want me to program them, I probably will. (Max total is 2400 which is satisfying to look at.)

    > Modified weapon speeds and stats

    > Added ;;dropguide command to display drops and their percentage rate

    > Primarily self-sufficient server (no shops except skill capes and hoods/max cape/comp cape.) You can still trade with other players, however.

    > You loose items on death (this wasn't in Extinction and I feel losing items on death is necessary so there's no type of inflation of items.)

    > Mix and match drops that you probably wouldn't expect. (Servers I play tend to have the same bosses drop the same shit so I changed it up a bit, you know?)

    Here's a snippet of my code from ;;dropguide to show you drops and percentage rates:

    Code:
    player.getPackets().sendIComponentText(275, 2, " --- Drop Guide ---");
    			
    			player.getPackets().sendIComponentText(275, 17, "--- Rock Crabs  ---");
    			player.getPackets().sendIComponentText(275, 18, "Necessary herbs to tain herblore  ---------- 40% Chance (for all herbs)");
    			player.getPackets().sendIComponentText(275, 19, "Nearly all gems for crafting ---------- 40% Chance");
    			player.getPackets().sendIComponentText(275, 20, "Necessary herblore ingredients to train herblore ---------- 40% Chance");
    			player.getPackets().sendIComponentText(275, 21, "Fishing Bait ---------- 75% Chance");
    			player.getPackets().sendIComponentText(275, 22, "Green, Blue, and Red Dragonleather ---------- 30% Chance");
    			
    			player.getPackets().sendIComponentText(275, 24, "--- Banshees ---");
    			player.getPackets().sendIComponentText(275, 25, "Mystic Armour ---------- 35% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 27, "--- Infernal Mage ---");			
    			player.getPackets().sendIComponentText(275, 28, "Infinity Armour ---------- 15% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 30, "--- Barrows Drops ---");			
    			player.getPackets().sendIComponentText(275, 31, "All barrows drops (Dh, ahrim, etc.) ---------- 1.5% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 33, "--- Ganodermic Beast (Polypore Dung) ---");			
    			player.getPackets().sendIComponentText(275, 34, "Full Slayer Helm ---------- 0.1% Chance");
    			player.getPackets().sendIComponentText(275, 35, "Chaotic Rapier, Kiteshield, Crossbow ---------- 0.08% Chance");
    			player.getPackets().sendIComponentText(275, 36, "Torva Legs, Pernix Legs, Virtus Bottom ---------- 0.07% Chance");
    			
    			player.getPackets().sendIComponentText(275, 38, "--- Abyssal Demons ---");
    			player.getPackets().sendIComponentText(275, 39, "Abyssal Whip ---------- 7% Chance");
    			player.getPackets().sendIComponentText(275, 40, "Abyssal Vine Whip ---------- 3.5% Chance");
    			
    			player.getPackets().sendIComponentText(275, 42, "--- King Black Dragon ---");
    			player.getPackets().sendIComponentText(275, 43, "Dragon Claws ---------- 1.5% Chance");
    			player.getPackets().sendIComponentText(275, 44, "Full Dragon Armour ---------- 7% Chance (per piece)");
    			player.getPackets().sendIComponentText(275, 45, "Dragonfire Shield ---------- 4% Chance");
    			player.getPackets().sendIComponentText(275, 46, "Dark Bow ---------- 7% Chance");
    			player.getPackets().sendIComponentText(275, 47, "Dragon Arrows/Bolts (10) ---------- 30% Chance");
    			player.getPackets().sendIComponentText(275, 48, "Dragon Defender ---------- 7% Chance");
    			player.getPackets().sendIComponentText(275, 49, "Dragon Dagger ---------- 7% Chance");
    			player.getPackets().sendIComponentText(275, 50, "Dragon Hatchet ---------- 7% Chance");
    			player.getPackets().sendIComponentText(275, 51, "Dragon Scimitar ---------- 20% Chance");
    			player.getPackets().sendIComponentText(275, 52, "Black Dragonhide Armour ---------- 45% Chance (per piece)");
    			player.getPackets().sendIComponentText(275, 53, "Royal Dragonhide Armour ---------- 20% Chance (per piece)");
    			player.getPackets().sendIComponentText(275, 54, "Dragon Pickaxe ---------- 7% Chance");
    			
    			player.getPackets().sendIComponentText(275, 56, "--- Corporeal Beast ---");
    			player.getPackets().sendIComponentText(275, 57, "Elysian Spirit Shield ---------- 0.8% Chance");
    			player.getPackets().sendIComponentText(275, 58, "Full Torva/Pernix/Virtus ---------- 0.3% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 60, "--- Skeletal Wyverns ---");
    			player.getPackets().sendIComponentText(275, 61, "Vesta's Longsword ---------- 1.6% Chance");
    			player.getPackets().sendIComponentText(275, 62, "Full Statius ---------- 0.8% Chance (per piece)");
    			player.getPackets().sendIComponentText(275, 63, "Full Armadyl ---------- 0.6% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 65, "--- Frost Dragons ---");
    			player.getPackets().sendIComponentText(275, 66, "Steadfast/Glaiven/Ragefire Boots ---------- 2% Chance");
    			player.getPackets().sendIComponentText(275, 67, "Full Gold-Trimmed Dragon Armour ---------- 3% Chance");
    			player.getPackets().sendIComponentText(275, 68, "Dragonfire Shield ---------- 2.5% Chance");
    			player.getPackets().sendIComponentText(275, 69, "Torva/Pernix/Virtus Helm/Hood ---------- 0.07% Chance");
    			player.getPackets().sendIComponentText(275, 70, "Dragon Arrows/Bolts (10) ---------- 30% Chance");
    			player.getPackets().sendIComponentText(275, 71, "Dragon Scimitar ---------- 15% Chance");
    			player.getPackets().sendIComponentText(275, 72, "Black Dragonhide Armour ---------- 15% Chance (per piece)");
    			
    			player.getPackets().sendIComponentText(275, 74, "--- Bandos (General Graardor) ---");
    			player.getPackets().sendIComponentText(275, 75, "Bandos Chestplate/Tassets ---------- 0.4% Chance");
    			player.getPackets().sendIComponentText(275, 76, "Saradomin/Bandos/Zamorak Godsword ---------- 0.8% Chance");
    			player.getPackets().sendIComponentText(275, 77, "Armadyl Godsword ---------- 0.01% Chance");
    			player.getPackets().sendIComponentText(275, 78, "Torva/Pernix/Virtus Body ---------- 0.08% Chance");
    			player.getPackets().sendIComponentText(275, 79, "Zaryte Bow ---------- 0.1% Chance");
    Side note: The AGS is very powerful (not TOO powerful, though), hence why the drop rate is massively low.

    > 120 capes give better bonuses than 99 capes (120 capes give attack bonuses while 99s do not; 120 capes give better defence bonuses as well.)

    > Fully customisable max and comp cape (I don't take creds, just stating a feature)

    Side note #2: 120 capes are just the trimmed skill capes for now. If I feel like adding the models later, I will.

    > Added barbarian and wild course to the teleports from max as well as boss/monster teleports such as corp, bandos, KBD, frosts , Jad, Gano, Wyvern, Taverly, and barrows.

    > You cannot teleport out of combat (for example, you can't use ;;home, ;;pvp, ;;multi, or ;;train while in combat.) I see a lot of servers lacking this and you can just save yourself which is like cheating.

    > Slow XP rate: This server was intended to be for dedication; lots of hours of playtime.

    > Non-Pay-to-Win: I will NOT accept any donations. I do not want to promote pay to win as I intend this to be a primarily self-sufficient server. You get the drops yourself or you buy items from players who got drops themselves.

    > Removed Bandos' minions (they were really annoying. Also because I'm bad LOL)

    > 5,000 bank slots as well as a bank search (I don't believe you will be able to fill this up. Have lots of space, my friends C: ) [Bank search was already in ext; I'm not taking credit]


    What I plan to do in the future:

    > More bosses and more items, of course

    > Cosmetic rares (santa, phats, scythe, etc. Yanno, the rich kid stuff...except you must get them from drops only ;) )

    > Possibly achievements, I dunno

    > Whatever else I come up with or whatever is suggested. It usually hits me randomly in the day.

    Screenshots:

    Attached image

    Attached image

    Attached image

    Attached image

    Attached image

    Just to kind of show what the ;;task command does. For very quick check on your task :)

    Attached image



    That's about it. If you enjoy the server, I'm glad my minor progress towards a larger serer pleases you. If you hate it, well, that's not my problem.

    Client (JAR file): Mystikkal Client

    Website (for changelog and sending me suggestions directly): Mystikkal RSPS
    Reply With Quote  
     

  2. #2  
    Registered Member

    Join Date
    Oct 2011
    Posts
    2,084
    Thanks given
    0
    Thanks received
    1,043
    Rep Power
    3608
    gl!

    is that notepad++.
    Reply With Quote  
     

  3. #3  
    Ask me how I'm doing

    .NF.'s Avatar
    Join Date
    Aug 2015
    Age
    30
    Posts
    2,174
    Thanks given
    293
    Thanks received
    619
    Rep Power
    567
    best of luck.
    Attached image
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Jul 2012
    Posts
    34
    Thanks given
    21
    Thanks received
    4
    Rep Power
    13
    I can't play? It just says "Checking for updates - 1%" and sits there.
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    Apr 2011
    Posts
    37
    Thanks given
    4
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by Marty1 View Post
    I can't play? It just says "Checking for updates - 1%" and sits there.
    Same with me.
    Attached image
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Mar 2017
    Posts
    5
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    guys i have rsps 718 and i made weapon how i can use it in the game can anyone help?
    Reply With Quote  
     

  7. #7  
    Registered Member 1m6n29s9gmxh's Avatar
    Join Date
    Jan 2017
    Posts
    430
    Thanks given
    32
    Thanks received
    100
    Rep Power
    40
    Wrong section
    Spoiler for Insanity V2 Coders be like ::
    Attached image
    Attached image
    Reply With Quote  
     

  8. #8  
    G Herbo #NLMB


    Join Date
    Jul 2014
    Age
    27
    Posts
    1,445
    Thanks given
    236
    Thanks received
    236
    Rep Power
    84
    What my man above said, and more interesting media
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Alos - For the players, by the players [NON-P2W]
    By Blaketon in forum Advertise
    Replies: 122
    Last Post: 02-23-2017, 04:26 PM
  2. Replies: 9
    Last Post: 06-09-2015, 06:32 PM
  3. Replies: 22
    Last Post: 04-25-2015, 06:13 PM
  4. Ultimatum V2 || Self Sufficient Eco || BETA
    By Edimmu in forum Advertise
    Replies: 2
    Last Post: 10-03-2014, 01:14 AM
  5. Slow XP rates
    By James_Lee_Chang in forum Requests
    Replies: 5
    Last Post: 04-06-2012, 04:06 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •