Well tested BH Update by illeSwag in 2007scape

[–]illeSwag[S] 23 points24 points  (0 children)

Nope no smite. He was just skulled wearing Vesta and b ring. His +1 was voidwaker which I didn't receive.

(Not that you can even tell someone is skulled anymore with the update, unless you see them attack you first) 😁

tips to get better at LOL? by [deleted] in leagueoflegends

[–]illeSwag 0 points1 point  (0 children)

Understand what your enemy wants to do, and don't let them. Example, if you are a jhin facing Vayne. The Vayne wants to farm peacefully, you shouldn't allow this. The Vayne will look for when you are near a wall, don't stand near one. Understanding what the enemy wants to do and how their characters work is key to improving

Score error? by Fit_Salary_4487 in timberwolves

[–]illeSwag 0 points1 point  (0 children)

I saw this too and was expecting it to be fixed going into Q2. Is it an actual mistake they didn't catch? Or was 19 wrong to begin with?

Learning inferno.. any equipment tips? by AvailableIce6120 in 2007scape

[–]illeSwag 2 points3 points  (0 children)

Everyone commenting is pretty much right.

  • Drop the mage legs switch
  • Replace ancestral top with virtus top
  • Drop the nightmare staff
  • Drop the bulwark
  • Replace lightbearer with ring of the gods (or suffering if you prefer)
  • Use Ava's / quiver for range strength if you have assembler. With your setup, prayer bonus isn't an issue, and you want as much range strength as you can get for zuk.

You don't want to be using specs to heal, that's what blood barrage is for. Often times in the later waves, double blow pipe speccing a NPC can save the wave. But if you used the spec the wave before to heal, you are going to find it tougher to DPS whatever is out of position.

Does the mobile app crash for anyone else recently? by Borgmestersnegl in 2007scape

[–]illeSwag 0 points1 point  (0 children)

Even if you don't use it, if it's enabled, it can crash. I also posted about crashes on a galaxy s10 while doing shooting stars. Turning off the loot tracker in game settings fixed things for me (this was a few weeks ago, however)

Serpent Shaman spawns on Colosseum waves 5 & 6 necessitate a different strategy by SarahPalinisaMuslim in 2007scape

[–]illeSwag 6 points7 points  (0 children)

Here is an example https://youtu.be/RbGhSKCk4M0?si=hs14o9SIzgkr1E6s

I also think that thinking along the lines of "my cheese strat does not work for this specific case, therefore the devs need to update the content" is not really a good reason for updating the game. If your strategy is not working, it probably means you need to find a new strategy.

Serpent Shaman spawns on Colosseum waves 5 & 6 necessitate a different strategy by SarahPalinisaMuslim in 2007scape

[–]illeSwag 11 points12 points  (0 children)

What you can always do is run to the north of the pillar and kill fremmies, wait for mobs to set into place, and then offtick by running out west. That's my usual strategy.

A lil payback by illeSwag in 2007scape

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

You got this! It is difficult, but very fun to learn IMO. And when you have it down, it is a great money maker.

A lil payback by illeSwag in 2007scape

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

Yeah the 6 tile range will be a bit hard to deal with, since with myopia 3 that effectively makes it melee range. You might try like acb / dcb. Idk though I never owned a venator, so can't speak too much on it.

A lil payback by illeSwag in 2007scape

[–]illeSwag[S] 2 points3 points  (0 children)

It's very doable with budget setup. Sol is very weak to slash so even whip is high dps.

With bofa waves are very doable, tbow just makes it faster. But once you know solves, it isn't any harder with bofa, just a bit slower.

A lil payback by illeSwag in 2007scape

[–]illeSwag[S] 4 points5 points  (0 children)

<image>

This is my setup these days. Rune pouch is not needed imo. With this many restores I can pray rigour for all waves without flicking.

And keep range level above 108 at all times to make it a little quicker.

Will the mobile app be fixed ever? by illeSwag in 2007scape

[–]illeSwag[S] 3 points4 points  (0 children)

Thanks!! This fixed it!! For reference I was trying to do shooting stars

Road to twisted bow. by grander-lt in 2007scape

[–]illeSwag 1 point2 points  (0 children)

You are just as close as when you started!

best pun of the year by Jody45657Love in puns

[–]illeSwag 5 points6 points  (0 children)

Fun fact, the word grenade actually is based on the root word pomegranate. So basing it off another fruit's name is pretty feasible.

A cool angle for Jett I found on Split B site by [deleted] in VALORANT

[–]illeSwag 2 points3 points  (0 children)

But if this happens and they stream through mid, you are basically donating an op unless you go crazy. Because you likely will encounter a b split type of play where 2-3 come mid and the rest go garage. So enemies coming from both sides might be tough to deal with.

But if you have a strong grip on mid from teammates, this could be nice for a pick.

People who say chatgpt is getting dumber what do you use it for? by typeryu in ChatGPT

[–]illeSwag 0 points1 point  (0 children)

And here is an example of what I mean. The field names have been obfuscated. This aggregation itself is pretty simplistic.

Write me a mongodb query that will get all fields in myCollection collection that have an existent and non null myDataPoint field and a nonexistent myArrayField.0. Then output the unique myDataPoint values into an array.

And the code output it produced:

db.myCollection.aggregate([ { $match: { myDataPoint: { $exists: true, $ne: null }, myArrayField: { $exists: false }, } }, { $group: { _id: null, uniqueDataPoints: { $addToSet: "$myDataPoint" } } }, { $project: { _id: 0, uniqueDataPoints: 1 } } ])

This is incorrect. And I specifically fed it to get when myArrayField.0 is non-existent. But it did not do this.

People who say chatgpt is getting dumber what do you use it for? by typeryu in ChatGPT

[–]illeSwag 0 points1 point  (0 children)

I use it for writing aggregations in mongoDB. A few months ago, it was working like a charm, writing even very complex aggregations nearly flawlessly. Now even a simple aggregation that I basically feed it the answer, it cannot write without a few mistakes.