Page 3 of 20

Re: Valheim

Posted: Fri Feb 05, 2021 3:24 pm
by MBRKiNG
Console:IsVisible+38 is a mono address, u have to enable mono features.

should be the same, have not tested the "imacheater" command because it was unknown.

using imacheater could possibly deactivate the Steam Achievements

Re: Valheim

Posted: Fri Feb 05, 2021 4:05 pm
by Akira
MBRKiNG wrote:
Fri Feb 05, 2021 3:24 pm
Console:IsVisible+38 is a mono address, u have to enable mono features.

should be the same, have not tested the "imacheater" command because it was unknown.

using imacheater could possibly deactivate the Steam Achievements
Uh sorry, stange, i thought it were active since I needed it to fix my offset based table part :D
Is there a way to auto enable it when starting the table?

Okay, I'll gonne ask around if it will deactivate Achievements or no.
Uhm as far as i see there aren't even any Steam Achievements xD

Re: Valheim

Posted: Fri Feb 05, 2021 4:33 pm
by Immortalius
Does this work in multiplayer?

Re: Valheim

Posted: Fri Feb 05, 2021 4:42 pm
by Akira
Immortalius wrote:
Fri Feb 05, 2021 4:33 pm
Does this work in multiplayer?
I make all the cheats in Singleplayer / In my local server.
So i have no idea if they work in multiplayer.
Some probably yes but do NOT ruin the fun of others.

Re: Valheim

Posted: Fri Feb 05, 2021 5:29 pm
by ggimark
The unlimited weight script corrupted my character and reset it to a brand new file...

Re: Valheim

Posted: Fri Feb 05, 2021 5:36 pm
by Akira
ggimark wrote:
Fri Feb 05, 2021 5:29 pm
The unlimited weight script corrupted my character and reset it to a brand new file...
Works fine for me and most others.
Not sure what the problem could be.

Next time make a backup ;)
Akira wrote:
Tue Feb 02, 2021 5:24 pm
SaveGame Location:
C:\Users\UserName\AppData\LocalLow\IronGate\Valheim
I'll add an option to change the "Max Carry Weight" in the nex table update.

Re: Valheim

Posted: Fri Feb 05, 2021 5:45 pm
by MBRKiNG
Akira wrote:
Fri Feb 05, 2021 4:05 pm
MBRKiNG wrote:
Fri Feb 05, 2021 3:24 pm
Console:IsVisible+38 is a mono address, u have to enable mono features.

should be the same, have not tested the "imacheater" command because it was unknown.

using imacheater could possibly deactivate the Steam Achievements
Uh sorry, stange, i thought it were active since I needed it to fix my offset based table part :D
Is there a way to auto enable it when starting the table?

Okay, I'll gonne ask around if it will deactivate Achievements or no.
Uhm as far as i see there aren't even any Steam Achievements xD



delete the Enable mono Features script and add under [enable] in the main script, that should do the same like the enable mono features script

Code: Select all

[ENABLE]
{$lua}
LaunchMonoDataCollector()
{$asm}

Re: Valheim

Posted: Sat Feb 06, 2021 1:38 am
by lobosan
@Akira thx for the CT!
I'm having a very fun solo "sandbox" time until doing it co-op for real (my co-op friends are still stuck with 7 days to die).

Re: Valheim

Posted: Sun Feb 07, 2021 1:13 pm
by Obituary
Hello good Morning! will it affect my friends? if you use any of these effects? I just want unlimited weight and stamina!

Re: Valheim

Posted: Sun Feb 07, 2021 7:17 pm
by anondite
ggimark wrote:
Fri Feb 05, 2021 5:29 pm
The unlimited weight script corrupted my character and reset it to a brand new file...
Just had this happen to me as well, broke all of my characters, not sure on exact cause, but today I logged in, and was very far from my base so turned on fly and unlimited weight and moved to my base and closed game, next time i opened all my saves were corrupt. Overall great though.

Re: Valheim

