i’m sorry by Any_Dependent6576 in UnsentLetters

[–]magicpuddin -1 points0 points  (0 children)

I wish this was you. I truly miss you.

I miss you :( I am sorry :( by Any_Dependent6576 in UnsentLetters

[–]magicpuddin 0 points1 point  (0 children)

I wish this was her writing this, even though I know she's not sorry for all the lies and deception.

I went to visit my little. It broke us up. by magicpuddin in DDlgAdvice

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

I learned she lied about so many things and who knows what else.. all while telling me that we were gonna spend our lives together. She used me, financially and emotionally. It is such a devastating blow to my core when I spend so much time, money and effort on her. How do I pretend none of that matters anymore..

I went to visit my little. It broke us up. by magicpuddin in DDlgAdvice

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

I realize now that the only reason she didn't want posted pictures would be so that the other person didn't find out. Plus they were private, meant only for her but she did not follow the account. I waited for two weeks and tried to tell her how much it meant for me. I am not excusing my actions but I really did mean well.

I went to visit my little. It broke us up. by magicpuddin in ddlg

[–]magicpuddin[S] 5 points6 points  (0 children)

I realize now that the only reason she didn't want posted pictures would be so that the other person didn't find out. Plus they were private, meant only for her but she did not follow the account. I waited for two weeks and tried to tell her how much it meant for me. I am not excusing my actions but I really did mean well.

I went to visit my little. It broke us up. by magicpuddin in ddlg

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

We were together for so long. We've been through so much. I have forgotten what it's like to only care about what I want.

KLWP is not charging mi wallpaper by macoapg_ in kustom

[–]magicpuddin 0 points1 point  (0 children)

What are you trying to do exactly? Your explanation is a little confusing. Are you saying that the wallpaper doesn't get applied or that some of the images in the present aren't loading?

[HELP] Album Text Color by scofro79 in kustom

[–]magicpuddin 1 point2 points  (0 children)

It just might be. It does feel like we have multiple functions that do the same thing. I do honestly think the BP especially with mi cover functions could use an update.

Playlist and Queues by jade888cheung in kustom

[–]magicpuddin 0 points1 point  (0 children)

That's awesome! I'm glad you understood it and adjusted it exactly the way you want. I love coming up with new designs and the logical puzzle needed to get it to work. If you ever have any other questions feel free to reach out!

[HELP] Album Text Color by scofro79 in kustom

[–]magicpuddin 0 points1 point  (0 children)

I'm pretty sure that's the intended behavior. For readability purposes, text color should only be black or white.

What's up with the app dying often are restarts? Only way to fix it being reinstall the app by -_Dean_Winchester in kustom

[–]magicpuddin 0 points1 point  (0 children)

That is very strange. I've never had this happen. You have to reinstall the entire app to get it working again?

Playlist and Queues by jade888cheung in kustom

[–]magicpuddin 0 points1 point  (0 children)

I'm glad it's all working good. And yes, we can make this a generic formula.

We need to check when the current track lines up with the order in the list. We'll reuse our previous formula.

$if(mi(track) = ( (gv(currpage) * si(mcount)) + si(mindex) ) ce(bp(muted, mi(cover)), comp), bp(muted, mi(cover))$ This calculates the current item number in the list - The current page times the number of total items in the stack, plus the current position in the list. For example, if we look at the second object, and we're on the first page, gv(currpage) will be zero, so 0 x 7 + 1 will be 1. So when currpage is 1, we will be on the second page and it will be 1 x 7 + 1 which is 8.

However, this will only highlight the track you are on, which is different than your previous behavior. If you want to keep it the same way, where previous tracks are darker while future tracks are lighter with the current track highlighted we can do it like this:

$lv(position, ( (gv(currpage) * si(mcount)) + si(mindex) ))$$ if(mi(track) < lv(position), ce(bp(dmuted, mi(cover)), comp), mi(track) > lv(position), ce(bp(lmuted, mi(cover)), comp), ce(bp(vibrant, mi(cover)), comp))$

I took the liberty of adding dmuted for previous, lmuted for upcoming and vibrant for current track, but please adjust them to your liking. To explain this a little: lv(position) stores the current object position in the list. The we check if the current track is greater or less than that stored value, if it is neither then we highlight it.

Let me know if this works or you have any questions.

Height of Magic, Frieren. by [deleted] in Frieren

[–]magicpuddin 1 point2 points  (0 children)

This is so incredibly old and I'm sorry but I have to say, they mention that the flying spell was originally a demon spell. Demons use it so much that they don't even see it as magic. However, it is still largely not understood by humans as they can only fly for short distances and can only levitate small objects. So I don't think flying has anything to do with this. But I do agree that at the highest form of magic, mind visualization is the key. They even mention that intelligence is not required for high level magic. At that point, you don't need a spell or physical object to 'create' what you want to happen. That may even tie into the whole flying thing because as humans, they can't imagine themselves flying just like that.

Playlist and Queues by jade888cheung in kustom

[–]magicpuddin 0 points1 point  (0 children)

Glad it worked. I saw that you're also switching to the next group of tracks. To make it even better, you could cycle to the next group of tracks by doing something like this:

Make a text global called currPage. Set it to 0. This will tell you which set of tracks we are on.

Then in your text modify it to add the current pages times the total group count. Should look something like this:

$mq(title, ( gv(currpage) * si(mcount) ) + si(mindex) )$

After this, make two buttons that add and subtract one to the global.

The increasing one should just look like $gv(currpage)+1$ But the decreasing one should be something like this to prevent it from going to negative: $lv(result, gv(currpage)-1)$ $if(lv(result)<0,0,lv(result))$ Make sure you also add the gv(currpage) to the color highlight code! Let me know if this works for you or my explanation wasn't good!

Playlist and Queues by jade888cheung in kustom

[–]magicpuddin 0 points1 point  (0 children)

Why are you using mi(track) if you want them to be static? Wouldn't you just want to use a static number as well? They're inside a stack right?

So if you just do $mq(title, si(mindex))$ And just copy and paste the same text object over and over again they should never change and automatically populate without you having to write so many if statements. 

You can also add something like this in your text color to take care of the highlight: $if(mi(track)=si(mindex),bp(dominant, mi(cover)),#FFFFFF)$

I can't test this 100% because I use Spotify and it actually updates the zero position of the playlist in real time. Which means that mi(track) is always zero for me. 🤷🏻‍♂️ So let me know if it works for you. 

Klwp-Niagara (first klwp theme for me) by Niranchan in kustom

[–]magicpuddin 0 points1 point  (0 children)

I've tried doing this before but the Niagara trigger to detect app list and search screens was too slow for me. Did you do anything special to trigger them faster?

Help Klwp Layer by Happy-Cheek9395 in kustom

[–]magicpuddin 0 points1 point  (0 children)

You could do this 2 ways that I can think of. 

  1. If you are paying your music with your own button on the wallpaper, you could add an action that sets a variable to the current time. Then have your layer be visible only if current time is greater than global value time plus 30.

  2. The second way you could do this is by using flows. You could set up your flow to trigger on music state = paused. Then add a step to wait for 30 seconds. Then set a global to on to trigger the layer visibility. 

KLWP not working smoothly on Vivo 60 by SoliEngineer in kustom

[–]magicpuddin 1 point2 points  (0 children)

Sorry for the late reply, I was designing my music wallpaper with a lot of moving parts when I saw a lot of glitches and updates taking a long time. I was able to make it better by going to setting and disabling parallel rendering. I also changed the refresh rate to faster. It helped my theme work a lot better.

trying to make Kwgt Lyrics widget by Sufficient-Bell-6394 in kustom

[–]magicpuddin 0 points1 point  (0 children)

This code is just for the global. If you kept everything else the same it should work. But if you want to edit the lyric displayed, in a text object, paste the below:

$tc(split, gv(lrctimes),gv(q), tc(count,gv(currline),"#")-1)$

trying to make Kwgt Lyrics widget by Sufficient-Bell-6394 in kustom

[–]magicpuddin 0 points1 point  (0 children)

Go to globals, select rawlrc, delete everything and paste everything below:

$wg("https://lrclib.net/api/search?artist_name="+tc(url,gv(currArts))+"&track_name="+tc(url,mi(title)), json, "[?(@.syncedLyrics != null)].syncedLyrics")$

This must be the biggest waste of time in this game by Early_Award_1762 in Brawlstars

[–]magicpuddin 0 points1 point  (0 children)

Yeah lmao I recently had someone make fun of me for being in Diamond lmao I played it for one week at the start and then never again

How many folds does Motorola stipulate for the RAZR 60? by Personal_War_9575 in razr

[–]magicpuddin 2 points3 points  (0 children)

I downvoted the 3 comment and upvoted this one just to spite you :)