#archived-modding-development
1 messages ยท Page 297 of 1
i still dont see how thats relevant
if anything that proves my point
there is no reason to use fluke no matter the notch cost
The dmg per fluke is 4/5
why double hit with ss when fluke is a nonuple hit
So I should increase it to 5/6?
to however much it was on 1221
make it 0/6 tbh
that's perfect
not as broken as 144 damage fluke but not as utterly useless as 80 damage fluke
make it 144 tbh
good
missed the 1cycle got stuck in the dark room before wk for half a minute and failed fq once
2:43 should be free
failed force quit
hmm yes
How would I override the fluke dmg? Just use HitInstance?
I've done it before by directly editing the assembly
but I want to do it with modding
Hold on, I just noticed that Spellfluke uses (GameManager.instance.playerData.equippedCharm_19) instead of (PlayerData.instance.equippedCharm_19)
why?
doesn't make a difference
It's a singleton so any way of accessing it is identical
Same with most of the useful classes
galaxy brain
I hope at least one of those people is being sarcastic
How can someone be impressed with roblox graphics
private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
{
orig(self);
if (!PlayerData.instance.equippedCharm_19)
{
self.GetAttr<int>("damage").SetAttr("damage", 5);
Modding.Logger.Log("GET FLUKED!");
}
if (PlayerData.instance.equippedCharm_19)
{
self.GetAttr<int>("damage").SetAttr("damage", 7);
Modding.Logger.Log("GET FLUKED!");
}
}
``` This should work, right?
This code smells
good

I don't get why that doesn't work
What's weirder is that editing the dmg for GW, even directly in the assembly, does nothing
tf is gw
Glowing Womb
How high is your nail upgraded? With the spiral nail she shouldn't be that massive of a problem since you can stagger her sooner. I'd say 6 masks is more than enough
Who are you talking to?
Maybe there is something that sets the damage value back in the fsm or whatever
that happens a lot to me
For GW or Fluke?
fluke
You could IL hook it
Would that make a difference?
hi on mobile
Die
I am trying to get a particle to dmg the knight but it does nothing (it appears on screen though). I have tried using try and catch and I dont get any errors. Here is the code:
var wave1 = Instantiate(DoH.wavePref); //Instantiate particle
wave1.SetActive(true); //Make it active
wave1.transform.SetPositionZ(HeroController.instance.transform.GetPositionZ()); //Put it on the same layer as the knight
wave1.AddComponent<Rigidbody2D>(); //Add a rigidbody to it
Log("1");
BoxCollider2D bc1 = wave1.AddComponent<BoxCollider2D>(); //Add a boxcollider2d
Log("2");
bc1.isTrigger = true; //Set the boxcollider's isTrigger to true
Log("3");
wave1.AddComponent<DamageHero>(); //Add ability to damage hero
Log("4");
wave1.AddComponent<DashDeath>(); //This script destroys the particle after 4 seconds
Log("5");
wave1.transform.SetPosition2D(gameObject.transform.GetPositionX(), gameObject.transform.GetPositionY()); //Places the particle
Do you have to run windowed for gm
me?
Yes
i dont run gm but no i dont run windowed on either version
wow pain
is there anything else I am forgetting to add or should I give up and just do the collision myself with if statements
If DamageHero doesn't work just make your own damage hero
ok
Also check output log to make sure it isn't throwing
Maybe try making it not a trigger
ok
uhh
turning is trigger off makes them make the knight and hornet float in place
still dont damage though
it makes it so that I cant go through them basically
really weird
I tried setting trigger to true again and adding a script that has void OnTriggerEnter() to the particle
PING
I think it breaks when I do that because the rest of the code stops working
the try and catch finds nothing though
just realized that the particles disappear because adding rigidbody lets gravity control them
oh
lel
thanks
ok the hitbox BoxCollider2D makes is way too big
guess I'll just do the collision myself aka go die unity
nvm you can change the size of the collider
hmmmmmmmmmm
private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
{
orig(self);
if (GameManager.instance.playerData.equippedCharm_19)
{
self.GetAttr<int>("damage").SetAttr("damage", 7);
Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
}
else
{
self.GetAttr<int>("damage").SetAttr("damage", 5);
Modding.Logger.Log("GET FLUKED!");
}
}
``` So how do I turn this into an IL? I really don't understand IL.
Um
ignore the log
FLUKE ME HARDER, DADDY
I have regrets
I wouldn't. that's an amazing log message
I no longer have regrets
Jiji got rid of 'em
Ugh, this is so much easier to do just by direct editing the assembly
I wonder if hooking DoDamage instead of OnEnable would work better
You find the IL instructions and modify them with delegate emits
dnSpy
Swap to IL mode

