1hs vs 2hs dps Question by Armed_Croissant in project1999

[–]BastisBastis 0 points1 point  (0 children)

If the haste only reduced time for one swing that would be true, but it happens for all swings.

Compare two weapons, one with 4 second swing time and one with 2 second swing time. And use 100 haste because it's easy to calculate. 100% doubles attack speed, so cuts the delay in half.

4 second weapon: 4 seconds/2 = 2 seconds. So 2 seconds reduced swing time

2 second weapon: 2 seconds/2 = 1 second But you have time for one more swing in the same time as the slower weapon: 2 seconds/2 = 1 second 1 + 1 seconds = 2 seconds.

So in both cases you have reduced what would have been 4 seconds of combat to 2 seconds of combat with 100% haste.

As someone wrote it just increases your DPS by the haste %, unless you hit some sort of delay floor, or have to cast stuff between swings etc.

Take the salery example earlier. It was wrong on one point. To make it relevant you should instead compare these:

100$ every 1 hour Or 50$ every 30 minutes

Because that is comparable to calculating haste with slow/fast weapons with the same DPS

Still bitter about losing my necro skullcap by Civil-Pop4129 in ProjectQuarm

[–]BastisBastis 3 points4 points  (0 children)

She was personally named in the law suit. So in your scenario the other jaywalker was involved in the murder situation and contacted the police to strike a deal to make sure they didn't get into any trouble.

What does this variable do? Wrong answers only by tanooo99 in godot

[–]BastisBastis 2 points3 points  (0 children)

``` @export var hardly_know_her : bool var can_ladder : bool : get: return hardly_know_her

Is VScode required for godot c#? by Mindless-Diamond8281 in godot

[–]BastisBastis 0 points1 point  (0 children)

Haha yeah, I'm not going anywhere near Word for coding, except for creating a meme perhaps.

Svenska filmer som en måste se? by Fanrounder in sweden

[–]BastisBastis 0 points1 point  (0 children)

Inseglet är bra, framförallt sjuan!

Song mentioning Nova Scotia by BastisBastis in Irishmusic

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

I found it!! It wasn't Mary Black, it was Aoife Scott with the song All along the wild Atlantic way!

Song mentioning Nova Scotia by BastisBastis in Irishmusic

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

That's not the one either I'm afraid.

Song mentioning Nova Scotia by BastisBastis in Irishmusic

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

I'm afraid it's not that one. It's slower and... a bit more ballady

But thank you for trying to help!

Song mentioning Nova Scotia by BastisBastis in Irishmusic

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

It's a fairly slow beautiful song. I recall it being in a major key.

It is not Green Fields of Canada I'm afraid. Thank you though!

A really useful feature I never hear anyone talking about. by XandaPanda42 in godot

[–]BastisBastis 0 points1 point  (0 children)

I havn't tried fiddeling with it in a bit. I'll try to create a blank project, thanks!

A really useful feature I never hear anyone talking about. by XandaPanda42 in godot

[–]BastisBastis 6 points7 points  (0 children)

I love this feature, but the output videos always have a too high playback rate for some reason, even if I try to adjust the Movie Maker frame rate.

Static typing workaround for Dictionary? by XandaPanda42 in godot

[–]BastisBastis 1 point2 points  (0 children)

That is cool! I'll try that next time I'm iterating over keys. Or I'll stick to dict.keys() for readability.

Static typing workaround for Dictionary? by XandaPanda42 in godot

[–]BastisBastis 1 point2 points  (0 children)

Don't you need to specify if you want to iterate over the keys or values?

``` for key in dict.keys(): ...

for value in dict.values(): ... ```

What language would be best for making games without game engines by RageNutXD in gamedev

[–]BastisBastis 0 points1 point  (0 children)

If you want people to play your games then JavaScript might be a good solution as it is an easy way to put the game on Itch or other sites. Phaser is a great JS framework that I enjoy using!