Jump to content

Kalfka

Members
  • Content Count

    32
  • Joined

  • Last visited

  • Days Won

    2

Kalfka last won the day on April 2

Kalfka had the most liked content!

Community Reputation

8 Neutral

1 Follower

About Kalfka

  • Rank
    Member
  • Birthday 11/11/1994

Recent Profile Visitors

905 profile views
  1. Kalfka

    Neonhell's server support application.

    About time! Neonhell is not only supremely knowledgeable, passionate, and dedicated to the game, he also has an unparalleled ability to create communities that keep SpawnPK going! Everyone knows this man as the brains behind Deep Wild PK CC's like P0stal. His natural call as a leader, true friend, and welcoming person are all qualities (among more) which I cannot wait to see as a helper to SpawnPK. Neon, it has been an absolute privilege and pleasure to know you all these years, and I am so excited to see this step forward in an application to leadership! Much love, and appreciation for all you do for SPK, Kalfka
  2. Kalfka

    Master Loadout Repository

    SpawnPK Master Loadout Repository THIS FORUM POST IS INCOMPLETE: NONE OF THE LINKS WILL WORK-- Under construction 1. Locate your loadouts folder: On Windows: C:\Users\kalfka\.spawnpk-data On Mac: local disk/users/kalfka/.spawnpk-data 2. Upload to Google Drive or Forums Don't forget to rename the folder to get credit! The Google Forum link: https://docs.google.com/forms/d/e/1FAIpQLSfmzBOjlaqMscmjJv99BBLHAEVjWUzWGu1cypQy0OpyqooHYQ/viewform?usp=sf_link The Google Drive link: https://drive.google.com/drive/folders/1s3Mon6zBWX_pywqVOoBQwKwXiBiX3B_a?usp=sharing 3. Get the latest compiled version! Be careful to not download any suspicious files from unknown users. The latest version will be available ONLY on this forums post (version 1 is not compiled yet). Master Loadout Repository (V1.0): (available soon!)
  3. Kalfka

    Opulent's Introduction

    Welcome to the server! Feel free to add me in-game for questions or help -Kalfka
  4. Kalfka

    [11/28/21] Theatre of Blood Guide

    Topic # reserved 😉 Embed link for discord bot ... I apologize if I can't build this guide for at least another 6 months
  5. Kalfka

    [11/28/2021] Custom SPK Discord Bot

    module.exports = { name:'tobloadout', description: 'Embeds!', execute : function(message, args, Discord) { const embed = new Discord.MessageEmbed() .setColor('#b92124') .setTitle('Theatre of Blood') .setURL('https://spawnpk.net/forums/index.php?/topic/26343-official-spawnpk-guide-index/') .setDescription('Loadout ID: ') .setImage('https://media.discordapp.net/attachments/906401044160983040/906401064041971772/test.png') .setThumbnail('https://media.discordapp.net/attachments/906401044160983040/914667694115127316/tob_relic.png') .addFields( {name: 'Melee', value: 'n', inline: true}, {name: 'Range', value: 'n', inline: true}, {name: 'Magic', value: 'n', inline: true}, {name: 'Pets.', value: 'n', inline: true}, {name: 'Misc.', value: 'n', inline: true}, {name: 'Total', value: 'n', inline: true}, ) .setFooter('Next upgrade: n bags.'); message.channel.send({ embeds: [embed] }); } }
  6. Hey SPK, This post relates to a side project that I've been working on for the SPK Raids Fam Discord (server link below). We are a community for new players and veterans alike! So please consider joining if you are not part of the community already 🙂 I've been having trouble with my command handler in my main client.js file, specifically its ability to .execute specific commands that I've written. // ------- loadouts tob ------- // if (command === 'loadout' && args[0] === 'tob' && args[1] <= 500) { client.commands.get('tobtemplate').execute(message, args, Discord); } else if (command === 'loadout' && args[0] === 'tob' && args[1] <= 1000) { client.commands.get('tobloadout-1').execute(message, args, Discord); } else if (command === 'loadout' && args[0] === 'tob' && args[1] <= 1500) { client.commands.get('tobloadout-2').execute(message, args, Discord); // ------- loadouts cox ------- // } else if (command === 'loadout' && args[0] === 'cox' && args[1] <= 500) { client.commands.get('coxtemplate').execute(message, args, Discord); } else if (command === 'loadout' && args[0] === 'cox' && args[1] <= 1000) { client.commands.get('coxloadout-1').execute(message, args, Discord); } else if (command === 'loadout' && args[0] === 'cox' && args[1] <= 1500) { client.commands.get('coxloadout-2').execute(message, args, Discord); // ------- loadouts else ------- // } else if (command === 'loadout'&& !args.length) { message.channel.send('`Please specify a game mode and price!`'); } else if (command === 'loadout'&& args[0] === 'cox' && !args[1]) { message.channel.send('`Please specify a price!`'); } else if (command === 'loadout'&& args[0] === 'tob' && !args[1]) { message.channel.send('`Please specify a price!`'); The logic is pretty basic, but let me explain in English how it is set up to work. If you input a command: ?loadout tob 200 It should activate client.commands.get('tobtemplate').execute(message, args, Discord); (both 'tobtemplate.js' and 'tobloadout-1.js' are identical embeds) If you input a command: ?loadout tob 555 It should activate client.commands.get('tobloadout-1').execute(message, args, Discord); The only difference between the two inputs is which command is called (tobtemplate.js or tobloadout-1.js). Both tobtemplate.js and tobloadout-1.js are identical files besides their name, they are in the same location and everything, but only one of them works (tobtemplate). The command handler works just fine if each command is changed to either 'coxtemplate' or 'tobtemplate', so I believe the problem lies within the command .js files themselves... Here is what they look like inside: module.exports = { name:'tobloadout-1', description: "Embeds!", execute(message, args, Discord) { const tob0 = new Discord.MessageEmbed() .setColor('#b92124') .setTitle('Theatre of Blood') .setDescription('Loadout ID: 0') //.setAuthor('Theatre of Blood', 'https://media.discordapp.net/attachments/753805578362552462/906354324467224617/output-onlinegiftools.gif') .setImage('https://media.discordapp.net/attachments/906401044160983040/908615355126140978/tob_500.png') .setThumbnail('https://media.discordapp.net/attachments/906401044160983040/908590466591764531/verzik.gif') .addFields( {name: 'tekton_pet', value: '500', inline: true}, {name: 'slayer_helm_(i)', value: '35-70', inline: true}, {name: 'chaos_cloak', value: '10-50', inline: true}, {name: 'devout_boots', value: '50-100', inline: true}, {name: 'serachnis_cudgel', value: '35-150', inline: true}, {name: 'toxic_blowpipe', value: '30-75', inline: true}, {name: 'toxic_staff_of_the_dead', value: '10-50', inline: true}, {name: 'goliath_gloves', value: '22-35', inline: true}, {name: 'ancient_wyvern_shield', value: 'price', inline: true}, {name: 'vesta\'s_chainbody', value: 'price', inline: true}, {name: 'vesta\'s_plateskirt', value: 'price', inline: true}, {name: 'zuriel\'s_ropbe_top', value: 'price', inline: true}, {name: 'zuriel\'s_robe_bottom', value: 'price', inline: true}, {name: 'morrigan\'s_leather_body', value: 'price', inline: true}, {name: 'morrigan\'s_leather_chaps', value: 'price', inline: true}, {name: 'rune_pouch', value: '10-45', inline: true}, {name: 'statius\'s_warhammer', value: 'price', inline: true} ) .setFooter('Next upgrade: 500 bags.'); message.channel.send({ embeds: [tob0] }); } } All commands 'tobtemplate', 'tobloadout-1', 'tobloadout-2', 'coxtemplate', 'coxloadout-1', and 'coxloadout-2' are identical and have the above contents. They are all located in the same commands folder within my discord bot, so there is some higher level of confusion that I am not understanding... It should work, but instead I get the error code below: If you have any ideas of what could be wrong, send me a message in-game username: "Kalfka" or add me on discord "Kalfka#0083" and I would be happy to chat via voice to troubleshoot! It's taken a lot of trial and error to get the bot stable, as soon as I'm able to figure this problem out hopefully I'll be able to focus on gfx and embed layouts! And hopefully be live soon. LINK TO SPK RAIDS FAM DISCORD SERVER: https://discord.gg/UEVcsv8cFq Cheers, Kalfka also, if you are interested in ideas of how to implement any of these commands, here is a list! ?loadout [tob | cox] [cost] output: ?loadout returns incremental sugguestions. ex.) ?loadout tob 12000 includes item list, loadout image, prices, next upgrade at* ?item [itemid] output: ?item returns item stats on relevent raid gear items ex.) ?item ancient_ward includes item effects, applications (where to use them) ?droptable [tob | cox] output: ?droptable returns a simple image with list ex.) ?droptable tob includes item names and inventory icons ?droptable [tob | cox] [itemid] output: ?droptable with the [itemid] argument returns specific item stats ex.) ?droptable tob sanguinesti_staff includes item drop rate (GM), effects, stats, and applications ?droprates [tob | cox] [normal | ... | grandmasters] output: ?droprates returns a table of droprates per item ex.) ?droprates tob grandmasters includes grandmaster rates only as of now... but who knows the rest ?raidtime [tob | cox] [playercount] [normal | ... | grandmasters] output: ?raidtime will give you an approximation of raid durtation by difficulty ex.) ?raidtime tob 5 grandmasters ?raidcalc output: ?raidcalc returns the current gm-tob:gm-cox $/hr ratio ex.) ?raidcalc ?bossfight [vanguards | ... | verzik] ?rollchest [tob | cox] [normal | ... | grandmaster] - Link #broadcasts to #loot-flex channel - Link #updates - Link #giveaways - Link #killcount
  7. Kalfka

    Big Stacks YouTube Link

    +1 support!
  8. Kalfka

    [11/14/2021] Community Raids Suggestions

    added to main post, thank you!
  9. Community Raid Suggestions The following is an exhaustive list from conversations in the SPK Raids Fam discord community, 'raids fam' in-game cc, The official SPK discord #suggestions channel, and the #finished-sugguestions channel. Specific item effects & stats are in development. PLEASE post interesting effect ideas 🙂 NOTE: The topic will be open for 4-7 days of revision & comments before being officially submitted to our development team! 🔥 Rewards Holy & Sanguine ornament kit Blood Briolette & Dark Xerician Pendant Dawnbringer (i) Xerician Dye or Ornament kits Raid capes Common loot drop table revamp Rework on common loot to reflect the modern economy: Add wandering merchant items to Expert+ raid modes. Add grand crests to common loot drop table. Add superior revenant scrolls to common loot drop table. Add primal mystery chest to common loot drop table. Add Cursed mystery crates to common loot drop table. Misc. - Add lunar hide coif to 1,000+ kc raid mode - Bone crusher / essence crusher - Add frosty branch and blood reaper hilt as 1/10,000 drop rates to all game modes. Frosty branch in Chambers, and reaper hilt in Theatre of blood. Pets Add Mutadile pet - Overhead protection prayers have a 33% chance to block any damage type - +25% damage in mutadile lair Add Vanguard pet - Hits have a 1/5 chance to deal damage of a random damage type. - +25% damage in vanguard lair. Potential raid pet fuses: (Verzik + Vasa), (Bloat + Tekton), maybe something similar to Ultimate olm for ToB pets Mechanics Add Killcount to loot tracker for Chambers of Xeric on yell (52 kc) Loot tracker log in achievement interfaces for cumulative loot tracking by difficulty. Implement autocast remembering (at least outside of the Wilderness) "My reasoning is because it would make it more beginner-friendly for Raids or other PvM activities where Magic is used often. It would also change the meta from autocast staves to add more variety to the game in terms of magic, rather than, for example, Sanguinesti/Trident only at Theatre of Blood" - Iron Horse Any items dropped in raids should require a warning dialogue (excludes pet dropping) Fix Crestbearer damage boost (currently broken) Fix pathing & dead clicks Remove the message prompt when you enter the next room or barrier Fix bug in nylocas room. Damage from smaller nylocas can continue to hit you and kill you after the boss has spawned Disconnecting in raids makes you go to the start of the raid and not to home (Theatre of Blood) just incase it does happen. Add purple chest glow when you get a rare Fix the ToB raid menu description to be accurate at librarian Currently when you die in cox, you have to go through about 100 doors before you get back. Updates Include raid achievements in an all new Completionist 4 cape Raid token shop / raid points Biannual raids event similar to the mage arena or kharazi event with exclusives like dye or ornament kits Theatre of blood & Chambers of Xeric hotspot Raid leaderboard that displays: - 5 Players with highest kc for both CoX/ToB - 5 fastest solo raid times for each difficulty - 5 fastest group raid times for each difficulty Add difficulty mode to yell announcements. Ex.) Metal Raimon received a mystery chest (240 KC - M) m = master raid. n=normal a=adept e=expert m= master g=grandmaster Upgrades Introduce challenge modes A challenge mode can include time-limited raids, further damage reduction boons, or restricted items like in EdgePvP. A completed run adds an extra slot to the chest reward table, and gives the chance to receive Xerician Dye or Ornament kits. Alternatively, they could increase damage dealt on subsequent raids or within a window of time. Some sort of House/Construction item that boosts Raids (Drop Rate, Damage, etc) for a period of time like boss portals/blood slayer. Or even a 2x raids kc thing like blood slay so it's easier for people to unlock GM ToB Scale difficulty harsher by party size
  10. Kalfka

    Kalfka's Staff Application

    It's funny you mention that haha, I was just posting and checking in on various forum threads. Check out Despairs idea for ToB and leave a comment man, he's got some great ideas! Theatre of Blood updates. Much appreciated Scoobs, you're a ride or die for life man thanks for the support
  11. As we welcome more Grandmaster ToB raiders into the group, we are seeing the effects of item saturation across the game. I really like how you discuss the interaction between PvM activity and PvP weapons. I think this is a great pull into PvM for pkers and vice versa, particularly the Holy Ghrazi Rapier ( I would love to see that happen). I agree that raids content (specifically for ToB) has a huge potential right now, and there is a community invested and interested to see what updates are to come. The versatility of loot items is relevant here. I think it would be a wise idea to consider the effects of items across other activities in the game, and you have done that. Of course, I am always excited to see new ToB content so I support this all the way. Nice work, Despair! Kellatha, I really do hope any design of the Holy Sanguinesti Staff would be balanced with the smite cap and smite ability pets. It's so discouraging to be stacked to 0 prayer from near full. Also, with my experience when you have a 2-3 man team in GM-ToB, having a BRS really makes no difference to the amount of raids you can get done in 'x' amount of time. I agree the BRS is hugely disproportionate to it's cost, and really more of a prestige item.
  12. 1. Desired staff position: Helper 2. Your name (first name would suffice): Evan 3. Your age: 27 4. Your timezone: (GMT-6) Mountain time Colorado, USA 5. Average amount of gameplay hours per day: ~9:50 AM - 3:00 PM / 5:00 PM - 3:00 AM Typical Weekend 6. Why you should receive the position: Criteria below Kalfka's Staff Application (6/20/21) [Last Edit: 7/11/22] Hello, my name is Evan but many of you might know me as Kalfka 😄. My history with RSPS began in 2009 with the deltascape server 'Ballscape' ran by Babablksheep and Mikey. This was a small subculture of a server which functioned without ::donate or ::gamble. Here I started lifelong friendships across the world which eventually grew into a larger RSPS community with servers like SoulPlay, Fire-PK, and SpawnPK. The people I met along the way on these servers have been my closest friends in life. We have learned together through college, programming projects, and getting older. Community building and conflict resolution are very important to me. I eventually became a forums moderator for Ballscape and an in-game moderator in 2011. When Ballscape shut down in late 2012 I began my journey in developing java projects. I acquired the Ballscape source, and to this day I spend time off tinkering through files to learn how these servers run. It's online (locally) as a test world for me to explore ideas and recommendations before I post them! I love building sprites and testing both PvP & PvM mechanics. My best friend Miko introduced me SpawnPK in early 2015. Ever since, I have been obsessed with learning every detail I can about this custom server. Seriously ask me anything and I will follow through with every possible answer, not just one. I love directing people to information by showing them advanced search techniques and hidden gems in SPK update history. I am regularly checking forum updates from the beginning of SPK to current. The raid community on SPK is a one that I care a lot about (Please check out my latest suggestions for raids!). I am a founder of the 'SPK raids fam' discord community which is the largest unofficial (let's change that) source of information on raids. We are 360 members strong and growing. We have a #data channel, #loadouts, #marketplace, #high-scores, and many giveaways hosted for the community. We are an actual fountain of knowledge held up by some of the most senior players in the game. Our veteran players include Kellatha, Bsouth, Metal Raimon, Nrdm, Despair, Huntir, myself, and many more in testing and providing guidance to newcomers. In-game, I am available as an active general in the 'raids fam' clan chat. I also wrote the librarian custom discord bot for SPK raids from scratch. Please come check it out in our discord for access to commands like: Display COX/TOB drop tables. - Call on specific items will include effects, stats, price (updatable). Display COX/TOB drop rates by game mode. Roll raid loot from either COX/TOB by game mode difficulty. Display loadout recommendations under 'x' amount of cost. Display COX/TOB time averages (+ top speed) & top scores by difficulty. Display COX/TOB efficiency calculator. - This is the ratio at which ToB is more profitable than CoX (bags/hr). Display various server boss stats with available information and guides. SPK has been a home away from home for years now. I remain active on ::yell to share my experience, discuss updates, patches, and game mechanics. I truly do love this community, and I would be so proud to serve as a helper. In-game achievements: Completionist III (did not purchase in the blood synth pool) 1189 ToB KC 176 Blood slayer (all from pvp) 12,878 player kills Legendary donator Mythic alt Link to the SPK raids discord community that I manage: https://discord.gg/W2tu8XW3j3 Link to my YouTube channel where I host GM-ToB streams: Solo GM Tob [LIVE] - YouTube Some Python lines that will compare GM-ToB to GM-CoX: Outside of SPK I am a 27-year-old graduate student studying at the University of Colorado. My MS is in Computer Science and Linguistics. I am very passionate about ontology learning, and computational linguistics. Currently, I am taking graduate courses on Object-Oriented Analysis, Neural Networks and Deep learning, Syntactic Analysis, and Natural Language Processing. I work for the Computer Science department at my university and am project lead on four different government funded research projects. My goal in life is to finish my program in two years and enter the tech world as a Natural Language Processing Engineer. Afterwards, I would like to save up for my own sailboat and explore the South American coast with my wife. I speak English, Spanish, enough to understand fluently and casually speak it. I've also spent two years studying Arabic, السالم عليكم
  13. Kalfka

    [June 13th, 2021] Summer Event 2021

    Might I suggest that the Royal seed pod has the ability to teleport to your house? I'd say it's worth the value. Thanks for the update! Kalfka
  14. Welcome to the SPK Raids Family, This is your first step into the elite realm of Grandmaster raiding, with unparalleled rewards. Invite link: https://discord.gg/Bcda5HGa8M Simulate any game mode difficulty for either CoX or ToB in our #chest-rolls channel! Our #broadcast channel will notify you of your favorite events even while offline! Track server-wide raids loot automatically added to our #loot-flex channel! Search for a raid party in #tob-lfg or #cox-lfg. Work your way up our ranks for even better groups! Test your luck in #enchanted-chest with our enchanted chest simulator! Try out the drop tables of difficult bosses in #boss-pvm! Open as many epic pet mystery boxes as you can in #box-test! Learn more information about dozens of items in the game in our #item-list channel! Invite link: https://discord.gg/Bcda5HGa8M
×