#archived-modding-development
1 messages · Page 172 of 1
I was thinking that it would reduce damage above 1 mask by 1 mask
i.e. 2 damage turns into 1
For 3 notches I figured it was strong enough
If you don't make that mod, I will
you're infinitely looping

🔫 
you're calling add geo from an add geo hook
@solemn rivet I'm still glorifying charms so
I ended up finally getting the gathering swarm working
what did Carefree Melody even end up doing again?
So it should be HeroController.instance.orig_AddGeo(amount * Random.Range(0.2f, 2f)); ?
each hit you take gives the charm a 10% chance to protect you from the next hit
it stacks up and at some point adds 30% instead, I think after 5 hits
it's F-tier in its current state
eww
3 charms can get you quick slash or shaman stone
they could've done way cooler stuff with it
but making it reduce all damage by 1 would be worth the slots
consider fighting NKG
it's kinda weird that they even offer you a choice
if you have 9 masks, you can take 5 hits before dying
since he does 2 damage
if you have 9 masks and the glorified melody, you can take 9 hits before dying
it's pretty good for the cost
would it be overly hard to implement a debug menu that lets you click on a button to glorify and unglorify charms on a whim?
it's rather difficult at the moment for me to test it
ideally you could click a button with each charm's name to glorify it
Okay, so now it picks up the geo, but doesn't add them.
void GeoMultiplier(On.HeroController.orig_AddGeo orig, HeroController self, int amount)
{
amount *= 2;
}
ensure that you're using the function of the type HeroController.instance.AddGeo
otherwise the counter won't update
PlayerData.instance.AddGeo does the same thing but doesn't update the counter until something else does
it adds the geo but doesn't give any feedback
Okay, got it. Works now! Thanks.

why does the camera hate me so much
in the current debug mod how does it return the camera to normal after being on always follow mode?
uuuuh idk
or does it 
so the bool cityLift1_isUp seems pretty self explanatory
what does just cityLift1 do though?
Ok so I updated the Lightbringer.cs file in 56's Lightbringer port
how to I build it?
is it as simple as just building it from the .sln using Visual Studio?
if that's the case, could someone walk me through getting all the references working?
yeah
just load the refs from the managed folder
do you know which ones are needed?
prolly unityengine, playmaker... The API too
is there a downside to loading all of them?
Project > Add Reference > Check everything I see?
ye boi
oh lord
I honestly have no clue what I'm doing
Visual Studio always pulls this shit
I DIDN'T EVEN CHANGE ANYTHING
add playmaker.dll and the api as refs
where can I get the latest API?
gdrive
1.4.2.4 is the current live branch, right?
yup
How can I know which mods are updated and which aren't?
So I need to use the modding API's Assembly-CSharp and not the vanilla one as my reference, correct?
ye
time to figure out how to remove references
Btw is it possible to disable the minimap in charming mod? I think that's what makes my game lag.
But then I can't see myself when I actually want to open a minimap
Also what it shows me isn't even a minimap, just another view with a zoomed out camera in the corner.
disable it using the settings
ur a setting
Yeah these references just aren't working for me
what do I have to do aside from just select all of them?
Don't even know what I did
I guess Visual Studio has some bugs with referencing more than one thing at a time
if one fails, all the ones after it do
it seems the caution symbol means they aren't being referenced properly
how do I reference them properly?
delete and re-add them
still angry
maybe u got bad refs
googling the problem says some shit about reference paths
where should I shove them to make them able to be found?
uhhh I just leave them where they are tbh
it just doesn't wanna find references
how can't you find it it's in your folder reeee
sorry for the lag, my pc was busy opening other stuff
I did exactly that
using all the newest yup
the problem is Visual Studio can't find the references at all
¯_(ツ)_/¯
like the .dlls themselves
which makes no sense
it literally tells me "here's what you're looking for"
so I click it to load it in
"Sorry can't find it lol"
Trying to change the range of the nail. This gives me no range at all. Anybody can see where I did a dumb?
void RangeExtender(On.NailSlash.orig_StartSlash orig, NailSlash self)
{
if (PlayerData.instance.equippedCharm_13 && PlayerData.instance.equippedCharm_18)
{
base.transform.localScale = new Vector3(self.scale.x * 1.6f, self.scale.y * 1.6f, self.scale.z);
}
else if (PlayerData.instance.equippedCharm_13)
{
base.transform.localScale = new Vector3(self.scale.x * 1.4f, self.scale.y * 1.4f, self.scale.z);
}
else if (PlayerData.instance.equippedCharm_18)
{
base.transform.localScale = new Vector3(self.scale.x * 1.25f, self.scale.y * 1.25f, self.scale.z);
}
else
{
base.transform.localScale = new Vector3(self.scale.x * 1.15f, self.scale.y * 1.15f, self.scale.z);
}
}
nyoooooooooooooooooooooooooooom
glorified dashmaster + glorified sprintmaster gives you 60% faster movespeed
fast