What am I looking at
Like, I've looked at these before, but I don't really understand
This format is confusing af
Has anyone used IL for their mods?
which one
Randoed Pantheons
I've done IL modding for another game if that counts
Do you want me to link the example
The only IL editing I do in mods is changing values in places where dnSpy gets angry
although I suppose monomod or similar would fix that kind of problem
unless you want to throw something in the middle of a method
I'm gonna take that as a yes
This looks so much nicer than what I did wow
Idk if the HookILCursor thing existed before but it looks great
So, I just tried DoDamage instead of OnEnable
ShamanS Fluke just did 160 dmg
wtf
that's not even the right number
and non-ShamanS still does 64
Nice you buffed it even more than 1.1.1.4
Ascended
Wait
Did the flukes double-hit?
If I hit the WK right as it spawns it does a shitload of dmg
it only happened once
so I guess it was just
a fluke
banned
what's the newest update to charm overhaul change?
Yes do that
eh whatever

56 give me your credit card number I need to load your card up with 48c so you can buy me a life for mememas
Kuro it is
don't worry i have a debit card
Attention! All people who own an infinite grimm hardmode timed world record! #archived-modding-development needs your help! KDT requires more money to make ngg2 and angle needs more to port it over to IG, all they need are the three numbers on the back, expiration date; month day and year! Hurry before graig beats your score!
@fair rampart R.I.P 121 flukenest and hello to 215 flukenest
It just keeps doing random dmg
IDK why
I just tested on Traitor Lord and he went from 800 to 640 after one Shaman Fluke
It should only be doing 112
Wtf
third hit: 90
nice feature
private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
{
orig(self);
if (GameManager.instance.playerData.equippedCharm_19)
{
self.GetAttr<int>("damage").SetAttr("damage", FLUKE_DMG_SUPER);
Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
}
else
{
self.GetAttr<int>("damage").SetAttr("damage", FLUKE_DMG_NORM);
Modding.Logger.Log("GET FLUKED!");
}
}
``` I tried using constants to see if that made a difference, and boy did it
do it before orig
ok
because it's private
damage in Spellfluke is private, how else do I access it?
Why are you calling SetAttr on an int
think
that's like doing 5.SetAttr("damage", 3)
Oh
o ic
5.SetAttr("damage", 3)
That doesn't work tho
So what DO I do then?
self.SetAttr
Oh I don't need the get?
No
I don't know why your code even compiled
Primitives shouldn't even be able to have set attr called on them
The extension method was for object
hmmmmmmmmmmm
You moved orig right
yes
{
if (GameManager.instance.playerData.equippedCharm_19)
{
self.SetAttr("damage", 7);
Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
}
else
{
self.SetAttr("damage", 5);
Modding.Logger.Log("GET FLUKED!");
}
orig(self);
}```
1st hit: 90, 2nd hit: 160, 3rd hit: 95

I think i did it
nope
never mind
still random
The first hit was 112
so I thought I had it
wait no

Did you change the upwards recursion amount
kuro any feelsbadman server

