Page 1 of 1

Enlightenment

Posted: Sat Jul 28, 2018 9:32 pm
by krmit
[b]Game Name:[/b] Enlightenment

[b]Game Engine:[/b] Unity (5.4.2f2_b7e030c65c9b)

[b]Game Version:[/b] 1.1.0 (according to Steam); exe MD5 - 0bc5ad877b6f5f541b6ef23c4f753b5f

[b]Options Required:[/b] Inf HP & stamina, inf ammo & no reload, inf currency (2 types), xp gain multiplier

[b]Steam Website:[/b] [URL]https://store.steampowered.com/app/663300/[/URL]

Enlightenment

Posted: Sun Jul 29, 2018 12:26 pm
by Rysefox
Try this one, send me Feedback when you find bugs.. Instructions see you in CE

Enlightenment

Posted: Sun Jul 29, 2018 3:15 pm
by krmit
thanks, i will test it tomorrow

Enlightenment

Posted: Sun Jul 29, 2018 3:35 pm
by Rysefox
.

Enlightenment

Posted: Mon Jul 30, 2018 10:47 am
by krmit
stamina & ammo scripts are good. meds too, but there are lotsa ways to die and not have a chance to use one (knockdown in a crowd for example) - inf hp script will be MUCH useful. attribute points script - can't even find a place where i can spent these "points".

the table is good for start, but need a inf hp, money and illumilets options.

but thanks anyway ))

Enlightenment

Posted: Mon Jul 30, 2018 10:51 am
by Rysefox
[QUOTE="krmit, post: 53460, member: 2642"]stamina & ammo scripts are good. meds too, but there are lotsa ways to die and not have a chance to use one (knockdown in a crowd for example) - inf hp script will be MUCH useful. attribute points script - can't even find a place where i can spent these "points".

the table is good for start, but need a inf hp, money and illumilets options.

but thanks anyway ))[/QUOTE]



Yia I working on Health, I already found the Health Value.. I try to do a Health Pointer..

Enlightenment

Posted: Mon Jul 30, 2018 11:12 am
by krmit
good to hear. best of luck to you.

and, if possible, need a inf psionic and keys options

Enlightenment

Posted: Mon Jul 30, 2018 1:13 pm
by fantomas
Rysefox, post: 53462, member: 18848 wrote:Yia I working on Health, I already found the Health Value.. I try to do a Health Pointer..

Code: Select all

[ENABLE]
alloc(newmem,2048)
label(returnhere)
label(originalcode)

newmem:
cmp byte ptr [eax+44],1
jne originalcode
fld dword ptr [eax+14]  //maxHealth(float)Value
fstp dword ptr [eax+38]
lea esp,[ebp-04]
jmp returnhere

originalcode:
fstp dword ptr [eax+38] //currentHealth(float)Value
lea esp,[ebp-04]
jmp returnhere

QHStudio.ProjectE:Health:set_bloodValue+4b:
jmp newmem
nop
returnhere:

[DISABLE]
dealloc(newmem)
QHStudio.ProjectE:Health:set_bloodValue+4b:
fstp dword ptr [eax+38]
lea esp,[ebp-04]
//Alt: db D9 58 38 8D 65 FC
Be aware that these values are shared (float) values so your 'stamina' script will also allow your enemies to have unlimited stamina. Use 'cmp' function like I did in my code above.

EDIT: the code above uses Mono features

BR

fantomas

Enlightenment

Posted: Mon Jul 30, 2018 1:29 pm
by Rysefox
[QUOTE="fantomas, post: 53473, member: 1587"][CODE=cea][ENABLE]

alloc(newmem,2048)

label(returnhere)

label(originalcode)



newmem:

cmp byte ptr [eax+44],1

jne originalcode

fld dword ptr [eax+14] //maxHealth(float)Value

fstp dword ptr [eax+38]

lea esp,[ebp-04]

jmp returnhere



originalcode:

fstp dword ptr [eax+38] //currentHealth(float)Value

lea esp,[ebp-04]

jmp returnhere



QHStudio.ProjectE:Health:set_bloodValue+4b:

jmp newmem

nop

returnhere:



[DISABLE]

dealloc(newmem)

QHStudio.ProjectE:Health:set_bloodValue+4b:

fstp dword ptr [eax+38]

lea esp,[ebp-04]

//Alt: db D9 58 38 8D 65 FC[/CODE]



Be aware that these values are shared (float) values so your 'stamina' script will also allow your enemies to have unlimited stamina. Use 'cmp' function like I did in my code above.



EDIT: the code above uses Mono features



BR





fantomas[/QUOTE]





Yia im very new, I need to learn these function^^