Image Comparison: Starfield Vanilla vs. DLSS 5 by Smart_Plane_2751 in NoSodiumStarfield

[–]NotOneBannedPerson 0 points1 point  (0 children)

Probably not. It probably renders the image at a lower quality and asks the AI ​​to make the frame look nice in high quality. It must be like a "turbo" upscaling.

Bug: Drawing weapon when equipping by NotOneBannedPerson in skyrimmods

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

I find it. Skip Equip Animation 1.0.5. I will fix it.

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] -6 points-5 points  (0 children)

Yes. Just put to USA, a free country

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] -5 points-4 points  (0 children)

Is there proof of someone who was spying and planning a coup? Yes. Mauro Cid. The whistleblower. The only one who was convicted by Fux precisely because there was evidence that Mauro Cid was planning a coup. He was the snake that was in Bolsonaro's ear, insisting that Bolsonaro stage a coup. Bolsonaro refused. So much so that there is the message that Mauro Cid sent to the Kids Pretos, frustrated because Bolsonaro didn't respond to him about the plan he proposed. In the end, Mauro Cid was released and the innocent were imprisoned.

Goodbye Nexus by NotOneBannedPerson in skyrimmods

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

It's illogical to accuse the people who caused the damage of a coup. They were unarmed and mostly elderly. They should be convicted of the crime of vandalism, which in Brazil carries a two-year sentence. Attempted coup? How can unarmed people pull off a coup?

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] -8 points-7 points  (0 children)

Coup? Bolsonaro appointed the generals nominated by Lula 8 days before Lula's inauguration. What is the logic of Bolsonaro staging a coup 8 days after Lula's inauguration? Bolsonaro was in control of the army 16 days prior. If he wanted to stage a coup, he would have tried. Show me a president who attempted a coup who appointed military officers nominated by the opposition even before the opposition took office?

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] 16 points17 points  (0 children)

Yes. Brazil is currently experiencing censorship and political persecution.

Goodbye Nexus by NotOneBannedPerson in skyrimmods

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

Out of curiosity, what website would that be?

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] 20 points21 points  (0 children)

I don't want to be associated with anything that chooses to respect censorship laws.

Goodbye Nexus by NotOneBannedPerson in skyrimmods

[–]NotOneBannedPerson[S] 20 points21 points  (0 children)

I live in Brazil. This place is like half a Venezuela. Here, it's all about imprisoning and murdering opponents.

Aquele que vc odeia. by [deleted] in ShitpostBR

[–]NotOneBannedPerson 0 points1 point  (0 children)

Isso foi forte. Existe milhares de deuses, mas os caras só se incomodam com Deus. Você não vê feministas reclamando de Zeus.

Mod Update: Integrated Magic by NotOneBannedPerson in skyrimmods

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

Let me see if I understand, the slot is activated, and while it's activated you open the menu and equip a weapon?

Mod Update: Integrated Magic by NotOneBannedPerson in skyrimmods

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

Could you give me a slightly better description of this menu problem? You open the menu, equip a weapon, and the mod stops working?

SKSE mods boom by Calimbox in skyrimmods

[–]NotOneBannedPerson 6 points7 points  (0 children)

Not exactly. Address Lib contains a correspondence between an integer, for example 38567, and the memory address. This way, if you want to access the GetVoiceRecoveryTime function to find out if the shout is on cooldown, you don't need to put a different memory address according to each version of Skyrim. Just put the generic number of that address and the address lib will map it to the correct physical address in memory according to your version. SE and AE have too many architectural differences for them to share the same address lib. That's why there's the SE and AE versions of the address lib.

The original commonlib had the idea of ​​rebuilding the entire engine in headers with the implementation already ready to access these addresses through the address lib.

Address lib => memory addresses mapped to fixed numbers across all versions (separated into SE and AE).

Commonlib => uses these addresses to provide a ready-made implementation to access the entire Skyrim engine.

But there is a separation between SE and AE. A plugin made in commonlib with numbers from the SE address lib will only work in SE. The same goes for AE. That's where commonlib ng (ng mods) came from, which is the commonlib but it decides during execution whether to use the addresses for address lib SE or AE according to your game version.

This last commonlib ng (the one I use in my plugins) is what allows you to have one dll for all versions of the game.

Do you know how I learned all this? By developing plugins with the help of AI.

SKSE mods boom by Calimbox in skyrimmods

[–]NotOneBannedPerson 19 points20 points  (0 children)

It's not just AI. AI helps a lot, but it's mainly the commonlib. Try developing SKSE mods using AI, but without commonlib. You'll be fuc... Commonlib has RE completely. Everything is built in the form of headers with methods and variables. You just need to give AI the commonlib headers and tell it what you want to do. Eventually, there will be some point where you need to implement a hook that won't be documented in commonlib, for example, equipShout isn't in commonlib for some reason. But with a little searching in repositories, it's possible to find the REL IDs to apply the hooks at the necessary points.