Recent Posts

aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
Hi, So if you're still looking. I'm going to offer up my site? Granted we do have powers and magic, but it's "low-key" type stuff. Like as if these powers existed in our own world. So somewhat mundane essentially.

Site Premise:
Shadows of Our Youth(SOY) is a powers based school rp set in the current day, ten years after a war between magic and psionic ability users. The location is Trinity Academy, one of the first schools established after the power war located on New Dawn Island where the war originally ended 10 years ago. It's home to bustling cities and rural towns and all manner of characters, groups, secrets and plots lay around every corner for you to discover. We're relatively sandbox with a site plot you can either follow or completely forgo for something you're more interested in. Our lore is simple and digestible with plenty of room for YOU to add to it if you want.

If your interested, links to the site and the discord are in my signature. Feel free to pop into the discord to ask questions if you'd like too!


aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
SiteShadows of Our Youth
Genre Anime Power Highschool / City Slice of Life
Little bit of info

So the closest thing our site has to cannon characters is our school's assistant Dean. What we really need more so is just some general roles filled out for the school in general. The school is broken up into 5 years, three semesters each year.

Year 1 - 13-14yr olds || Year 2 - 14-15yr olds || Year 3 - 15-16yr olds || Year 4 - 16-17yr olds || Year 5 - 17-18yr olds

What we need

We need a bunch of things really. With regards to students we need things like;

Delinquents and Bullies - Students who are usually 3rd to 5th year, they skip classes, be a bad influence on other students, bully other students and push their weight around, just general teenage punk stuff.

Honor Students and Popular Kids - Essentially the students who are on top of their classes, or are literally the queen bees and kings of the social hierarchy.

Social Outcasts and misfits - We actually have a whole bunch of these. But we're not against people making more.

aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
noire Avatar
Try doing this:

1) Add an " active" class to whatever link you want to be the default, eg:
<li><a class="container_links" href="#" data-showdiv="article_1">PREMISE + ABOUT</a></li>
becomes
<li><a class="container_links active" href="#" data-showdiv="article_1">PREMISE + ABOUT</a></li>

2) Add this to the end of that JS script:
$('.container_links.active').click();

This works by sending a single click() event manually right when the page loads, letting the rest of the script follow its usual process.

To change it to a different default page in the future, move the "active" class to your container_link of choice.

It that's still being weird, lmk and I'll take a look!


the amount of victory laps I ran when your solution worked. Holy shit thank you so much!
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
link to test site

So, I was looking around on other sites and saw some really cool guidebooks that were custom html webpages. Thought; that's dope. I wanna make one for my site. Found a tutorial from RPG-I, followed it to the best of my ability, even looked at other similar codes to see how they went about it, especially with regard to how keys and things worked.

Anyways; Three weeks of agonizing struggle and I managed to get it mostly working. Except for one issue. When the webpage first loads it doesn't show anything, like none of the tabs. What I would like it to do, is automatically display the content in the PREMISE + ABOUT tab when the webpage first loads. Now I have no idea how to preform such a thing, there was a following up post on the tutorial that I tried to follow and it didn't work, I also tried changing the CSS, specifically this part:


#article_container .articles { display: none }

But all that nets me is all the content showing instead of just the content from the PREMISE + ABOUT tab. Below is both the code on the webpage, and the CSS. (Webpage 1st, CSS second) Any assistance would be amazing.

--------------------------------------------------------

Code: HTML and Script
<div id="welcome_articles"><h1>SHADOWS OF OUR YOUTH GUIDEBOOK</h1></div>

<div id="article_container">
<aside>
      <ul class="article_container_list">
     <h3>BASICS</h3>
     <li><a class="container_links" href="#" data-showdiv="article_1">PREMISE + ABOUT</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_2">SETTING</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_3">PLOT</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_4">RULES</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_5">HOW POWERS WORK</a></li>
   </ul><br><br>
         <ul class="article_container_list">
     <h3>CHARACTER CLASSES</h3>
     <li><a class="container_links" href="#" data-showdiv="article_6">AKASHIC + MAGIC</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_7">ESPER + PSIONICS</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_8">AESIR + AURA</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_9">VANIR + TRAITS</a></li>
   </ul><br><br>
         <ul class="article_container_list">
     <h3>SCHOOL INFORMATION</h3>
     <li><a class="container_links" href="#" data-showdiv="article_10">ABOUT THE SCHOOL</a></li>      
     <li><a class="container_links" href="#" data-showdiv="article_11">SEMESTERS, BREAKS, HOLIDAYS</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_12">CLASSES AND CLUBS</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_13">UNIFORMS, DORMS, CURFEWS</a></li>
     <li><a class="container_links" href="#" data-showdiv="article_14">OTHER POWER SCHOOLS, TRANSFERING</a></li>
   </ul><br><br>
  </aside>
 <div class="article_content">
  <% premise %>  
  <% setting %>  
  <% plot %>
  <% powers %>
  <% rules %>  
  <% akashic %>  
  <% espers %>  
  <% aesir %>  
  <% vanir %>  
  <% school %>  
  <% years %>  
  <% classes %>  
  <% policies %>  
  <% transfers %>  
  </div>