Posted: Sun Feb 07, 2021 9:07 pm
by Akira
anondite wrote:
Sun Feb 07, 2021 7:17 pm
Just had this happen to me as well, broke all of my characters, not sure on exact cause, but today I logged in, and was very far from my base so turned on fly and unlimited weight and moved to my base and closed game, next time i opened all my saves were corrupt. Overall great though.
I've added a warning & information to the Script in the first post.
The Script works still fine for me without any problems, no idea why it doesn't for some.
Btw it's always better to make a backup of your Savegame.
Akira wrote:
Tue Feb 02, 2021 5:24 pm
-Unlimited Carry Weight [Do NOT use, it might corrupt your Savegame] (Just use the one below)
Max Carry Weight = 9999 [Added]

SaveGame Location: C:\Users\UserName\AppData\LocalLow\IronGate\Valheim
To fast travel there hit **Win+R** and write this into the new window:
%HOMEDRIVE%%HOMEPATH%\AppData\LocalLow\IronGate\Valheim

Re: Valheim

Posted: Mon Feb 08, 2021 12:37 am
by Impala
Infinite Stack Splitting, feel free to add to the table if you find it useful

Basically duplicates items, turn off when not in use

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>34728</ID>
      <Description>"Infinite Stack Splitting"</Description>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
{$lua}
LaunchMonoDataCollector()
{$asm}
//Inventory:AddItem+2ef - 41 2B C7 - sub eax,r15d
aobscanregion(infstack,Inventory:AddItem+2de,Inventory:AddItem+2ff,41 2B C7)
//aobscan(infstack,41 2B C7 41 89 46 30 B8) // should be unique
infstack:
  db 90 90 90
registersymbol(infstack)
[DISABLE]
infstack:
  db 41 2B C7