Hol up, I'm testing it on Failed Champ right now, and it's doing 112 consistantly
I just tested on Moss Charger, consistent 112
moss charger is my favourite boss to test things on
Is TL's hitbox just fucked up?
ยฏ_(ใ)_/ยฏ
I chose TL to test, because he's easy to hit with all the flukes
NKG
wk
grimm
TL sucks ignore him easy
TL's hitbox is super
d. sometimes he takes dmg after the flukes are already gone
time yo buff TL and conflict mods o wait i dont have one ๐
I just pause buffered a hit on Gruz Mother
Oh GM's hitbox is f'd for flukes too
You can kill Nosk when he's in the ceiling?
Yes
didn't realize that until just now when I tried Shrieking him
Why are the flukes not hurting PV?
except when he dives
vanilla bug
also I see qol made the cutscene stop existing
when is there not
well coded game btw
@compact sedge if you don't give a shit about the spectre patches you can do pti=off spectre_v2=off l1tf=off nospec_store_bypass_disable no_stf_barrier
pretty decent performance boost apparently
private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
{
orig(self);
if (GameManager.instance.playerData.equippedCharm_19)
{
int attr = self.GetAttr<int>("damage");
self.SetAttr("damage", attr + 2);
Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
}
if (!GameManager.instance.playerData.equippedCharm_19)
{
int attr = self.GetAttr<int>("damage");
self.SetAttr("damage", attr + 1);
Modding.Logger.Log("GET FLUKED!");
}
}
``` So this works fine for every boss I've tested so far except TL, GM, and Galien. Gorb also takes 7 extra dmg, but that's not a big deal
I put orig first on purpose btw
@weak lodge
Traitor Lord mod sounds good actually
I might do that next
shit saleh is gonna conflict mods with mine
tbh
if i only change ascended that should be fine right :sweating:
but I thought you were doing WKs
Does PV not have a healthmanager component?
He does
the plan was to change all unloved ascended bosses
then why the fluke does fluke not work
Because damage is defined in enable, then my code alters it after it has been defined, but before it does dmg
Do you have an OnEnable hook?
That is my onenable
I changed it back to OnEnable because I figured setting the attr when the damage is already being done might be the cause of the rando dmg
But turns out TL's hitbox is just 
Does TL take weird dmg from vanilla Flukenest?
I'll comment out the fluke buff and check
Alternatively, I could NOT be an idiot, and just disable the mod
hmmmmmmmmm
soon ^tm
โข
TIM

I guess I wasn't ambitious enough with my wording this time since people actually believed me
What
believable that TC would misspell date
more believable that saleh would meme
hmmmmmmmmmmmmmmmmmmmmmm
the screenshot is fake 56
wow nice
throwback to when shitpost got pinned
I'm not sure you're using the word "ambitious" correctly
no, it's correct
hi not sure you're using the word "ambitious" correctly
at one point I am pretty sure I tried to trick people that the third expansion was going to be called Abyssal Dreams or something along those lines
CP3 hornet is void
I would say that's much more ambitious than faking a "coming soon" teaser @fair rampart
adjective: ambitious
having or showing a strong desire and determination to succeed.
(of a plan or piece of work) intended to satisfy high aspirations and therefore difficult to achieve.
the synonyms
or antonyms
thanks
๐พ ๐ผ
yw
@copper nacelle on amd but thanks
I thought the patch for the amd one didn't affect performance
(but the intel one did)
AMD: Yes, Spectre does affect our processors. The chipmaker first said there would be "near zero" impact on its chips from one variant of a flaw that makes sensitive information vulnerable. An AMD FX-8320e PC CPU. Chips made by AMD are susceptible to the Spectre flaw, the company made clear on Thursday.
the EPYC ones are AMD
understandable
but thats like, 4 extra fast
what are the first amd/intel cpus not vulnerable to this and do the manufacturers benchmark them with it enabled on older cpus to make their benches misleading?

@weary oyster https://youtu.be/XvQlnYBZRpo di you know why this doesbnt wprlk
sometimes i get my dash stopped before actually hitting him which i assume is me dashing late
but i dont get this one
lmao
also if you want something else added tyo debug for practice and whatnot let me know
and ill just steal 56's code to add it
tdogRat
SalubRat
o also any visual cues to dnail wd as he unburrows?
nvm not even gonna try going for that

can some one help me get enemy randomizer
yell at hal to change it
Reminder: The speedrunning guides (https://steamcommunity.com/somerandomnumbers) and other speedrunning resources can be found pinned in a channel you cannot talk in.
๐ค
thank you for the reminder
๐ค
This is the 2nd time you have posted this and I am okay with that fact
wait is it
yes
see i knew it ๐ก
e
Hir Ngolwe beat you to it
I know someone posted it before
o
hahayes
it's ok i found something even better
56 post an important image
56 you heard the person
56 you know what to do
everyone is counting on you 56
56 is incredibly popular
@copper nacelle is this you
thank you for this fresh and exciting content kurosh
no problem
are spikes always an instant kill on enemies or do they do a fixed amount of damage
by spikes i mean the ceiling ones that you can hit with your nail
there's definitely something weird about them
you know the one grub in ke i missed the other day
the spike sometimes hits the aspid and it usually kills him
but yesterday i had this happen
ok it's an explicit image apparently
lol
Scribble on it
Perfect
why is that a thing on discord in the first place
doesn't look like it but it does hit him
it makes the sound and it plays the dmage animation
previous segment
ok`hold on i phrased that weirdluy
compare to gold
is that what u meant
detailed timer is what shows your pb and gold for the current split youre doing
dude why are we awake
oh
Gotta stay awake whenever I'm awake or you might miss some hot content
this is true
wait you woke up at 4 30 am
i did indeed
w hy
because i went to sleep at 7pm
I did that shit over summers in high school
yea i honestly feel like my natural sleep/awake cycle is like a few hours longer than 24h too
or maybe i just suck at making myself go sleep idk
Oversleeping is worse than underersleeping to me
You feel as groggy as humanly possible
imagine not being wide awake for 15 hours straight
this post was made by coffee gang
Imagine the exact same thing
caffeine eww
This post made by caffeinated tea gang
caffeine 
I am addicted to caffeinated tea
literal drug addiction
you are not wrong
Yes I spend every waking moment of my existing craving that substance and spend every dollar I can find earn or steal on it
caffeine is great
Finch is literally my age
the way caffeine is normalised in our society boggles me
this is correct
I don't drink coffee very often
however I drink caffeinated tea not coffee so get it right 56 smh
I drink coke kinda often
I am going to continue drinking caffeinated tea for nobody can stop me except those who can
and I drink monster like weekly
Monster is great if you like heart attacks
I love heart attacks
I c
ok i must claim my 43 goodbye
How do you even buy things 56?
Monster is expensive
Well known fact children have no money
having all your living expenses paid for probably helps
Also it's more like biweekly
๐
so your secret to sleeping is chugging monster until you dont need to sleep anymore
Same
Yes
also wow censorship
@thorn comet 56 for demotion 2018
#Demote56
now the message is just sean being happy
still a shitty sleep sched to be tbh
now thats a sight i can get behind
Demote 56 to promote him to Admin ๐ฉ