</div>


<script>
$(".container_links").click(function(){
   $(".articles:visible").hide();
   $("#"+$(this).attr("data-showdiv")).show();
});
 
$('.container_links').click( function(){
   if ( $(this).hasClass('active') ) {
       $(this).removeClass('active');
   } else {
       $('.container_links.active').removeClass('active');
       $(this).addClass('active');    
   }
});
 
 // following is purely to prevent page jump when user clicks on link
 $('a.container_links').click(function(e){
   e.preventDefault();
 });
</script>


Code: CSS
/****************
GUIDEBOOK WEBPAGE
****************/


#welcome_articles {
margin-bottom: 10px;
padding: 5px;
border-bottom: 1px solid rgba(0,0,0, .1);
}


#article_container { display: flex }

#article_container .article_content {
flex-grow: 2;
padding: 0 20px 20px;
border-left: 1px solid rgba(0,0,0, .1)
}

#article_container aside {
padding: 10px;
min-width: 30%
}

#article_container .articles { display: none }

ul.article_container_list {
list-style-type: none;
margin: 0;
padding: 0
}

ul.article_container_list li {
display: block;
margin: 1px;
}

a.container_links {
display: block;
border-bottom: 1px solid rgba(0,0,0, .1);
padding: 5px
}

a.container_links.active { padding-left: 15px }

ul.article_container_list h3 { margin-top: 0 }

@media screen and (max-width: 979px) {
body { font-size: 1rem }
#wrapper { width: calc(100% - 20px); margin: 0 auto; }
#article_container { display: block; }
ul.article_container_list { text-align: center }
#userlinks { width: 90% }
ul.article_container_list li { margin-bottom: 10px }
ul.article_container_list li:last-child { margin-bottom: 0 }
}

aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
My confession: I freaking hate coding, I barely ink by with my limited understanding of it. And yet I chose to do one of the most complicated things. for myself and made a whole jcink webpage guidebook. Couldn't figure shit out and it took me three weeks, didn't understand shit about how keys worked or anything. Now I'm sitting here asking myself why the hell I have to make so many webpages?





Seriously though, who the hell decided RP forums needed to be so complicated coding wise now a days? Point them out so I can strangle them please and thank you.
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
Need to find someone who loves advertising so much, I can bring them on as a staff member specifically as a RP/advertiser person. -Cackles maniacally into the distant void at the thought of someone like that actually existing.-
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
In a thread where two super soldiers who hadn't seen each other since they were kids in a facility meet in public after being free'd.



“It was a war love, and you weren’t in control of your actions.</b>” Was there like a shimmer in her eyes? Pained features hidden behind the smile as she spoke and giggled lightly. “Oh… Right. They never gave us names back then. It’s me, Zero-Twelve.” God that hurt so badly saying that designation again, but really it was the only type of name that night be recognized. “Vic was, Zero-Ten.” She swallowed a minute and recollected herself. “But… That was decades ago, I go by Lily now. And Vic, he goes by Victor.” She seemed happy, a very sad kind of happy to see her doing so well.

She always told in the report, and during questioning that she couldn’t kill the Vanir that escaped that night. Always phrased it like she was incapable or was out-skilled with regards to a pursuit. The truth was, she had a connection there, from the facility, and also just having her own Alpha she couldn’t begin to understand how lost she might have been if Victor had been killed. So she let the woman go. “How’ve you been? You teach at the school right?


Same thread, Super soldier(Cass) was synchronized with an Alpha type who was killed off during a fight, never desynchronized or resynchronized until now. Wrote out the whole synchronization process and am quiet pleased with it.

Watched Victor pull Cass closely and watched them put their foreheads together and close their eyes. It was so much more… Sensual than when Alpha’s and Beta’s were paired for the first time. Usually they were sat down, forced to place palms against one another with eyes closed, move their hands in timing with one another as they were given. But this, as Victor pulled her closer looked so much more intimate. A hand on her hips and their foreheads touching, the palms of their other hand pressed firmly together, maintaining a perfect balance.
They began to sway and Lily could feel her heart flutter because this, she remembered this. Their first time doing it this way after Alice found the file on synchronization on a raid. Set them up to do it like a dance. She was blushing so hard right now as she watched. “Follow my voice.” The bass in his low voice rolled in a way that was relaxing, trance like. He spoke instructions like a lover spoke sweet nothings to their dance partner. His hand moved with hers, the fingers spreading and closing back together again. Their sways becoming more and more in step with one another as time went. Felt like the world was at a stand still watching these two. Their hands moved to the left, to the right, to the left again and their swaying became that much more cleaner as if they were two people so in tune with one another. Their hands raised per his instruction crossing wordlessly to touch the other on the side of the neck, to feel each other’s pulse.

