#capes are small for some reason
1 messages · Page 1 of 1 (latest)
do you have the smolpeople secret?
nop
Also modlist would be cool to have
also not a problem with dulkir it happens on vanilla with only skytils
i do however use feather
oki
issue found
I was bout to say that >:c
has anyone come in with a similar issue b4
Why feather is bad:
- had a paid beta version that scammed users with a "fake" beta server
- had stolen free mods and put them behind a paywall
Stole code directly from popular mods like Sk1er's Patcher while violating Copyright
- completely obfuscated (unreadable)
Mod devs can't fix issues since they don't know what feather does
We don't know if they're sending your information elsewhere (it's known that they send data to sketchy servers, possibly sensitive data)
- Their support team uses remote access software to access user PCs
- Modifies Forge a lot, breaking compatibility with mods
- They have an FPS Boost which relies on stolen code and simply fake-displaying a higher framerate
- They stay stubborn unless a large backlash occurs
- Lie to their users to contradict the other developers
- Refuse to ban ratters from their discord server
The Solution:
Uninstall Feather.
is there a usable alternative for 1.7 anims?
pretty sure there is
ive found none without more problematic compatibility issues than feather gives
that is why ive stayed on for several years the essentials are kinda just missing from forge somehow nowadays
or cause big issuez
I can't remember the feather alternatives list sadly
yeah i think the main thing is just 1.7 anims
some1 made a sprint mod recently that i think fixes that part of the issue
but that used to also suck youd have to enable sprint on startup every time which was annoying
oh ty sm i will check this out
btw you sure about that? Cause I'm pretty sure that's one of the only features that could cause that
(Since iirc feather messes with your player resulting in it not being able to be resized)
yep 100%
never downloaded small people mod or anything adjacent but dulkir
and dulkir out doesnt fix the issue
it's in skytils
it's just that
and it appears the cape mixin is active
on a full size player model
im not rly sure what u mean by this sentence
it's a smolpeople secret
yeah what does that mean?
ive never like used smolpeople and dont know what it is
it means what it says on the cover
i actually do not know what you are talking about im sorry ðŸ˜
like, what cover
what does secret have to do with it
idk
it's a saying
i have autism i am sorry friend it isnt computing for me
thanks for the help btw these resources are great
yeah, it shouldn't be modifying the cape size unless the model is registered as a child
Polyfrost's OverflowAnimations or Sk1er OldAnimations should work great, avoid all other old animation mods on curseforge they don't have good compatibility
you're green wtf
I like it
I guess I got it cause i opened the websocket pr with the basic fix but i closed it since a better one with channels opened and merged after, also got mentioned on release notes
Pretty wholesome to still get credit even if the pr was closed, I appreciate it lol
mhm they are!!
imagine having a good experience with open source, couldn't be me
not if I do it first :)
smh at least credit me for the stuff you take
gonna steal all this stuff :3
where is this fork located, i might add some to my self build for personal use
Skytils is a Hypixel Skyblock mod! Be careful, malicious copies are distributed across GitHub. Confirm on discord.gg/skytils (807302538558308352) - Kemmisch/SkytilsMod
the instant buy confirm thing is useless now
the experimentation solvers aren't on github
yea I realized when scrolling through
I just forgot to remove it from the list D:
the trapper solver is really neat
if you can figure it out you should add it
the main branch is a merge hell so likely have to cherry pick and add commits over a fresh base lol
@uncut hearth why have you never opened PRs for them?
contributing to upstream is always good
code is also hell
i didnt check all commits, but other than personal changes like songreaver luck instead of skytils user luck (lol) i think it looks fine
you even added entries in the locale file instead of hardcoding which i would just hardcode if i was making something for personal use, so it almost looks like a pr but it's not
i only did that for a while before just not bothering
that was for trolling my guild a bit
ah understandable
you'd have to split all features to single branches and create seperate prs which will be quite bit of work with current git history
yep
and im fairly sure loads of it doesn't work or isn't finished too
I'm gonna do some of the simpler stuff
@uncut hearth ya fine with me pr-ing:
https://github.com/TakoTheDev/SkytilsMod/commits/feat/pfs_more_items
and
https://github.com/TakoTheDev/SkytilsMod/commits/fix/key_not_value
sure
also with the matches any of function
is there a reason you don't just use in
instead
wdym
maybe I'm blind but I don't see a matches any of function in those commits at least
just in general
equalsAnyOf
why not just use the in case by case
good question lmao
@quick reef is there any reason not to do the x?
ig I got a commit ready with in listOf and depending on what lily answers I'll push it
bc I think I've used in listOf for most of my code
but yea looking at what the stuff does, I think interally it's almost identical
contains just does indexOf(stuff) >= 0 and indexOf basically is an equals check against all elements
idk how the jvm/jit optimizes the statements
I can't be bothered to look into it a lot, but equalsAnyOf (I accidentally named it ...OneOf) looks like it'd be faster since it only has the array which it goes over, while listOf approach creates an array and a list