[COMPLETED] [Request] Outward

Ask about cheats/tables for single player games here
Post Reply
Unrial
What is cheating?
What is cheating?
Posts: 1
Joined: Tue Mar 26, 2019 5:53 pm
Reputation: 0

[COMPLETED] [Request] Outward

Post by Unrial »

Game Name: Outward
Game Engine: Unity
Game Version: 1.0
Options Required: Health, Damage, Silver
Game/Steam Website: [Link]
Other Info: I have gotten Silver, (the currency of the game) able to be edited, but isolating the values for health, stamina, mana or anything combat related remains a mystery.

Thank you for anything! :D

User avatar
BoehserOnkel
Expert Cheater
Expert Cheater
Posts: 465
Joined: Sat Mar 04, 2017 7:47 am
Reputation: 94

Re: [Request] Outward

Post by BoehserOnkel »

carryweight - dont forget carry weight :D

GreenHouse
Expert Cheater
Expert Cheater
Posts: 857
Joined: Fri Oct 12, 2018 10:25 pm
Reputation: 889

Re: [Request] Outward

Post by GreenHouse »

I'll take a look.

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: [Request] Outward

Post by fantomas »

Image

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: [Request] Outward

Post by fantomas »

Image
Image

GreenHouse
Expert Cheater
Expert Cheater
Posts: 857
Joined: Fri Oct 12, 2018 10:25 pm
Reputation: 889

Re: [Request] Outward

Post by GreenHouse »

Here it is, a script to enable the developer mode.
When enabled, press ESC, and there will two new options on the top right of the screen:
Image

The Item Spawn is pretty much that. You can spawn any object from the game:
Image

And the Cheats menu:
Image

There are also some other things you can do with hotkeys:
F1 = Open Spawn Menu
F2 = Open Cheats Menu
F3 = Open Skill Cheats Menu
F4 = Open Quest Events Cheat Menu
F12 = Take Screenshot
Numpad 1 = Slow Down Game
Numpad 4 = Kill Player
Numpad 6 = Adds a Testing Status Effect
Numpad 7 = Remove Status Effect
Numpad 8 = Heal Player, Resurrect him and Fill Needs
Numpad 9 = Take Damage
Numpad Period = Invert Mouse Y
Left Ctrl + Left Alt + S = Force Environment Save
Left Ctrl + Left Alt + L = Skip Environment Load and Reload
Left Ctrl + Left Alt + X = Open Photon Network Room
Left Alt + Page Up = Set Next Graphic Settings
Left Alt + Page Down = Set Previous Graphic Settings
Left Alt + Numpad Divide = Show Debug Info
Left Shift + O = Open GUI (Changes the game pixels/blur)
Left Shift + U = Player Ragdoll
Left Shift + H = Hide UI
Left Shift + Left Alt + U + (Be on the pause menu(ESC)) = Adds a new option to kill the player.


The table also includes some scripts:
- Weightless Equipment
Any equipment you carry in the pouch or bag won't slow you down. Combine with 'Weightless Silver' If you want to be always weightless.

- Weightless Silver
Any silver you carry in the pouch or bag won't slow you down.

- Remove Skills Cooldown
Skills won't have any kind of cooldown.

- Remove Trainer Requirements + Buy Alternatives
Remove any kind of requirements to buy spells. You'll be able to buy alternative spells, even If you bought one of them.
Warning: You'll still get removed the amount it asks for If you have it.

- Infinite Stamina
Have infinite stamina. Fighting, running, dodging or using skills, it doesn't matter what you do, it won't go down.

- Infinite Bullets + No Reload
Your weapon will have infinite bullets and won't need to reload.

- Environment Editor
So far, only a few options to enable seasons and snow.

- Player Stats
A variation of some editable values from the character and related stuff like: Movement speed, Food/Drink/Sleep needs, Health/Mana/Stamina max, Player appearance, Container capacity, Camera sensitivity, Camera Zoom...
Attachments
Outward.CT
RLD
(2.35 MiB) Downloaded 3181 times
Last edited by GreenHouse on Mon Apr 08, 2019 2:47 pm, edited 15 times in total.

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: [Request] Outward