Okay yeah, Lily was watching, so intently, her eyes were locked with a sense of longing. A sense of relief from pain and happiness because she was still linked to Victor so she could feel Cass beginning to become connected and just how good that felt to Cass. “Whenever you’re ready.” He spoke so softly and compassionately. It was a completely different experience from non-liberated Vanir in a facility. Where they were forced to open their eyes after synchronizing physically. Victor felt the nod in her and it was a marvel really. Just how perfectly they were timed, as their eyes both fluttered open and locked.

There was a moment, as they swayed, as they held closely to one another. One of absolute stillness as they both seemed to enter some sort of trance upon making total and complete eye contact, they didn’t blink, just stared. It was like one person in two bodies as everyone of their movements and actions were so perfectly in tune with the other. Their swaying, their breathing, everything. It was a moment of intimacy that no human could possibly ever replicate. Or ever hope to. Like a perfect mirror
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
harrow Avatar
hello, hello! I'm looking for a place I can play my OC, Felix Valkyrie, who is a raven shapeshifter dealing with a lot of past trauma they're trying to escape from. I am a-okay with modifying their backstory/species to fit a site concept. My only must-haves for them is that they must be able to transform into a raven, and their fc is Jinx from Arcane. anything else - site genre, back story, species, etc i can adapt to fit the site! I just rlly wanna play my dumbass raven again so pls share ur sites with me!

Hey! Definitely check out my site then. We mix Psionic and Magic, and one of the magic abilities is Polymorph (Shapeshifting essentially). You can totes do Jinx, we have someone with a L-O-L fc, different character though. So yeah can totes do Jinx. Links to the site and the discord are in my signature. Feel free to visit and take a gander.
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
Been watching Colors by Sawano Hiroyuki and watching the music video and I swear to god I'm resisting the urge to use the pink haired girl as a face claim for either a character or an adoption so friggin bad.
aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again
Groups and Factions


Mercenary Factions


At current there are three actively playable Mercenary Factions that you can either have a character join, or already be a part of/associated with:

White Rabbit (Run by me; Fr0sty225|Fr0sty_tbs)
Parallel Lines (Run by Ghost; same username)
Army of the Devil (Run by Erc; No life king|Papa smurf)

All of which have their own uniqueness about them along with their own storylines.

White Rabbit is an established and maintained force that's highly reputable and been in the game for more than a decade.

Parallel Lines is a group that used to be reputable but the previous leader ruined that reputation to the point that they were dropped from the top 25 recognized companies and their new leader is working to return the company to their former glory.

Army of the Devil is a group that's in a similar boat to Parallel Lines, they were an elite but small company making a name for themselves in the Power War until their leader was killed in action and the company dissolved. Now, the son, along with a benefactor are working to bring the company back and build it from the group up.

Higanbana Clan



The Higanbana Clan is run by Kon | Kohaku Higanbana

aliasFrosty
pronouns*shrugs*
177written posts
«Fr¤§t¥»earned bits
offlinecurrently
«Fr¤§t¥»
Full Member
«Fr¤§t¥» Avatar
On my Devil May Cry shtick again

So at Shadows of our Youth we actually have a few wanted ads that need filling out, not just for the site but for our members as well. We do have expressed permission from the members of our forum to post their wanted ads on resource forums in the hopes that people are interested in taking them. Links to the site and the discord can be found in my signature. If you're interested in a specific member's wanted ads / open roles their discord name/username on the site will be available for you to hit up in our discord or on our site.

Thread will be broken up into two posts. One for wanted ads, another for open roles and groups.



Wanted Ads

First up we have the Assistant Dean of Trinity Academy.



A secondary thing to add is her involvement with a lot of things going on at the school. She's very much a planner and a schemer but in the fun mischievous way. She's caring enough to take in powered street orphans and get them enrolled in the school and she personally cares for what's going at her school enough to do what she needs to to make sure it.


Next we have two wanted Ads by one of our staff; Ghost(both their username and discord name).




^^^^
This is a fully fleshed out character with lots of details added to it, would be a good idea to speak with Ghost





We have another wanted ad from one of our other staff members; Raven/shadowhand





Another wanted Ad from no life king/papa smurf/eric


This character is a benefactor to the PMC faction Army of the Devil. Contact No Life King/Papa Smurf for further details.
last edit on Mar 16, 2023 20:16:41 GMT by «Fr¤§t¥»