Page 1 of 1

Niffelheim (2020-04-21)

Posted: Sat Sep 29, 2018 8:38 am
by Shinkansen
Simple table for Niffelheim, may or may not work. Game generates code at runtime so table has a high chance of not working / detecting the wrong code / crashing.

Usage info:
Scripts with "To Activate: XXX" can only be activated (put an "X" into the box) after doing action XXX.
Scripts with "To Update: XXX" will only update their effect after doing action XXX.
Addresses with "XXX?" will enable the script effect XXX when 1 is put into the Value.

In general:
A. Do action YYY.
B. Activate (put an X) the "Initialization (Activate This First)" script.
C. Activate (put an X) the "Base Address Scan (To Activate: YYY, To Update: ZZZ)" script.
D. Enable (put a 1) the desired effect. Example: "Set Health to Max?" address.
E. Do action ZZZ.


V1001 - 2020-04-21
1. Tested game version V1.3.001.31 32-bit. May work on other versions.


V1000 - 2018-09-29
1. Tested game version V1.0.000.3 1. May work on other versions.

2. Player.
"HP, Stamina, Dragon Energy, Satiety Set to Massive?" sets HP, Stamina, Dragon Energy, Satiety to assive.
"Stats Set to Massive?" sets Stats to massive.
"Money Set to Massive?" sets Money to massive.
"Dragon Charge Time Set to Massive?" sets Dragon Charge Time to massive.

Allows the following to be modfied.
- "Actor Stats -> Experience -> mSkillExperiences". Skill experience.

3. GameSession.
"Time Set to Day?" sets Time to day.
"Time Set to Night?" sets Time to night.

4. Pack.
"Quantity Set to Max?" sets Item quantity to max.
"Durability Set to Max?" sets Item durability to max.

Re: Niffelheim (2018-09-29)

Posted: Sat Sep 29, 2018 4:03 pm
by fantomas
This script (uses Mono features) will allow you to craft any item w/o resources requirements.

Code: Select all

[ENABLE]
//Craft any individual item
Ellada.Game.Actors:Actor:CanCraftRecipe:
  ret
 
//Improve your house's items (kitchen...) 
Ellada.Game.Actors:Actor:CanCraftRecipeEx:
  ret

[DISABLE]
Ellada.Game.Actors:Actor:CanCraftRecipe:
  push ebp
 
Ellada.Game.Actors:Actor:CanCraftRecipeEx:
  push ebp
EDIT:

This one is more funny - it gets you unlimited resources for crafting and quests

Code: Select all

[ENABLE]
Ellada.Game.Inventories:Inventory:GetItemCount:
  ret 

[DISABLE]
Ellada.Game.Inventories:Inventory:GetItemCount:
  push ebp
OR...

Code: Select all

[ENABLE]
Ellada.Game.Actors:Actor:GetItemCount+32:
  db 90 90 90 90 90

[DISABLE]
Ellada.Game.Actors:Actor:GetItemCount+32:
  db E8 39 00 00 00
//call Ellada.Game.Inventories:Inventory:GetItemCount
Yup, you got it... many ways to have the same achievement. ;)

Re: Niffelheim (2018-09-29)

Posted: Thu Oct 04, 2018 1:39 pm
by aabw
thanks!

Re: Niffelheim (2018-09-29)

Posted: Mon Oct 08, 2018 7:26 pm
by totalabyss
Is the unlimited resources part of the table? if it is I don't see how to activate it.

Re: Niffelheim (2018-09-29)

Posted: Sat Mar 16, 2019 9:35 am
by Racer83
If it is not to much to ask for, could someone please update this table?
I can't get the player function of it to work.

Re: Niffelheim (2018-09-29)

Posted: Sun Mar 29, 2020 6:57 pm
by Lord Blade
Can't get the player stats to activate. The other stuff seems to work alright so far.

Re: Niffelheim (2020-04-21)

Posted: Sat Dec 19, 2020 12:21 pm
by Gvaz
seems like it still works, though durability is reset by picking the item up and putting it back, which is kind of annoying

Re: Niffelheim (2020-04-21)

Posted: Fri Apr 23, 2021 2:15 pm
by Shootkey
It seems to have stopped working with the latest patch. Can we please get a new one?