unregistersymbol(infstack)
{
// ORIGINAL CODE - INJECTION POINT: Inventory:AddItem+2ef

Inventory:AddItem+2c7: 48 63 4D C0                    - movsxd  rcx,dword ptr [rbp-40]
Inventory:AddItem+2cb: 89 08                          - mov [rax],ecx
Inventory:AddItem+2cd: 48 63 4D C4                    - movsxd  rcx,dword ptr [rbp-3C]
Inventory:AddItem+2d1: 89 48 04                       - mov [rax+04],ecx
Inventory:AddItem+2d4: 49 8B 45 28                    - mov rax,[r13+28]
Inventory:AddItem+2d8: 48 8B C8                       - mov rcx,rax
Inventory:AddItem+2db: 83 38 00                       - cmp dword ptr [rax],00
Inventory:AddItem+2de: 49 BB 10 CB E7 78 0D 02 00 00  - mov r11,System.Collections.Generic:List`1:Add
Inventory:AddItem+2e8: 41 FF D3                       - call r11
Inventory:AddItem+2eb: 49 63 46 30                    - movsxd  rax,dword ptr [r14+30]
// ---------- INJECTING HERE ----------
Inventory:AddItem+2ef: 41 2B C7                       - sub eax,r15d
// ---------- DONE INJECTING  ----------
Inventory:AddItem+2f2: 41 89 46 30                    - mov [r14+30],eax
Inventory:AddItem+2f6: B8 01 00 00 00                 - mov eax,00000001
Inventory:AddItem+2fb: 4C 0F B6 E0                    - movzx r12,al
Inventory:AddItem+2ff: 49 8B CD                       - mov rcx,r13
Inventory:AddItem+302: 48 8D 6D 00                    - lea rbp,[rbp+00]
Inventory:AddItem+306: 49 BB 70 81 BC 77 0D 02 00 00  - mov r11,Inventory:Changed
Inventory:AddItem+310: 41 FF D3                       - call r11
Inventory:AddItem+313: 49 8B C4                       - mov rax,r12
Inventory:AddItem+316: 48 8B 5D C8                    - mov rbx,[rbp-38]
Inventory:AddItem+31a: 48 8B 75 D0                    - mov rsi,[rbp-30]
}
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>

Re: Valheim

Posted: Mon Feb 08, 2021 12:47 am
by Akira
Impala wrote:
Mon Feb 08, 2021 12:37 am
Infinite Stack Splitting, feel free to add to the table if you find it useful

Basically duplicates items, turn off when not in use

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>34728</ID>
      <Description>"Infinite Stack Splitting"</Description>
      <LastState Activated="1"/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
//Inventory:AddItem+2ef - 41 2B C7 - sub eax,r15d
aobscanregion(infstack,Inventory:AddItem+2de,Inventory:AddItem+2ff,41 2B C7)
//aobscan(infstack,41 2B C7 41 89 46 30 B8) // should be unique
infstack:
  db 90 90 90
registersymbol(infstack)
[DISABLE]
infstack:
  db 41 2B C7
unregistersymbol(infstack)
{
// ORIGINAL CODE - INJECTION POINT: Inventory:AddItem+2ef

Inventory:AddItem+2c7: 48 63 4D C0                    - movsxd  rcx,dword ptr [rbp-40]
Inventory:AddItem+2cb: 89 08                          - mov [rax],ecx
Inventory:AddItem+2cd: 48 63 4D C4                    - movsxd  rcx,dword ptr [rbp-3C]
Inventory:AddItem+2d1: 89 48 04                       - mov [rax+04],ecx
Inventory:AddItem+2d4: 49 8B 45 28                    - mov rax,[r13+28]
Inventory:AddItem+2d8: 48 8B C8                       - mov rcx,rax
Inventory:AddItem+2db: 83 38 00                       - cmp dword ptr [rax],00
Inventory:AddItem+2de: 49 BB 10 CB E7 78 0D 02 00 00  - mov r11,System.Collections.Generic:List`1:Add
Inventory:AddItem+2e8: 41 FF D3                       - call r11
Inventory:AddItem+2eb: 49 63 46 30                    - movsxd  rax,dword ptr [r14+30]
// ---------- INJECTING HERE ----------
Inventory:AddItem+2ef: 41 2B C7                       - sub eax,r15d
// ---------- DONE INJECTING  ----------
Inventory:AddItem+2f2: 41 89 46 30                    - mov [r14+30],eax
Inventory:AddItem+2f6: B8 01 00 00 00                 - mov eax,00000001
Inventory:AddItem+2fb: 4C 0F B6 E0                    - movzx r12,al
Inventory:AddItem+2ff: 49 8B CD                       - mov rcx,r13
Inventory:AddItem+302: 48 8D 6D 00                    - lea rbp,[rbp+00]
Inventory:AddItem+306: 49 BB 70 81 BC 77 0D 02 00 00  - mov r11,Inventory:Changed
Inventory:AddItem+310: 41 FF D3                       - call r11
Inventory:AddItem+313: 49 8B C4                       - mov rax,r12
Inventory:AddItem+316: 48 8B 5D C8                    - mov rbx,[rbp-38]
Inventory:AddItem+31a: 48 8B 75 D0                    - mov rsi,[rbp-30]
}
</AssemblerScript>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Oh thank you very much, I'll add it in the next Table Update :).

Re: Valheim

Posted: Mon Feb 08, 2021 12:55 am
by ggimark
Akira wrote:
Sun Feb 07, 2021 9:07 pm
I've added a warning & information to the Script in the first post.
The Script works still fine for me without any problems, no idea why it doesn't for some.
Btw it's always better to make a backup of your Savegame.
Akira wrote:
Tue Feb 02, 2021 5:24 pm
-Unlimited Carry Weight [Do NOT use, it might corrupt your Savegame] (Just use the one below)
Max Carry Weight = 9999 [Added]

SaveGame Location: C:\Users\UserName\AppData\LocalLow\IronGate\Valheim
To fast travel there hit **Win+R** and write this into the new window:
%HOMEDRIVE%%HOMEPATH%\AppData\LocalLow\IronGate\Valheim
Thank you, the new option works perfectly for me without corruption issue. I did learn my lesson and started backing up the character files.

Re: Valheim

Posted: Mon Feb 08, 2021 1:30 am
by vfor5
has anyone figured on how to increase the max stack (1/10/30/50)?