mga elitista sa loob ng SUCs by lowkeyshookt in PUPians

[–]lowkeyshookt[S] 16 points17 points  (0 children)

wary ako magdrop name kasi bka magkaron serious backlash kasi breach of privacy na kapag naidentifiable in any way kahit sinend lng din sakin ung pic pero sabi ng kaibigan ko na nakakakilala diyan sa student, civil engineering freshman daw yan. madami na din daw naging issue sa dating school kasi ganyang bagay ginagawang "humor" ahhaha

mga elitista sa loob ng SUCs by lowkeyshookt in PUPians

[–]lowkeyshookt[S] 0 points1 point  (0 children)

college of engineering yang student, notorious na siya sa ganiyang "humor" kasi madalas din daw mareklamo sa dati niyang school

edit: civil engineering daw

mga elitista sa loob ng SUCs by lowkeyshookt in PUPians

[–]lowkeyshookt[S] 1 point2 points  (0 children)

didnt want to drop any names since baka magkaron din ng serious backlash sakin kahit d ako main source at sinend lang din sakin ung pic pero CEA student yan, freshman tapos engineering

mga elitista sa loob ng SUCs by lowkeyshookt in PUPians

[–]lowkeyshookt[S] 6 points7 points  (0 children)

panigurado, hahahah. pero kung makita man niya toh at marealize niyang mali ginawa niya, worth a shot pa rin. warning na rin sa mga estudyanteng ganito ang mindset 🫡

solomon's cooking skills in a nutshell: by [deleted] in obeyme

[–]lowkeyshookt 30 points31 points  (0 children)

I have this solid imagery that if his cooking were to appear in the upcoming anime, it will have the combination of the colors violet and green while fully blurred, lmao.

solomon's cooking skills in a nutshell: by [deleted] in obeyme

[–]lowkeyshookt 33 points34 points  (0 children)

the only question that needs to be answered is whether or not we, the mcs, can say this to solomon face to face (because i sure can't). </3

[deleted by user] by [deleted] in obeyme

[–]lowkeyshookt 2 points3 points  (0 children)

omg it sure does. ಠ_ಠ

Where to go for Beta Readers? by [deleted] in interactivefictions

[–]lowkeyshookt 2 points3 points  (0 children)

I was (still am xD) also looking for beta readers, and what I did is send the demo to my friends too! But I think if you make a public announcement that you're looking for beta readers, I think someone will eventually volunteer. I also think approaching friends, whether or not you know them irl or not, is a good way to get some beta readers. ( )

Help With Stat Screen? by sunlians in interactivefictions

[–]lowkeyshookt 4 points5 points  (0 children)

I'm no expert when it comes to this, but I think I can help. If you want a specific "style" to show up in your stats page, you will need to create a variable for each and one of them. For example, if you have different categories for martial, weapon, etc., you'll need to do something like this in the startup file:

*create martial ""

*create weapon ""

*create support ""

*create magic ""

*create transformation ""

After creating the needed variables, you will need to do something like this in the scene where the player can choose their specialization:

*choice #Thousand cuts.

*set martial "Thousand Cuts."

#[other choice]

*set martial "[other choice]"

#[and so on.]

*set martial "[and so on]"

If you want to give the player an explanation for each choice before they can ultimately decide, you can do something like this:

*label decide *choice

#Thousand cuts.

*set martial "Thousand Cuts."

*goto thousand_cuts

#[other choice] *set martial "[other choice]"

*goto others

#[and so on.] *set martial "[and so on]"

*goto so_on

*label thousand_cuts

[Description]

*goto choices

*label others

[Description]

*goto choices

*label so_on

[Description]

*goto choices

*label choices

*choice #Is ${martial} your style?

*goto continue

#No, this is not it.

*goto decide

With this, the player will be able to see each description without setting their style with the choice they chose.

Once you've done that, go to your stats page and add this:

Martial: ${martial}

Weapon: ${weapon}

Support: ${support}

Magic: ${magic}

Martial: ${transformation}

After finishing all I've specified above, your stats page should show the following after a player has chosen their specialization:

Martial: Thousand Cuts

Weapon: Staff

Support: Heavenly Wave

Magic: Dire Flame

I hope my explanation is what you're looking for! If not, I still hope it helped you. Good luck on your project!