oh shit
1:42 AM and I don't feel a wink of weary
56 start bribing
I'm so glad I could finally use weary outside of the obvious use
Just run 112 
:)
dude its actually so dumb
i pbd by 3 minutes and my rta is 4 minutes slower
i just dont fucking get it

Upgrade your cpu faster
Or just get a non stock cooler

this is such a good emote but I never use it
Also I was supposed to be asleep 3 hours ago

yeah you better run
imagine your pfp but as an emote as this message thanks
gnight yes
๐ง
gottem
Hey guys I finally put a pfp I hope you like it ๐
This is the blessed timeline
?avatar seanpr
blessed image
blessed charm
why is his eyebrow blue
its a mother 3 reference
oh thank you for clarifying
ascend
The real question is how long will he keep this for
like, 5 long
Understandable
as long as your pp
I wish sr offtopic was active right now just to see the reactions
Be the change you want to see in the world
ur supposed 2b asleeped dungo
did they nerf the amount of geo false knight gives
nope the wiki is just wrong
as usual
The fk wiki page doesn't mention the geo at all though
nice
I guess it just doesn't work on mobile
yea
oh wait actually I never got ds3 DLCs
I'll get that
hopefully hornet dlc will be under $10
oh no he's back
I want more than one storage per quitout
i want select fall
why would you bring up sexual innuendos in the presence of a child such as I
I want hornet dlc to be 420ยฅ
i want game to eat ten input
so 2 kingsmoulds walk into a bar
shit community
wont even help me lab cdashes
(i jest)
what if i lock my framerate to 30fps
it shouldnt lag
30 fps was a mistake
hmmm you want help with mods? Too bad there isn't a channel for that
didnt that actually happen before, someone just @ the modders to answer his question
It happens too often
at modding staff how often does this issue happen :(
@ Mods @ Modding Staff can som1 ty my shoo
@cunning lagoon FSM viewer
It's the first pin
You want to click the open resources.assets button
It'll be "Knight - Superdash" iirc
nice nice
so im trying to figure out what determines when you are allowed to cdash right through an enemy
be sure to look at it twice
you think it might be
crystal burst?
this is garbage
ENTER SUPER DASH is the start
right
why does FSM CANCEL have the same square
Black squares are global transitions
Meaning that when something sends an event called "ENTER SUPER DASH" or "FSM CANCEL" at any point it'll just go directly to that spot
it's gotta be in Dashing right
dae mobile hot garbage so 56 is a question mark in a box
Understandable
what are eventsx
should i look into SD Trail
nvm
ok its definitely sd burst
maybe not
wtf it crashed
a tale told in 6 messages
actuallyu how do i see what makes soul warrior spoawn
You are allowed to superdash through an enemy if the superdash damage does greater than or equal to the enemy's remaining health
I think
that is definitely not true
You can go thru enemies that have 10 or less hp
sometimes
which is what i was trying to figure out
don't thinkgrub me
go and try to cdash through a crawlid 100 times in a row
i can guarantee you will eventually take damage
well this was a waste of time
i can't figure out cdashes and i can't figure out soul warrrior
on the plus side it looks like obs is what makes my game lag
it runs fairly well when im not recording
and by fairly well i mean perfectly
its a huge difference
do you have a lot of obs scenes
no only the hk one
hm
for me it lags if i have display capture in any other scene even if its not active
which is some ๐ code in itself
but yea idk whats going on with yours

Just had a chat with the rainworld modders and I've come to this conclusion: If you ever look at the modding api and think: "this is kinda shit." It could always be worse, we could always be using partiality. Don't tell the partiality dev I said this.
Messaging partiality as we speak
it's a good wrapper for monomod ig but your runtime patching of the assembly and lack of any game specific features and that it only works on windows kinda sucks. no it sucks a lot, but lemme just say kinda to be diplomatic.
They're fixing that iirc
well I uh asked the developer of partiality so rather than go off heresay ima see what they say
monkeymod
i may or may not perhaps have improved slash fixed my lag
i'll test tomorrow 
why tomorrow
because its too late and if i commit to a run now it may go well
why did you type out 'slash'
i like how our sleep cycles are straight up opposite of each other rn

i woke up like 2h ago
i havent slept yet so i woke up 16h ago
exactly
bless caffeine
you need caffeine to stay up 16 hours? 
i need caffeine to stay awake period
tfw casual drug addiction
why can't i get sub 4 
hey 4:39 is pretty good ๐
anything more than sub 4 complete garbage tbh
@copper nacelle
like my pp
so for the room with the owen wilson mushroom guys
is it better to go up or down
or do i have to time this one too
sideways 
WAAAways
alt f4
I can't count past 6.626e-34
All glitches goes up but they have transition storage
wdym "they"
the runners

what if we ask team cherry to patch the glitches back into the game
just ping them ez
@ game makers please add the glitches back in we need them
im too bad at celeste
sorry i dont speedrun games where you can't get screwed by enemy rng in every single room
theres rng depending on what you do
god celese is such a good game. I wanna mod it but it seems basically perfect as is so idk what to do.
ok I could make new levels for it but I'm bad at level design and the only kinda mod I'd wanna do is one that affects the core game itself.
Make dash length random
make rng mod
make a room randomizer
tie dash length to framerate and make the game framerate independent of physics.
also make the enemies sepeedscale with framerate
add enemies to celeste
Sean has the most ascended pfp Iโve seen in a long time
is grubsong location in randomizer logic?
okay
yeah because you need everything other than dream nail to get elegy lol
so it would be retarded to have it be logic
xD
๐
๐ฆ
im actually eager to test if i fixed my lag or not
not gonna be able to sleep 
pretty sure down is faster but up lets you get soul kuro
whats upsoul
Downsoul
leftsoul
Dark Soul
Except for te o guessvbecaise you kill hu
hmmm
I guess nldg Too for float dรฑand whatnot
dรฑand
kurosh buy eroico
There's so many other porn games that you don't have to pay for though
Eroico doesn't even have a speedrun.com page
there's also porn that you don't have to pay for
but its like the only one that has good gameplay
Buy it for meband ill veat your time
id play that shit without the hentai
wdym deep space waifu has 10/10 gameplay
ok whats ur steam
DL Kurosh
oh its linked

think
link twitch/youtube when
you told me to get it for your birthday and never told when your birthday is
Today
hmmmm

Why is one of the mods playing Fortnite?
ping alex and ask ez
Yeeeeees
Actually buys sfw game like a boss
you dare ask me with that profile picture
ill change it if u gift me the game 
is this blackmailing
Same
wow i could clear 2 profile pictures of cancer by spending a few money bois
ill have to think about this
i'd be doing the whole discord a service
This was my plan all along
Put on a bad pfp right before the autumn sale to get free porn
good job sean
wow sean not even using the worse version of that emote that i haven't shared with anyone
imagine
Almost as bad as savynov not doing the puppeteer skip
I actually Cant sleep 
have you thought about getting off of discord kurosh
i hear that helps with sleeping
Then i miss out on this hot content
Ax speedrun this next https://store.steampowered.com/app/975240/Hentai_Shooter_3D_Christmas_Party/
what the fucck
Browsing new on steam is amazing
You find shit like this that will literally never show up anywhere on the front page
But it's beautiful
ax buy me a pc that doesn't have 10s thk loads and i'll run 106
why do so many h games have sakura in the name
Why are there poorly rendered waifus shooting red balls out of their crotch?
Pete wwvdont qantvyou running 106
Go back to glitches
typing any%
is this drunk krythom
No this is phone kurosh
all i see is sans undertale
Same
wow nice
pfp is actually pretty nice because the glowing eye fits the src mod name
what a deal
nothing justifies that pfp
Coward
in other news
๐
steam isn't letting me browse "new"
Didn't you say you'd give the invite at 50
did i
Yes
@trim totem
verulean
Lets goooo
what if not all of them are true dlkuroshes
oh now it works
shut the up
Hentai And Your Life This is a simulation of the operating system with its own rules.Here you will find many different useful and entertaining applications. Main features: Cute 2D tyan assistant! Card game, fight your charming assistant in an exciting card strip game! Custom...
$2.99
lmao
no
๐ค
don't think he's on this server sorry
Back Ground Story The project 'Time Virus' was found to be launched after year 2085. Its aim is to rebuild the ecosystem destroyed by the nuclear war using time machine. You are the member of project 'Time Virus' in the game, and you will finish the mission given by the proje...
$0.99
can you say "mobile port"
no saying diablo immortal is tough
The best rethinking of the classic game of the genre "Xonix" today. The legendary Xonix! Who played in childhood. More interesting, more beautiful and sexy.The essence of the gameIt is required to run around the field as a player, without hitting the enemy. After passing the ...
$0.59
more trash
so close
Hentai MineSweeper - Endless Mode can load images from the Web for continuous game play.Function keyKeyboard P: One key minesweepingKeyboard S: Emergency avoidance (the background image turns white and you can continue to game play)Endless ModeYou can set your favorite subred...
$2.39
wtf this game has reddit integration
the art's not bad actually
almost like they're just copying images from reddit
yeah, exactly
Want to make a game, but you just can't art?
pfft
just steal
seriously don't
Okay steam, you give me the content warning for this, but to not those h games?
Three close childhood friends fed up with the existing feministic balance of powers that have cost them their promotions go to their local bar to share in their miseries. After drinking heavily they are approached by a shady character who offers them the secret to the power t...
$4.99
me too

you wouldn't?
The description of the game though 
Wtf
wtf the fuck
What the wtf the fuck
happy thanksgiving
Wtf as a recursive function
Wtf as a recursive function
fuck cursive
cursive is god tier die
For real fuck cursive
print can go die
look at me I write in a font nobody can read woo
cursive is stop
Neeeerds
we got a badass over here
56 is typing
class Wtf
{
private static Random rand;
public static string Wtf(string start = "wtf")
{
int i = rand.NextInt(5);
return i == 0 ? Wtf("what the " + start)
: i == 1 ? Wtf(start + " the fuck")
: i == 2 ? Wtf("the fuck " + start)
: i == 3 ? Wtf(start + " what the")
: start;
}
}
@daring snow
i write in caps lock
I knew that's what he was doing
also ternary abuse
Wtf
Amazing
Is this Markoth code
explain : ? pls
condition ? "ifTrue" : "ifFalse"
So my thing is
if it's 0 => Wtf("what the " start)
else
move to the next thing which is another ternary
it's compacted if else
understandable
what the the fuck the fuck wtf what the the fuck
I need to add another condition for wtf
took 3 tries
but i got
the fuck the fuck what the wtf wtf the fuck what the what the the fuck what the what the wtf what the the fuck the fuck the fuck the fuck wtf wtf what the the fuck wtf the fuck what the the fuck
This would be a great error message
I need to weight stopping lower
ty
fix it

Merry Christmas everyone
rude
edur
not listening to christmas music yet?
thank you simo
thank you simo, very cool!
see 56 even 753 wouldnt bother with ternaries 
one of the best refactorings i did to lightbringer was swapping some stuff out with ternaries
it makes it so much shorter
Ternary and linq are god
Yes
i mean, jokes aside theyre pretty cool, but not case true case false cool
nice
Seriously though I'm not setting up a vm just to test garbage nobody cares about
Hey someone tell me what to do here
One of my groupmates pushed completely nonsense code into one of my classes a while ago
I don't want to fix it but I shouldn't just remove it either
Like he's trying to unhook lambdas from events
???
Also this beautiful function
Tf
Yeah idk
He hasn't done anything useful all quarter
There's always one of them
There's also stuff like this
Which, you know, looks like it would work to me
But what is the use case of checking for any alpha key pressed?
idk