Post by fantomas »

My poor contribution
Image
Attachments
Outward.CT
(5.74 KiB) Downloaded 882 times

GreenHouse
Expert Cheater
Expert Cheater
Posts: 857
Joined: Fri Oct 12, 2018 10:25 pm
Reputation: 889

Re: [Request] Outward

Post by GreenHouse »

fantomas wrote:
Tue Mar 26, 2019 10:05 pm
My poor contribution
Image
That's good. As the menu seems pretty limited apart from item spawning.

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: [Request] Outward

Post by fantomas »

GreenHouse wrote:
Tue Mar 26, 2019 10:14 pm
That's good. As the menu seems pretty limited apart from item spawning.
It was a quick shot, didn't test it enough. Just noticed that Health/Mana/Stamina are still decreasing, so I made a single script for each one.

But it is something that could be taken in that way. ;)

Inf Mana

Code: Select all

[ENABLE]
CharacterStats:UseMana:
  ret
 
[DISABLE]
CharacterStats:UseMana:
  push ebp
Inf Stamina

Code: Select all

[ENABLE]
CharacterStats:UseStamina:
  ret
 
[DISABLE]
CharacterStats:UseStamina:
  push ebp
NoSkillCooldown

Code: Select all

[ENABLE]
alloc(newmem,100,Skill:get_CoolDownProgress+c)
label(returnhere)
label(originalcode)
label(exit)

newmem:
mov [rsi+000003A0],(float)0

originalcode:
movss xmm0,[rsi+000003A0]

exit:
jmp returnhere

Skill:get_CoolDownProgress+c:
jmp newmem
nop
nop
nop
returnhere:

[DISABLE]
dealloc(newmem)
Skill:get_CoolDownProgress+c:
movss xmm0,[rsi+000003A0]
//Alt: db F3 0F 10 86 A0 03 00 00

jimster
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Mar 27, 2019 12:05 am
Reputation: 0

Re: [Request] Outward

Post by jimster »

GreenHouse wrote:
Tue Mar 26, 2019 9:58 pm
Here it is, an script to enable the developer mode.
When enabled, press ESC, and there will two new options on the top right of the screen:
Image

The Item Spawn is pretty much that. You can spawn any object from the game:
Image

And the Cheats menu:
Image