What means glorified charms?
mod I'm working on to upgrade charms
was originally meant to be in godmaster but was cut
so I'm trying to implement it through modding
Jh
the stagway coin looks sick
private void StartSlash(On.NailSlash.orig_StartSlash orig, NailSlash self)
{
orig(self);
PlayMakerFSM slashFsm = GetAttr<PlayMakerFSM>(self, "slashFsm");
float slashAngle = slashFsm.FsmVariables.FindFsmFloat("direction").Value;
tk2dSpriteAnimator anim = GetAttr<tk2dSpriteAnimator>(self, "anim");
if (slashAngle == 0f || slashAngle == 180f)
{
self.transform.localScale = new Vector3(self.scale.x * 0.32f, self.scale.y * 0.32f, self.scale.z);
self.transform.SetPositionZ(9999f);
anim.Play(self.animName); // nope
return;
}
originally it was golden rather than blue on the sides but I thought that swapping the colors of the dashmaster and sprintmaster would make for something interesting
These chrams was originally planned in GM?
this mod looks sick xhu
there's not much details on what exactly it was going to be in GM
only that it would "add depth to your charm collection"
the feature was scrapped in the end
@buoyant obsidian hi
but I was curious if it was doable here
Hi
here's normal sprintmaster
But assets and texts - from scrapped content?
vs coin
From unused files?
the assets and text are made by me
Oh...
Good work! (I hoped that it was created by TC)
yeah, me too
I think the difficulty was tuned around those new charms and so things are kinda busted
there were no assets, text, or even hints about what exactly glorification was supposed to be
so everything is kind of guesswork
Wait so we can override in-game textures? Is that new?
I know, I mean you didn't just replace the resources file, it's added in your mod's code?
I included an alternate texture; then I override the vanilla sprite whenever it's glorified
{
while (CharmIconList.Instance == null || GameManager.instance == null || HeroController.instance == null)
{
yield return null;
}
if(IsGlorified("GatheringSwarm"))
{
CharmIconList.Instance.spriteList[1] = Sprites["Exaltation.Resources.Charms.1.png"];
}
if(IsGlorified("Dashmaster"))
{
CharmIconList.Instance.spriteList[31] = Sprites["Exaltation.Resources.Charms.31.png"];
}
if(IsGlorified("Sprintmaster"))
{
CharmIconList.Instance.spriteList[37] = Sprites["Exaltation.Resources.Charms.37.png"];
}
}```
IsGlorified("name") is a function of my own
So the actual image lives inside your dll though, yes?
yea
Awesome. That gives me lots of ideas.
I'm pretty sure I saw a mod where someone replaced the radiance sprite with the mistake
@buoyant obsidian did you get it working for you
nope, Visual Studio is currently updating
oof
I've had this problem forever though
Visual Studio just doesn't work correctly on my PC
are you a student
yup
use Rider then
Rider?
I had no idea there were alternatives lol
Develop .NET, ASP.NET, .NET Core, Xamarin or Unity applications on Windows, Mac, Linux
still loading...

f
that just happened to me
refreshing fixed it
here's the student sign up https://www.jetbrains.com/shop/eform/students
and what's ReSharper that I see all over your stuff?
sharpREE
it's a VS extension/what Rider uses for it's suggestions and refactorings
so basically I should get it
@buoyant obsidian halp
Is there an alternative?
write the function yourself
;-;
holy shit ow
Sorry didn't mean to offend
oof
Just didn't want to add dependencies
add a dep to modcommon
no I mean literally do that
trust me every mod uses modcommon
excuse me
using System;
using UnityEngine;
public partial class NailSlash : MonoBehaviour
{
public void StartSlash()
{
this.slashAngle = this.slashFsm.FsmVariables.FindFsmFloat("direction").Value;
if (this.slashAngle == 0f || this.slashAngle == 180f)
{
base.transform.localScale = new Vector3(this.scale.x * 0.32f, this.scale.y * 0.32f, this.scale.z);
base.transform.SetPositionZ(9999f);
this.anim.Play(this.animName);
this.anim.PlayFromFrame(0);
this.stepCounter = 0;
this.polyCounter = 0;
this.poly.enabled = false;
this.clashTinkPoly.enabled = false;
this.animCompleted = false;
this.anim.AnimationCompleted = new Action<tk2dSpriteAnimator, tk2dSpriteAnimationClip>(this.Disable);
this.slashing = true;
this.mesh.enabled = true;
return;
}
this.audio.Play();
if (this.mantis) // Burning blade?
{
base.transform.localScale = new Vector3(this.scale.x * 1.35f, this.scale.y * 1.35f, this.scale.z);
this.anim.Play(this.animName + " F");
}
else
{
base.transform.localScale = this.scale;
this.anim.Play(this.animName);
}
if (this.fury)
{
this.anim.Play(this.animName + " F");
}
this.anim.PlayFromFrame(0);
this.stepCounter = 0;
this.polyCounter = 0;
this.poly.enabled = false;
this.clashTinkPoly.enabled = false;
this.animCompleted = false;
this.anim.AnimationCompleted = new Action<tk2dSpriteAnimator, tk2dSpriteAnimationClip>(this.Disable);
this.slashing = true;
this.mesh.enabled = true;
}
}
except debugmod and like 2 others
the non-cached version would be like
self.GetType().GetField("slashFsm", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(self);
@rustic stag
sorry if I mistyped it I'm on mobile
56 why does the camera suck
yeah i know
did it not work
it just didn't fix it
my house is 10mb down 
ok wtf is going on here.
200 modcommon downloads wtf
yeah and still 2.5 more hours before "day 4" ends
these are per day not cumulative btw
imma download it a bunch of times to throw you off
I'm already thrown off lol
that's why I asked "wtf is going on here"
because i downloaded it a bunch of times to throw him off
yeah but where's the debug chart that shows a 90000% increase from pre-gm to gm

in #archived-modding-help just count the amount of "how do i unhide the menu" posts
I really need to add that pop-up
serious answer: I don't host debugmod although I'd be willing to if y'all wanted.
Also serious: I was trying to guestimate debugmod downloads by assuming everyone who downloads the api but not modcommon was just using debugmod
no matter what you do people will find a way to miss it
it certainly doesnt hurt to have it
call it the You Know I Had To Do It To Em
veru rad absrad nail only when
@hazy sentinel https://i.imgur.com/EJCxQgX.png
how do I set load order of a mod again
ok but is absrad quick slash unbreakable strength really different from absrad abyss shriek shade soul
dd is a thing though
much thank
its not just shriek
fun fact. later mods get priority for their hooks (overriding older hooks) with the exception of GetInt and Language hooks where having a lower priority means your text/ints will apply.
what's the point in that?
wouldn't it be safer to have priority overwrite everything?
otherwise you might end up with two broken mods instead of one broken mod one working mod
who ddarks in absrad
i did on my first radiant kill
only losers who need the iframes would
which is why i redid it nail only 
no it would be smarter not safer. but the way it's done is the lazy solution. And rather than fix it in the API I just split redwing into two assemblies with different load prios.
The real answer is because I'm too lazy to send patches to the modding api. I also wrote a hack to use two TGlobalSettings, both with different names and neither with the dumb "GlobalSettings" affix.
ok, I'm gonna make the installer mac compatible
tf
try moving Managed to the folder all your repos are in
rename it build or something
and add it from there
also sometimes you can just build with the warning symbol anyway iirc
not in this case sadly
Rider msbuild?
ye
lemme find it
I think I was having a similar issue
(I'm using my system msbuild and everything's working 100% fine so it should work for you too /s)
Thought: I have a feeling that people whose Hollow Knight install folder is "Hollow Knight Godmaster" instead of just "Hollow Knight" pirated the game.
and that by having this folder name the modinstaller won't detect it as valid.
https://media.discordapp.net/attachments/462200562620825600/483992436834697216/Capturar.PNG screenshot for reference (not mine)
I wanna confirm it but the pirate bay is down so I can't search it.
just ask the person who sent the screenshot lol
^
don't they need to select the data folder?
not the managed one?
also, did you get the API and stuffs up on the drive? or is it still hidden away somewhere else that the installer is referencing
it's been on the drive
it's on both the drive and my website but the installer links to the latter rn.
gotcha
@compact sedge I have a folder for every patch with different names
I'm not saying that having a folder structure like that makes you a pirate but that the pirated thingy has that folder structure and it's being detected as invalid by the installer since the folder name isn't "Hollow Knight"
hey, uhh
shasum the steam dll maybe
I literally just set the charm level to 5
cheat right before an update comes out
when the update comes out it'll break
ez
2:06 isn't 90 seconds
prove it
r/theydidthemath
i knew it
@copper nacelle homosexualis
wait
I can just check for the steam/gog api
steam
gog
humble is simply gog, right?
where does pale court play
wp idk
Haven't done wp on current but yeah probably
is this a trick question
I don't have a steamapi file or a gog file
Maybe path of pain, that was just credits music before
ill check

🔫 
well yeah it has to do the overlay somehow
since I'm implementing a mac version anyway, I might as well get the current OS
hm do creatures get stronger as you level up with bonfire?
MSBuild didn't help
no but they do get stronger as you kill dreamers
I guess my computer is just unable to build shit
Don't they also scale with level?
ah hm. I may have to focus on a str/luck build then. Get the most out of single hits
it balances out around 10 str
after that, your dps is always greater than vanilla
assuming you only level str/lck/dex
interesting. Thanks
now if there was just any sort of decent geo grind after Divine's cashgrab
Colosseum, failed tramway, and relics all give a lot of geo very fast though
colosseum's the most fun tho
maybe could also just level int and instantly kill every enemy with one spell
my favorite execution platform is 1977 france
also nice veru
pale court doesnt play in pop
maybe it does when you get sub2:20
soon â„¢
i still haev to learn trinomi's cycle
and i have a new strat that saves like a second on the second to last room
it's just the cancer dash basically
pale court doesnt play on wp
i even sat on the stupid throne
is it just not in the game
why would it be in the game
secret area inc
ok done
maybe its just called court now
maybe it's called pop2butnotsoundtrack
maybe it called ur mum
alexa play
i love gg4-31 sad 1 main
AA how's this look to you:
uh idk what it'd do for the gog linux version
and I don't own the game on gog to test
makes no sense tbh
"Files folder"
people who translated windows to ptbr were pretty stupid tbh
pasta de macaroni
so much mistranslated shit
does it say "Pasta de arquivos" even if it's empty?
ye
pasta de archives
nice
well its still a pasta de arquivos it just doesnt have any arquivos in it
yeah mick, in ptbr, archives and files are the same word
ptbr e lixo
i would hate archived pasta
ptk can attest it tbh
would taste stale AF
just add water
unless you're making your own pasta, it's pretty much the same as eating archived pasta mick
that shit's old af
@copper nacelle u got gog on linux/mac?
I'm adding anti-piracy shit to the installer
i'm a little curious, in what language hollow knight is coded ? and is it with unity engine ?
c# ye
english
suicIDE
wow rude

gottem
do it or no balls?
do it
get rid of "please"
open the hk steam page on their browser

notice that I delete their game folder
o
too much?
nope
maybe
it's fitting
wow virus
only if you're sure of no false positives
^
^
yeah, that's my fear AA
was about to say
is there any other place where you can get hk
I love that it deletes 100% of the mac installs
that is not steam or gog
for now, AA
I need 56 for that
you can get it on humble bundle, DLK
but I think it's just a gog/steam code
there's also the indiebox cd
indiebox cd is really outdated version plus steam key
but that's waaaay outdated
so what is it checking for? okay, steamapi
yeah, also steam key
but you do have the steam_api.dll right? Mick
I feel like you're gonna get at least one false positive with that anti-piracy shit
I feel like there's gonna be a bug that triggers it mistakenly
comment
I'd say just let it be
somewhere in version 10.1 or something
Does it only check for the existence of the file?
bug haha
i don't think so, gradow
but they would need to know what to work around
i'll have to check
tbh don't delete the folder but do open a steam page and also close the program. and maybe something else too if you really want.
That is true
i think it's just the HK data folder and the exe
yeah opening the steam page would be great
then i put the .txt in there to let steam read it as a non-steam game
prob dont delete the folder
Have it redirect to the steam page to buy it in browser lol
as much as i would like it
have it open 10 porn pages
have it link this https://www.humblebundle.com/store/hollow-knight?partner=eastsidelag
:)
nou
make the desktop bg play lightbringer
have it download and install bonzibuddy.
make it replace the assembly with a standalone blackmoth assembly
or just rick roll em
except the dash is always 0 damage
make it override every sprite to this
wtf
u mean this

i dunno. i'm not at home
fuck
tbh you should delete the modinstaller exe if you can. idk if that's possible on windows tho
I have no idea how Process.Start works, but it's just like magic tbh
you can't, AA
that's why I need the AU, for instance
not even rick rolling them
change desktop bg to mickWattle tbh
delete system32
how are those suggestions any better than deleting the game folder?
now we're talking
that still requires a secondary executable, sean
it's simply deleting the first using the second
it's running a bash script to delete the program
to be tbh idk that fucking with peoples games will encourage them to buy the real one.
change the e to an е
so I can at least have some fun
lol. the idea of bricking someone's game is hilarious though
just imagine
since they didn't pay for it
they coming here
oh man the salt
"i tried to install mods and now it wont work"
did you try turning it off and on again
but yeah
what if it downloaded and installed the pirate mod
a mod that just fucks with shit
this is by no means meant to encourage them to get the game
because pirates will pirate
like sets the damage to 1 or makes random enemies unkillable
there's nothing you can do to encourage them
pirate charm that gives u a cannon and a pirate hat
or fucks with your dashes
why would you pirate the greatest cost/value game
wouldnt that be any free game
plenty of reasons
no that's minecraft
Ok
no that's Terraria
none are, like, correct reasons
but there are lots I can think of
56 if you have a version of the bindings mod that has all the bindings always on it with no way to turn them off it should install that.
get it to 11043753891211241552174222332611 hours and quit
$2 for 800 hours u mean $4.99 for 2000
less value tbh
and then have it randomly kill you once every 5-10 minutes
using a coroutine and a rand float
make every enemy do a random amount of damage
make the Hollow Knight anti-piracy make Internet Explorer your default browser
from 1 to 4
why isnt my pv empty hopping i dont get it
you aren't trinomi

cause pv isn't actually truly empty didn't you pay attention to the lore smh my head
but is he void
thank you im glad you noticed
so
vote
should I silently kill the pirated game
or
should I quit the installer, show the message and open steam page
if you can make sure it doesnt affect people who bought it yes
you spelled "and" wrong
open the steam page 100%
I remember game dev tycoon making headlines when its pirated version subtly fucked with peoples games.
open the steam page 200 times
but yeah imo do the latter
and on top of that if you can make sure it only affects pirated copies then sure why not delete it
open all of 56's firefox tabs at the time
by "silently" I mean, pretend like I didn't notice, but screw with their files or with the actual gameplay
might aswell delete system32 if you are going to do that
wow stealing my ideas
tbh when I'm done with the combo mod I'm down to help work on a fun meme pirate mod and a pirate modding api that doesn't show anything in the top left. but until then open the steam page.
what if radiance is void?????????????????????????
i swear he doesnt empty hop
ur a youtube famous gamer
T3RRICID3, Lunch, Gallagade and Milkyak
can't you read or what
why does discord have so many books

can i friend you on steam verulean
i love your videos
really helped me do markoth radiant difficulty
can I friend you on steam so I don't feel so lonely?
how can someone fight pv for 10 minutes and get 2 hops
then i fight him for 2 hours and i get none
git gud tbh
idk but he hops all the time for me
actually you have to be swedish
just debug invuln and stand there for 8 hours straight
empty hop happens when you are far away and he's jumping to you or you're above him and he can attack you that way
I think
infinite pure vessel 
mod where pv does void tentacles in every direction when
when im far away from him he just teleports and lunges
OOB and you'll always be far away from him
shoot him with a glock
Directory.Move(Properties.Settings.Default.installFolder + @"/hollow_knight_Data", Properties.Settings.Default.installFolder + @"/holIow_knight_Data");```is this too evil or nah?
what does that do
o -> о
oh i see
thanks
can you even tell the difference?
@solemn rivet LMAO
https://clips.twitch.tv/AssiduousResoluteHeronDansGame @cunning lagoon
no
ç

ça va
i dont get it
çomebody onç told me
it usually happens when you're fighting PV
apparently not
finna load up hk and get an empty hop within the first 3 tries
what does the binding mod do
gives you all bindings for practice
what's an empty hop?
hop with no other attack
when he just jumps but doesnt do an attack
is that... good?
i hate them
ye
im trying to make pv do an empty hop because apparently it can happen but i have never had it happen to me
they're literally Lost Kin's worst move
die
wow empty jumping no eyes killed the chat
oh hey i died to pv after he died and it didnt count
yeah idk what the guy was on about but dying to bosses after killing them doesnt give you completion marks
maybe crystal guardian does idk
what does QoL mod, MoreSaves mod, Boop mod, Charming mod, and charm notch mod do
there are descriptions in modding-help pins
ok
only cg2 does afaik
tendrils have a short range
you have time to dash away from tendrils def
unless he uses tendrils such that the side your on has not enough room
then walk towards him and dash through him
tbh I basically already do pv mostly no jump. I've only recently been learning to jump his dash attack.
i was under the impression that everyone just pogoed him
its the best way to do it imo
I'm too attached to my dash, and worried about him jumping on top of me when I'm pogoing him
and its more fun that dashing through everything
well you dont pogo him nonstop
and whoever does that is a madman and should be stopped
@copper nacelle is this u
k not gonna hunt for empty hops cause i don't hate myself as much as kuro
didn't get any in about 6 kills
f1
there's a gruz mother outside the gates in the area where there's normally aspids
thanks
is there a save state mod? i am outside of pure vessell room for the first time and I have full HP. my asshole is puckered.
HARD
there is for 1.0.2.8 
just go for it
if you die then you can practice him a bunch in the hall and try again
you'll get so much more satisfaction if you do it without cheating
man, it wasn't so bad to reach this point tbh, but I guess after the pain uumuu caused me in P3 really has me being scared
you beat p3 and are on p4?
yeah
if you really want you can use debug mod to cheat but you will seriously feel a lot better if you dont
Is p3 harder? I guess it might be
All bindings I think it might be harder but not sure about normal
over all the bosses in p4 are "harder" but p3 is an RNG fest with zote and uumuu
really can fuck up how much health you have going into the last fight
H...how is zote anymore RNG than another boss???
dude zote fucks you up
his flailing charge, the position of the explodey bugs
the bugs he summons
I don't know if i'd call it RNG
replace radiance with zote and it applies to this
but he's hard
All bosses are RNG if you are going yo consider that some patterns and moves are harder than others
you cant punish zote the same way guaranteed every time where as most bosses you can counter attack them the same way every time they do a specific move
I think maybe I feel RNG is different from what others say heh
that's why i say he's got more RNG than most bosses
Ok
i can beat him consistently but certain things he does dont have consistent answers everytime
anyway, this update is fun. i never thought i would get so good at the game in just 3 days
To me RNG would be an attack that you have no chance to react to and no strategy to put into place to avoid it.
for me the first time I beat any boss it's almost always me getting really godly RNG and it only using easy to dodge attacks.
Like see attack dodge left or right, 50% chance of a hit.
Haven't fought abs rad but the only thing I don't like is the explosions in the focus attack of PV can hide the sound effect of the PV dash which I use to jump.
i just keep him onscreen all the time
i prefer not relying on audio cues as much as possible
my brain is wired to use audio cues. I have no other choice
I mean realistically if I fight it enough I won't need them as much
then you'll do well at absrad
but I can react to audio much faster
cease to
k
ask your parents tbh
me every time i wake up
also
also I don't have a gog install on Mac/Linux
for now I think I'll just assume that if the person's using linux/mac they know what they're doing and probably not pirating
mac user knowing what they're doing
to be tbh can you even pirate the game on linux?
I haven't checked
i dont really wanna find out
it is working
it is updated
but anyway no way our userbase is large enough or technically incompetent enough to have any real market for pirates.
wow GoG pretty big meme
i have 112 but i havent beaten it yet
epic
considering pirating software is like the riskiest thing you can pirate, and anyone who can stick a USB stick with a different OS on their computer (harder than it sounds, considering the level of technical competence of the average person) probably at least knows enough to know that I assume.
I mean
😔
I don't know if there even is a pirate version out for linux tbqh
Glorify Charms
yeah that's what I mean. not only is there no market for it, the few people who do use Linux probably aren't dumb enough to do that I hope
the only market for pirated software on Linux was windows games in sandboxed flatpak installs. But I think Steamplay is singlehandedly killing that.
I have ubuntu installed on a dual boot but I haven't really used it too much
well that's more than most people xhuis
same tbh
ubuntu's latest release somehow fixed the issue I was having with nvidia
not sure how
I'd be more inclined to use it but I dunno if I can do much with it
compared to what I do actively on windows
(games, coding)
that's how they get you
I just need quality gamz
tbh for me it was like this: I dual booted linux for like 6 months but basically never touched it. Ended up on a 2 week trip with nothing but an xubuntu laptop (it was a chromebook with chromeos uninstalled and replaced so I had no other choice) and fell in love with it and basically switched everything over the second I got back.
stockholm syndrome
possibly
that's pretty much my story too
my hdd died and I bought a new one online, but it took like 2 days to arrive
during that time I tried installing windows on my external hdd but windows doesn't let you install on external drives, for some reason
so I installed ubuntu to give it a shot
that was 2014
and I only went back to windows december 2016 when I got this notebook with nvidia gpu
and ubuntu was like naw
Yes
I exclusively make my mods on Linux using Rider
And as far as gaming goes. I used to own a mac and game on it growing up as a kid so my prefered genres were already genres that often get ported to other OSes (mostly indie games but also AAA strategy games like Civ 4). Thus the transition as far as gaming was easy. I only wanted like 3 games in wine and I've since quit all of them.
the thing that got me was how it just downloaded generic drives for all my hardware without me even realizing what it did
a few days later when my hdd finally arrived and I got to install windows on it only to realize it wasn't connecting to the internet, my kb/m weren't working and so on
and I was like "oh yeah, I need to install stuff"
ye installing drivers esp on windows 7 was a real pita for me. had to make a second flash drive with the exes preloaded onto them, or keep track of like 9-10 different random CDs that came with my hardware
kill me
is this loss
maybe now you'll think twice before drinking coke
don't do coke kids
is that the coke incident of 2018
45 why have you done this
smh not using 12000 dollar keycaps with liquid proof coating.

why would 23 do this
@cunning lagoon
exhibit A
this is disgusting
water master race 
sparkling water tbh
Water zero
no water zero is gross. I only drink water with real sugar in it
Water zero is full of sugar, you're thinking of diet water zero lite
is this loss
you know what's sad
the invincibility mod just got updated for GM and look at its downloads
;water juice
Idk if we're tracking individual mod downloads through installer anywhere
But debug downloads are like 90% for cheating godmaster
is that invincibility mod
Yes

people really dont want to put the slightest effort into getting better at the game huh
yes, if you want I can even make you an account on the server sean
Sure I guess
if you want a un different from your discord one just pm me
Nah
this mod is literally just a modded assembly
Yes
Hard mod
https://www.moddb.com/members/nianeyna who is this guy
View the Mod DB member nianeyna to see their friends, groups and content shared with the community.
it's got almost as many downloads as infinite grimm got in a week in about a day
Hello ! You can updated the invulnerability mod for the new update of Hollow Knight please ? (I'm French, forgive my English)
my keyboard works
he's done it
type something complex 56
type anything with an e at the end
something complex
type ptk's name
i heard various explosions
pneumonoultramicroscopicsilicovolcanoconiosis
ptkyr
^
nothing
what did he mean by this
remove all the keys
I can kinda see where some people are coming from what with the whole invinc thing
I'm not sure I'll actually ever beat pantheon of hallownest because my skill cap is just not high enough for it
have you tried playing the game
i have 150 hours in hollow knight
lmao absrad free
i have like 20 more
I think I'm about as good as I'm going to get
just play 20 more hours
better to die trying than to cheat
not saying I'm gonna cheat to do it, but I understand that some people might
to be tbh fast said absrad was impossible
says the guy who literally cheated his way through all panths in less than 20mins after release
I have my fair share of gripes with the way godmaster was handled
not enough to break the game but
I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.
I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.
nah, I think GM is fine tbh
I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.
I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.
ptk, dlk that was reddit or discussion? I forget
favourite part is always the last sentence
some guy on monstah's youtube comments
it was a comment on monstah's yt
right
753 did you get refs to work
considering I've bought HK 3 times and poured hours of my life into watching it, practicing, and getting better, I don't think I have much right to complain anyway lol
what has #archived-modding-development become


