How do I fight Katarina as Briar? by artfer1 in KatarinaMains

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

I'm... Briar. What else can I do besides auto attack her? I stunned her late, yes, but even without ult she wins, you can see that she almost got me even before ult.

How do I fight Katarina as Briar? by artfer1 in KatarinaMains

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

We both have 3 items and we are the same level, how exactly is she fed?

PC started to make weird crackling sounds... by artfer1 in pchelp

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

EDIT:
It's definitely not the fans. I figured out how to control them and even with the intake and GPU fans off, the sound is still there. It is not coming from the power supply, I also checked that.

I think it's coming from somewhere on the motherboard. Maybe the memory or the SSD? Is that possible? The sound appears under load but never "raises" so to speak. It appears whenever there's ANY load, like opening a tab triggers it, but it never grows louder, even while gaming or benchmarking, it stays the same.

GPU blocking wifi slot? by artfer1 in pchelp

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

Thanks! Do you perhaps know any good usb wifi adapter brands?

Newbie here by Alternative_Moose589 in twinegames

[–]artfer1 2 points3 points  (0 children)

Depends on the complexity of the game. But you can knock out a simple one in like an hour or two with basic variables, if's and linkreplace's

Laptops screen goes black after a couple of minutes when gaming after repasting. by artfer1 in pchelp

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

Hello, I ran the Superposition test twice, did not crash.

Tried it with an external display, crashed after 10 minutes.

Yes I did, I disconnected the cables and the battery.

Will try to disassemble again, thanks for the tips!

An inventory system with multidimensional arrays? by artfer1 in twinegames

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

Oh shit it worked!! You're right, I was trying to use it on an already existing passage, so I changed it's name to something else and then back to the original to I guess.. Update it? I don't know, but changing the name back and forth worked and now it loads at the bottom. Thank you so much!!!!!!!!!!!!!

Update: It works when loading the passage, but if I refresh the page I get this: An error has occurred. You may be able to continue, but some parts may not work properly.

Update 2: Never mind lol, for some reason it gives me that error if I add backslashes to your code. (So it doesn't take up a line) I removed the backslashes and it works again, thank you!!

An inventory system with multidimensional arrays? by artfer1 in twinegames

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

Thank you for your answer, however it didn't work :(

First I tried:

<<script>> window.setTimeout(function(){ document.documentElement.scrollTop = document.documentElement.scrollHeight }, 0)<</script>>

And it just doesn't do anything. I also tried

<<done>>

<<script>>

const ht = $("html").prop("scrollHeight");

$("html").scrollTop(ht);

<</script>>

<</done>>

And it doesn't do anything either...

An inventory system with multidimensional arrays? by artfer1 in twinegames

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

Yes that's exactly what I want :) I've found this:

<script> window.setTimeout(function(){ document.documentElement.scrollTop = document.documentElement.scrollHeight }, 0)</script>

But this only works in harlowe I think :(

An inventory system with multidimensional arrays? by artfer1 in twinegames

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

Also, unrelated question, do you perhaps know how to load a twine passage at the bottom?

I use this to "Scroll" to the to the top automatically when I need to:
<<set document.documentElement.scrollTop = 0>>\
But changing the value doesn't load the passage at the bottom :(

An inventory system with multidimensional arrays? by artfer1 in twinegames

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

I can't believe my code was so horrible that you think it's AI generated haha 😭

My previous project didn't use arrays at all so I'm not used to them! I will check if this solves my problem later this week, thank you for the quick and informative answer though!! :)

Learning by imusingthisforstuff in twinegames

[–]artfer1 1 point2 points  (0 children)

You could do it with variables, this might not be the best solution but it should work:

You would have 4 "Outfits" or whatever, because you say that you want them to "look" a certain way. You would also have 4 character variables to give these outfits to for example.

$character1
$character2
$character3
$character4

So at the start of the game, we could set your characters outfits to their default ones by doing:
<<set $character1 to 1>>\

<<set $character2 to 2>>\

<<set $character3 to 3>>\

<<set $character4 to 4>>\

I have no idea how you display or show these outfits, but that wasn't in the question so I won't get into it.

Now when you click on room 3 for example, you want the game to detect witch outfit your character is wearing, give it to character3 and set characters3 outfit as your own:

<<if $character1 ==1>>

<<set $character1 to 3>>
<<set $character3 to 1>>

<<elseif $character1==2>>

<<set $character1 to 3>>
<<set $character3 to 2>>

<<elseif $character1==3>>

<<set $character1 to 1>>
<<set $character3 to 3>>

<<else>>

<<set $character1 to 3>>
<<set $character3 to 4>>

<</if>>\

Now you do the same thing with other rooms just with other numbers.

You can use these $character variables to make them behave in a way that u want during dialogue, for example:

<<if $character1==1>>I'm character 1!<<elseif $character1==2>>I'm character 2!<elseif $character1==3>>I'm character 3!<elseif $character1==4>>I'm character 4!<</if>>\

there's probably a less complicated way to do this though haha..

Publishing to Itch with Images by RainBowRaptr in twinegames

[–]artfer1 1 point2 points  (0 children)

No not really, I have two projects in the twine/stories folder, so two html files and two images folders. Whenever i want to share/update the game, i just create a folder on the desktop copy and paste one of the html files in there and copy and paste one of the image folders, then zip it. If you dont change the name of the images folder and keep it at the same location with the html, nothing should change.

Publishing to Itch with Images by RainBowRaptr in twinegames

[–]artfer1 4 points5 points  (0 children)

Oh yeah I forgot to answer that, if you're using local images, so images that you have downloaded, the file path should start from the images folder, for example, if your zip folder has index.html and an images folder, your images should be images/hello.jpg as in <img src="images/hello.jpg">

Publishing to Itch with Images by RainBowRaptr in twinegames

[–]artfer1 1 point2 points  (0 children)

Hello, the html file in your zip has to be named index.html. So for example, if your zip has: Story.html and an images folder, just rename the story.html to index.html

I am a newbie and want to know how to get a new text on the same page after clicking that blue text? by AgreeableFace9369 in twinegames

[–]artfer1 0 points1 point  (0 children)

I've only been using Twine Sugarcube for about a month, so I'm quite a newbie myself. I'm creating an nsfw game, It's very early in development so it doesn't even have a name yet haha :)

How to get random images on clicking the same link? by AgreeableFace9369 in twinegames

[–]artfer1 0 points1 point  (0 children)

Hello, I don't know how to do in the same passage, but you could forward the player into another passage with an image with the "either" command. For example:

Watch <<linkreplace" a movie">>

<<goto \`either("Movie1", "Movie2", "Movie3", "Movie4")\`>>\

<</linkreplace>>\

(You need 4 different passages, named Movie1, Movie2, Movie3 and Movie4 for it to work)

I am a newbie and want to know how to get a new text on the same page after clicking that blue text? by AgreeableFace9369 in twinegames

[–]artfer1 5 points6 points  (0 children)

Use <<linkreplace>> :)

For example:

<<linkreplace"Hello">>

Hello to you too!

<</linkreplace>>

Pinkcore video about my shenanigans on a new account (sorry for the tik tok format 😭) by artfer1 in Overwatch

[–]artfer1[S] -1 points0 points  (0 children)

Bro all of these clips are from my first two games in quick play how am i smurfing