There are also some other things you can do with hotkeys:
Numpad 1 = Slow Down Game
Numpad 4 = Kill Player
Numpad 6 = Adds a Testing Status Effect
Numpad 7 = Remove Status Effect
Numpad 8 = Heal Player, Resurrect him and Fill Needs
Numpad 9 = Take Damage
Numpad Period = Invert Mouse Y
Left Ctrl + Left Alt + S = Force Environment Save
Left Ctrl + Left Alt + L = Skip Environment Load and Reload
Left Ctrl + Left Alt + X = Open Photon Network Room
Left Alt + Page Up = Set Next Graphic Settings
Left Alt + Page Down = Set Previous Graphic Settings
Left Alt + Numpad Divide = Show Debug Info
Left Shift + O = Open GUI (Not sure what that does, changing values didn't change anything for me)
Left Shift + U = Player Ragdoll
Left Shift + H = Hide UI
F12 = Take Screenshot


I'll keep updating as I find more hotkeys.
Could you fix inventory weight not affecting character movement? Idk if its bugged due to the wording being behind the box but theres no check mark when clicking on it. Otherwise have not noticed anything else besides changing console to enable if its automatically set to disable in the engine. Thanks for the script <3

derikti
What is cheating?
What is cheating?
Posts: 3
Joined: Wed Mar 27, 2019 12:09 am
Reputation: 0

Re: [Request] Outward

Post by derikti »

GreenHouse wrote:
Tue Mar 26, 2019 9:58 pm
Here it is, an script to enable the developer mode.
When enabled, press ESC, and there will two new options on the top right of the screen:
Image
Cant seem to get this to work, it always says Console Disabled in CT :cry:

jimster
What is cheating?
What is cheating?
Posts: 2
Joined: Wed Mar 27, 2019 12:05 am
Reputation: 0

Re: [Request] Outward

Post by jimster »

derikti wrote:
Wed Mar 27, 2019 12:11 am
GreenHouse wrote:
Tue Mar 26, 2019 9:58 pm
Here it is, an script to enable the developer mode.
When enabled, press ESC, and there will two new options on the top right of the screen:
Image
Cant seem to get this to work, it always says Console Disabled in CT :cry:
click disabled then click enable

derikti
What is cheating?
What is cheating?
Posts: 3
Joined: Wed Mar 27, 2019 12:09 am
Reputation: 0

Re: [Request] Outward

Post by derikti »

jimster wrote:
Wed Mar 27, 2019 12:20 am
derikti wrote:
Wed Mar 27, 2019 12:11 am
GreenHouse wrote:
Tue Mar 26, 2019 9:58 pm
Here it is, an script to enable the developer mode.
When enabled, press ESC, and there will two new options on the top right of the screen:
Image
Cant seem to get this to work, it always says Console Disabled in CT :cry:
click disabled then click enable
okay now im feeling really dumb xD first time trying a cheat table, normaly i search only for Souls Value in Dark Souls Games

User avatar
fantomas
Table Makers
Table Makers
Posts: 1163
Joined: Sat Mar 25, 2017 7:13 pm
Reputation: 552

Re: [Request] Outward

Post by fantomas »

Skills have some conditions (mana coast, stamina coast, cooldown) - This script gives your skills all requirements.

P.S: skills still have cooldown but it is initialized each time you use them, which will allow you to use them ad infinitum.

Code: Select all

[ENABLE]
Skill:HasAllRequirements:
  ret
 
[DISABLE]
Skill:HasAllRequirements:
  push rbp
current function

Code: Select all

Skill:HasAllRequirements - 55                    - push rbp
Skill:HasAllRequirements+1- 48 8B EC              - mov rbp,rsp
Skill:HasAllRequirements+4- 56                    - push rsi
Skill:HasAllRequirements+5- 57                    - push rdi
Skill:HasAllRequirements+6- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+a- 48 8B F9              - mov rdi,rcx
Skill:HasAllRequirements+d- 48 8B F2              - mov rsi,rdx
Skill:HasAllRequirements+10- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+14- 48 8B 07              - mov rax,[rdi]
Skill:HasAllRequirements+17- 90                    - nop 
Skill:HasAllRequirements+18- 90                    - nop 
Skill:HasAllRequirements+19- 90                    - nop 
Skill:HasAllRequirements+1a- FF 90 50010000        - call qword ptr [rax+00000150]
Skill:HasAllRequirements+20- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+24- 85 C0                 - test eax,eax
Skill:HasAllRequirements+26- 75 07                 - jne Skill:HasAllRequirements+2f
Skill:HasAllRequirements+28- 33 C0                 - xor eax,eax
Skill:HasAllRequirements+2a- E9 19030000           - jmp Skill:HasAllRequirements+348
Skill:HasAllRequirements+2f- 48 8B CF              - mov rcx,rdi
Skill:HasAllRequirements+32- 48 8B D6              - mov rdx,rsi
Skill:HasAllRequirements+35- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+39- 49 BB 3007C61800000000 - mov r11,Skill:HasAllAdditionalConditions { (-326416299) }
Skill:HasAllRequirements+43- 41 FF D3              - call r11
Skill:HasAllRequirements+46- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+4a- 85 C0                 - test eax,eax
Skill:HasAllRequirements+4c- 75 07                 - jne Skill:HasAllRequirements+55
Skill:HasAllRequirements+4e- 33 C0                 - xor eax,eax
Skill:HasAllRequirements+50- E9 F3020000           - jmp Skill:HasAllRequirements+348
Skill:HasAllRequirements+55- 48 8D 87 D0030000     - lea rax,[rdi+000003D0]
Skill:HasAllRequirements+5c- 48 89 45 D8           - mov [rbp-28],rax
Skill:HasAllRequirements+60- B9 C82CC422           - mov ecx,22C42CC8 { (167B5CD0) }
Skill:HasAllRequirements+65- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+69- 49 BB 5024D60400000000 - mov r11,System:Object:__icall_wrapper_mono_object_new_ptrfree_box { (-326416299) }
Skill:HasAllRequirements+73- 41 FF D3              - call r11
Skill:HasAllRequirements+76- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+7a- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+7d- 48 8B 45 D8           - mov rax,[rbp-28]
Skill:HasAllRequirements+81- C7 41 10 01000000     - mov [rcx+10],00000001 { 1 }
Skill:HasAllRequirements+88- 48 89 4D E0           - mov [rbp-20],rcx
Skill:HasAllRequirements+8c- 48 63 00              - movsxd  rax,dword ptr [rax]
Skill:HasAllRequirements+8f- 48 89 45 E8           - mov [rbp-18],rax
Skill:HasAllRequirements+93- B9 C82CC422           - mov ecx,22C42CC8 { (167B5CD0) }
Skill:HasAllRequirements+98- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+9c- 49 BB 5024D60400000000 - mov r11,System:Object:__icall_wrapper_mono_object_new_ptrfree_box { (-326416299) }
Skill:HasAllRequirements+a6- 41 FF D3              - call r11
Skill:HasAllRequirements+a9- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+ad- 48 8B 4D E8           - mov rcx,[rbp-18]
Skill:HasAllRequirements+b1- 48 8B 55 E0           - mov rdx,[rbp-20]
Skill:HasAllRequirements+b5- 89 48 10              - mov [rax+10],ecx
Skill:HasAllRequirements+b8- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+bb- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+bf- 48 8B 00              - mov rax,[rax]
Skill:HasAllRequirements+c2- 90                    - nop 
Skill:HasAllRequirements+c3- 90                    - nop 
Skill:HasAllRequirements+c4- 90                    - nop 
Skill:HasAllRequirements+c5- FF 50 60              - call qword ptr [rax+60]
Skill:HasAllRequirements+c8- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+cc- 85 C0                 - test eax,eax
Skill:HasAllRequirements+ce- 0F85 59000000         - jne Skill:HasAllRequirements+12d
Skill:HasAllRequirements+d4- 85 F6                 - test esi,esi
Skill:HasAllRequirements+d6- 0F84 51000000         - je Skill:HasAllRequirements+12d
Skill:HasAllRequirements+dc- 48 8B CF              - mov rcx,rdi
Skill:HasAllRequirements+df- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+e3- 49 BB 1807C61800000000 - mov r11,0000000018C60718 { (-906435608) }
Skill:HasAllRequirements+ed- 41 FF D3              - call r11
Skill:HasAllRequirements+f0- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+f4- 85 C0                 - test eax,eax
Skill:HasAllRequirements+f6- 75 35                 - jne Skill:HasAllRequirements+12d
Skill:HasAllRequirements+f8- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+ff- 48 8B 80 C8000000     - mov rax,[rax+000000C8]
Skill:HasAllRequirements+106- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+109- BA 10791659           - mov edx,59167910 { (004AB1E0) }
Skill:HasAllRequirements+10e- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+112- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+115- 49 BB A75D070800000000 - mov r11,0000000008075DA7 { (232) }
Skill:HasAllRequirements+11f- 41 FF D3              - call r11
Skill:HasAllRequirements+122- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+126- 33 C0                 - xor eax,eax
Skill:HasAllRequirements+128- E9 1B020000           - jmp Skill:HasAllRequirements+348
Skill:HasAllRequirements+12d- 85 F6                 - test esi,esi
Skill:HasAllRequirements+12f- 0F84 7B000000         - je Skill:HasAllRequirements+1b0
Skill:HasAllRequirements+135- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+13c- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+13f- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+143- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+146- 49 BB F009000800000000 - mov r11,Character:get_InLocomotion { (418153288) }
Skill:HasAllRequirements+150- 41 FF D3              - call r11
Skill:HasAllRequirements+153- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+157- 85 C0                 - test eax,eax
Skill:HasAllRequirements+159- 74 26                 - je Skill:HasAllRequirements+181
Skill:HasAllRequirements+15b- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+162- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+165- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+169- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+16c- 49 BB 90D9C41800000000 - mov r11,Character:get_NextIsLocomotion { (418153288) }
Skill:HasAllRequirements+176- 41 FF D3              - call r11
Skill:HasAllRequirements+179- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+17d- 85 C0                 - test eax,eax
Skill:HasAllRequirements+17f- 75 2F                 - jne Skill:HasAllRequirements+1b0
Skill:HasAllRequirements+181- 0FB6 87 CE030000      - movzx eax,byte ptr [rdi+000003CE]
Skill:HasAllRequirements+188- 85 C0                 - test eax,eax
Skill:HasAllRequirements+18a- 0F84 70000000         - je Skill:HasAllRequirements+200
Skill:HasAllRequirements+190- 48 8B CF              - mov rcx,rdi
Skill:HasAllRequirements+193- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+197- 49 BB 0E07C61800000000 - mov r11,0000000018C6070E { (232) }
Skill:HasAllRequirements+1a1- 41 FF D3              - call r11
Skill:HasAllRequirements+1a4- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+1a8- 85 C0                 - test eax,eax
Skill:HasAllRequirements+1aa- 0F84 50000000         - je Skill:HasAllRequirements+200
Skill:HasAllRequirements+1b0- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+1b7- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+1ba- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+1be- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+1c1- 49 BB 60BCFC0700000000 - mov r11,Character:get_IsHandlingBag { (418153288) }
Skill:HasAllRequirements+1cb- 41 FF D3              - call r11
Skill:HasAllRequirements+1ce- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+1d2- 85 C0                 - test eax,eax
Skill:HasAllRequirements+1d4- 75 2A                 - jne Skill:HasAllRequirements+200
Skill:HasAllRequirements+1d6- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+1dd- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+1e0- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+1e4- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+1e7- 49 BB 1009C61800000000 - mov r11,Character:get_IsHandlingWeapon { (418153288) }
Skill:HasAllRequirements+1f1- 41 FF D3              - call r11
Skill:HasAllRequirements+1f4- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+1f8- 85 C0                 - test eax,eax
Skill:HasAllRequirements+1fa- 0F84 88000000         - je Skill:HasAllRequirements+288
Skill:HasAllRequirements+200- 85 F6                 - test esi,esi
Skill:HasAllRequirements+202- 0F84 79000000         - je Skill:HasAllRequirements+281
Skill:HasAllRequirements+208- 48 8B 8F 98010000     - mov rcx,[rdi+00000198]
Skill:HasAllRequirements+20f- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+213- 49 BB 407FDD0400000000 - mov r11,UnityEngine:Object:op_Implicit { (-326416299) }
Skill:HasAllRequirements+21d- 41 FF D3              - call r11
Skill:HasAllRequirements+220- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+224- 85 C0                 - test eax,eax
Skill:HasAllRequirements+226- 0F84 55000000         - je Skill:HasAllRequirements+281
Skill:HasAllRequirements+22c- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+233- 48 8B 88 C8000000     - mov rcx,[rax+000000C8]
Skill:HasAllRequirements+23a- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+23e- 49 BB 407FDD0400000000 - mov r11,UnityEngine:Object:op_Implicit { (-326416299) }
Skill:HasAllRequirements+248- 41 FF D3              - call r11
Skill:HasAllRequirements+24b- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+24f- 85 C0                 - test eax,eax
Skill:HasAllRequirements+251- 74 2E                 - je Skill:HasAllRequirements+281
Skill:HasAllRequirements+253- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+25a- 48 8B 80 C8000000     - mov rax,[rax+000000C8]
Skill:HasAllRequirements+261- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+264- BA 10791659           - mov edx,59167910 { (004AB1E0) }
Skill:HasAllRequirements+269- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+26d- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+270- 49 BB 30EEC81800000000 - mov r11,CharacterUI:ShowInfoNotificationLoc { (-326416299) }
Skill:HasAllRequirements+27a- 41 FF D3              - call r11
Skill:HasAllRequirements+27d- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+281- 33 C0                 - xor eax,eax
Skill:HasAllRequirements+283- E9 C0000000           - jmp Skill:HasAllRequirements+348
Skill:HasAllRequirements+288- 48 8B CF              - mov rcx,rdi
Skill:HasAllRequirements+28b- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+28f- 49 BB E075070800000000 - mov r11,Skill:InCooldown { (-326416299) }
Skill:HasAllRequirements+299- 41 FF D3              - call r11
Skill:HasAllRequirements+29c- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+2a0- 85 C0                 - test eax,eax
Skill:HasAllRequirements+2a2- 0F84 85000000         - je Skill:HasAllRequirements+32d
Skill:HasAllRequirements+2a8- 85 F6                 - test esi,esi
Skill:HasAllRequirements+2aa- 0F84 79000000         - je Skill:HasAllRequirements+329
Skill:HasAllRequirements+2b0- 48 8B 8F 98010000     - mov rcx,[rdi+00000198]
Skill:HasAllRequirements+2b7- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+2bb- 49 BB 2CB1DC0400000000 - mov r11,0000000004DCB12C { (-1286680600) }
Skill:HasAllRequirements+2c5- 41 FF D3              - call r11
Skill:HasAllRequirements+2c8- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+2cc- 85 C0                 - test eax,eax
Skill:HasAllRequirements+2ce- 0F84 55000000         - je Skill:HasAllRequirements+329
Skill:HasAllRequirements+2d4- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+2db- 48 8B 88 C8000000     - mov rcx,[rax+000000C8]
Skill:HasAllRequirements+2e2- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+2e6- 49 BB 2CB1DC0400000000 - mov r11,0000000004DCB12C { (-1286680600) }
Skill:HasAllRequirements+2f0- 41 FF D3              - call r11
Skill:HasAllRequirements+2f3- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+2f7- 85 C0                 - test eax,eax
Skill:HasAllRequirements+2f9- 74 2E                 - je Skill:HasAllRequirements+329
Skill:HasAllRequirements+2fb- 48 8B 87 98010000     - mov rax,[rdi+00000198]
Skill:HasAllRequirements+302- 48 8B 80 C8000000     - mov rax,[rax+000000C8]
Skill:HasAllRequirements+309- 48 8B C8              - mov rcx,rax
Skill:HasAllRequirements+30c- BA A035DA56           - mov edx,56DA35A0 { (004AB1E0) }
Skill:HasAllRequirements+311- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+315- 83 38 00              - cmp dword ptr [rax],00 { 0 }
Skill:HasAllRequirements+318- 49 BB A75D070800000000 - mov r11,0000000008075DA7 { (232) }
Skill:HasAllRequirements+322- 41 FF D3              - call r11
Skill:HasAllRequirements+325- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+329- 33 C0                 - xor eax,eax
Skill:HasAllRequirements+32b- EB 1B                 - jmp Skill:HasAllRequirements+348
Skill:HasAllRequirements+32d- 48 8B CF              - mov rcx,rdi
Skill:HasAllRequirements+330- 48 8B D6              - mov rdx,rsi
Skill:HasAllRequirements+333- 48 83 EC 20           - sub rsp,20 { 32 }
Skill:HasAllRequirements+337- 49 BB 305B070800000000 - mov r11,Skill:HasBaseRequirements { (-326416299) }
Skill:HasAllRequirements+341- 41 FF D3              - call r11
Skill:HasAllRequirements+344- 48 83 C4 20           - add rsp,20 { 32 }
Skill:HasAllRequirements+348- 48 8D 65 F0           - lea rsp,[rbp-10]
Skill:HasAllRequirements+34c- 5F                    - pop rdi
Skill:HasAllRequirements+34d- 5E                    - pop rsi
Skill:HasAllRequirements+34e- C9                    - leave 
Skill:HasAllRequirements+34f- C3                    - ret 


User avatar
Tymon
Novice Cheater
Novice Cheater
Posts: 22
Joined: Mon May 01, 2017 2:34 pm
Reputation: 7

Re: [Request] Outward

Post by Tymon »

Anyone figure out how to give yourself more than 3 skill points yet? In a game like this, being able to only fully learn 3 out of 8 skill trees when you only get an 8 button hotbar and there aren't any levels etc, is just silly in my opinion.

Post Reply

Who is online

Users browsing this forum: DaFunk, fujiwaranovan, Google Adsense [Bot], patka, SemrushBot, Wraithspectr3