Ok first thing is that i need to correct myself, what i wrote above is completely false i just forgot some basic math. So the script does not affect just main character, it affects entire party it only needs one more boost and some values changed. This is modified one:Sungrey wrote: ↑Mon Aug 14, 2023 4:42 pmNice! Good workallin1soft wrote: ↑Mon Aug 14, 2023 4:31 pmOk so i made some research and i found this lovely command CriticalHit(AttackRoll,Failure,Never) you can edit "Add Roll Bonus" script and add it like this:
activate and from now on you will never miss, ever!Code: Select all
{$lua} if syntaxcheck then return end [ENABLE] AddBoostsToPlayer("CriticalHit(AttackRoll,Failure,Never);RollBonus(SkillCheck,50);RollBonus(RawAbility,50);RollBonus(SavingThrow,50)") [DISABLE]
this however made me realise that all these commands and tricks work only on your main character, they dont work for party members.
I am wondering if there is a way to also boost them in the same manner
Btw there is a boost to maximize damage with weapons. "MinimumRollResult(Damage,20)" If your weapon normally does 5-15 damage, that boost will make it do 15 damage.
Do you know if there is one for spell damage?
Code: Select all
{$lua}
if syntaxcheck then return end
[ENABLE]
AddBoostsToPlayer("CriticalHit(AttackRoll,Failure,Never);RollBonus(Attack,100);RollBonus(SkillCheck,100);RollBonus(RawAbility,100);RollBonus(SavingThrow,100)")
[DISABLE]
than if you would like to increase damage output on top of that, there is one more command that needs to be added: IF(IsAttack() or IsSpell()):DamageBonus(xdy+z); where x is amount of rolls, y is roll range (sides) and z is flat addition. all together script will be this:
Code: Select all
{$lua}
if syntaxcheck then return end
[ENABLE]
AddBoostsToPlayer("CriticalHit(AttackRoll,Failure,Never);RollBonus(Attack,100);IF(IsAttack() or IsSpell()):DamageBonus(4d6+6);RollBonus(SkillCheck,100);RollBonus(RawAbility,100);RollBonus(SavingThrow,100)")
[DISABLE]
note that increase will follow whatever damage you were inflicting meaning that if it was melee weapon attack it will be melee weapon attack, if it was spell cast of type ice it will be ice spell damage and so on.
i tested above and it works lovely
How to use this cheat table?
- Install Cheat Engine
- Double-click the .CT file in order to open it.
- Click the PC icon in Cheat Engine in order to select the game process.
- Keep the list.
- Activate the trainer options by checking boxes or setting values from 0 to 1