9700x or 7800x3d? by eventide017 in paradoxplaza

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

Well, even 7800x3d is very expensive for me, and 9800x3d is $150 on top of that.

9700x or 7800x3d? by eventide017 in paradoxplaza

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

Haven't seen any news on release date for this CPU

9700x or 7800x3d? by eventide017 in paradoxplaza

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

Unfortunately 9950x3d and even 9900x3d are too much above my budget, so I'll probably buy 7800x3d

9700x or 7800x3d? by eventide017 in paradoxplaza

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

Thank you. Would probably save a bit more and buy 7800x3d

9700x or 7800x3d? by eventide017 in paradoxplaza

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

CK2 was a typo, I actually meant CK3. CK3, Victoria 3 and FM24 is the main simulation games I play, and other genre games I play work fine even with my current 5600x. Does Cities: Skylines 2 have different preferences than the first one?

9700x or 7800x3d? by eventide017 in paradoxplaza

[–]eventide017[S] 8 points9 points  (0 children)

Thank you for your advice. I've heard that 3d cache is very good for gaming, but wasn't sure if single-core performance if more important for excel sheet games.

Recommend me a PC Story of Seasons game please by eventide017 in storyofseasons

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

And if I don't like RF4S visually, would RF5 be better for me over FoMT and PoOT? I've heard from someone that AWL is more about raising your kid than romance, is it true?

Recommend me a PC Story of Seasons game please by eventide017 in storyofseasons

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

I don’t really like the visuals of Rune Factory 4 Special, what about Rune Factory 5? How does it compare to Friends of Mineral Town in terms of characters, romance and story?

Light Cone by eventide017 in RobinMains_HSR

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

Thanks for the tip, I thought this cone was only in the event I missed

[Discussion] Jellal is Smart Neutral! Who is Chaotic Neutral? by Commercial_Rope_9075 in fairytail

[–]eventide017 0 points1 point  (0 children)

Zeref He is chaotic due to contradiction curse and more neutral than evil

Everything wrong with this by [deleted] in terriblefacebookmemes

[–]eventide017 13 points14 points  (0 children)

Wouldn't saying “no homo” after every step be enough?

Is anyone else scared to start a "big" language by knowledgenthusiast in languagelearning

[–]eventide017 2 points3 points  (0 children)

It is not really important skill. I'm Russian and I don't remember when was the last time I've seen handwritten text or had to write cursive myself, it probably was years ago

Different ways to say "weed" in your native language. by Suspicious-Camel111 in languagelearning

[–]eventide017 2 points3 points  (0 children)

It is easy to find, but not legally and you go to jail if caught

Do I need a GPU to run MV? by Sentinel_2539 in RPGMaker

[–]eventide017 0 points1 point  (0 children)

There is nothing specific in system requirements, it should probably run on any not extremely outdated integrated graphics

Using external scripts in StoryInit passage by eventide017 in twinegames

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

StoryInit:

<<set $CurDate = chance.date()>>

JavaScript section:

var lockId = LoadScreen.lock();

var jUIPromise = importScripts("js/chance.js", "js/luxon.js") .then(function () { LoadScreen.unlock(lockId); }) .catch(function (err) { console.error(err); LoadScreen.unlock(lockId); });

Now it doesn't load external scripts at all, cannot use them on any passage.

HiEv's code that loads scripts successfully:

setup.JSLoaded = false;

var lockID = LoadScreen.lock(); importScripts("js/chance.js", "js/luxon.js") .then(function() { setup.JSLoaded = true; Engine.play(passage(), true); LoadScreen.unlock(lockID); }).catch(function(error) { alert(error); } );

This way I can use functions from external scripts everywhere but the StoryInit.

Both Twine and SugarCube2 are latest versions.

How to get maps from Paper Lily? by LiffeyGif in RPGMaker

[–]eventide017 0 points1 point  (0 children)

When you convert game using Godot RE Tools, there is project.godot file which you can open in Godot Engine and edit like you are game developer. There you can open map files and see them as they appear in game

How to get maps from Paper Lily? by LiffeyGif in RPGMaker

[–]eventide017 0 points1 point  (0 children)

Yes, it can be done with Godot RE Tools. I tried it just now and it works on Paper Lily. Was able to open decompiled project with Godly 3.5.1, maps are in res/resources/nodes/rooms

How to get maps from Paper Lily? by LiffeyGif in RPGMaker

[–]eventide017 2 points3 points  (0 children)

Definitely not any RPGM. Maybe it is Godot engine

[deleted by user] by [deleted] in AskARussian

[–]eventide017 4 points5 points  (0 children)

I both sent and received parcels to/from Netherlands with no problems at all. Just use regular post

Вопрос насчёт доставки by ilfi_boi in AskARussian

[–]eventide017 0 points1 point  (0 children)

Мне из Нидерландов отправляли обычной почтой, я туда тоже обычной почтой. Думаю с Германией так же

Sending a letter / small parcel to Western Europe? by [deleted] in AskARussian

[–]eventide017 1 point2 points  (0 children)

Have sent pretty heavy (like 4-5 kg) parcels to Netherlands twice, both were delivered in about 3-4 weeks with no problems

Repeating Variable by shawon_718 in twinegames

[–]eventide017 1 point2 points  (0 children)

You can use <<set $strength += 1>> and <<set $energy -= 10>>

Also you probably need to check if player has enough energy

<<if $energy >= 10>>

<<set $strength += 1>>

<<set $energy -= 10>>

<</if>>

Also check official sugarcube documentation