[Request] Zenith: The Last City

Ask about cheats/tables for single player games here
JerumboTheThird
Noobzor
Noobzor
Posts: 6
Joined: Mon Jan 31, 2022 3:24 am
Reputation: 3

Re: [Request] Zenith: The Last City

Post by JerumboTheThird »

kravitch wrote:
Mon Jan 31, 2022 10:20 pm
This script enables instant blaster charge (tested on support mage). I have Oculus version, but it should work on Steam too. It's a bit OP so don't go wild with it.

Code: Select all

[ENABLE]

aobscanmodule(left_charge,GameAssembly.dll,89 B3 D0 00 00 00 48 8B 7C)
alloc(newmem,$1000,left_charge)

label(code)
label(return)

newmem:

code:
  jmp return

left_charge:
  jmp newmem
  nop
return:
registersymbol(left_charge)

[DISABLE]

left_charge:
  db 89 B3 D0 00 00 00

unregistersymbol(left_charge)
dealloc(newmem)

How did you find that value. I was trying to find that crap for mad long

Nekoba
Noobzor
Noobzor
Posts: 7
Joined: Sat Jan 29, 2022 8:54 pm
Reputation: 0

Re: [Request] Zenith: The Last City

Post by Nekoba »

Thank you so much for this ^-^

ZalaterX
What is cheating?
What is cheating?
Posts: 3
Joined: Mon Jan 31, 2022 10:16 am
Reputation: 0

Re: [Request] Zenith: The Last City

Post by ZalaterX »

Thank you so much :)

There's another request from me.
Is it possible to do something for Mage Tank? like Rapid damage or something like that.

User avatar
kravitch
Cheater
Cheater
Posts: 41
Joined: Mon Dec 13, 2021 11:10 pm
Reputation: 27

Re: [Request] Zenith: The Last City

Post by kravitch »

JerumboTheThird wrote:
Tue Feb 01, 2022 1:10 am
How did you find that value. I was trying to find that crap for mad long
It actually isn't that hard. The best way to start is to find the ammo address first. Then you view that address in Memory viewer. There you can see pretty much everything related to weapon. All other things like recoil, spread, or even rapid fire, are usually close to that address. You just need to watch memory viewer and focus on what is changing when you shoot in game.

You can see an example here:


Useful tip: All values in memory viewer are in hex by default. If you're looking for a decimal value you don't need to view the memory as hex values. Simply right-click the memory viewer to open the context menu and select "Display Type -> 4 Byte Decimal, Float, or whatever you are looking for.

Other good method is dissecting data structures. Tutorial here:


And last but not least if the game uses Mono, you can try Mono Dissector. I used this to create most of my scripts for After the Fall VR game.
Example here:

ZeroHQ
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Feb 02, 2022 12:25 am
Reputation: 0

Re: [Request] Zenith: The Last City

Post by ZeroHQ »

Made an account to say thank you all for these tools, if possible could you guys show me hands on how to do this or a tutorial please and thank you so I can do it on my own if it gets patched.

Fluffy373
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Nov 13, 2021 1:36 am
Reputation: 3

Re: [Request] Zenith: The Last City

Post by Fluffy373 »

ZeroHQ wrote:
Wed Feb 02, 2022 12:26 am
Made an account to say thank you all for these tools, if possible could you guys show me hands on how to do this or a tutorial please and thank you so I can do it on my own if it gets patched.
This shows you the basic way how to find values that dont display numbers using unknown initial value scans



This video is the method on getting infinite stamina address also see his other videos for more tutorials, they are great

Zdbvr
Noobzor
Noobzor
Posts: 8
Joined: Sun Jan 30, 2022 10:34 am
Reputation: 2

Re: [Request] Zenith: The Last City

Post by Zdbvr »

i tried editing materials (using unchanged value and changed value type all for more accuracy) value keeps reverting back. unless im missing something im guessing it is only a display value and we cannot edit real value

Fluffy373
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Nov 13, 2021 1:36 am
Reputation: 3

Re: [Request] Zenith: The Last City

Post by Fluffy373 »

Zdbvr wrote:
Thu Feb 03, 2022 5:17 am
i tried editing materials (using unchanged value and changed value type all for more accuracy) value keeps reverting back. unless im missing something im guessing it is only a display value and we cannot edit real value
Basically server sided means the data is being stored in their end while client sided is values that are on our end thats why some things seem to work while others dont like hacking experience ponts and zen and our items are all saved on their server

Divines
What is cheating?
What is cheating?
Posts: 3
Joined: Sun Dec 15, 2019 4:18 am
Reputation: 0

Re: [Request] Zenith: The Last City

Post by Divines »

Is there any anti-cheat in this game?

Fluffy373
Expert Cheater
Expert Cheater
Posts: 56
Joined: Sat Nov 13, 2021 1:36 am
Reputation: 3

Re: [Request] Zenith: The Last City

Post by Fluffy373 »

Currently seems to be 0 methods of cheat detection.
EDIT: i do see in zenith discord people sending videos of yall to moderators directly. So its def a manual ban

I am wondering if you could get a item ID thats a common drop for that zone like broken horns or water drops through inventory slots, change that items ID to a more rare drops ID example a legendary enchantment dust and the mobs will start dropping enchantment dust

Sadly i know how to do this on android emulator Game Gaurdian but not with CE its self.
Last edited by Fluffy373 on Fri Feb 04, 2022 12:41 am, edited 1 time in total.

idrinkpoison
What is cheating?
What is cheating?
Posts: 1
Joined: Thu Feb 03, 2022 5:02 pm
Reputation: 0

Re: [Request] Zenith: The Last City

Post by idrinkpoison »

hey buddy, are you up for a paid freelance to make a CE table on zenith for me ?

i already got some good stuff by my self but further content its kind of pretty complicated for me to do

kravitch wrote:
Mon Jan 31, 2022 10:20 pm
This script enables instant blaster charge (tested on support mage). I have Oculus version, but it should work on Steam too. It's a bit OP so don't go wild with it.

Code: Select all

[ENABLE]

aobscanmodule(left_charge,GameAssembly.dll,89 B3 D0 00 00 00 48 8B 7C)
alloc(newmem,$1000,left_charge)

label(code)
label(return)

newmem:

code:
  jmp return

left_charge:
  jmp newmem
  nop
return:
registersymbol(left_charge)

[DISABLE]

left_charge:
  db 89 B3 D0 00 00 00

unregistersymbol(left_charge)
dealloc(newmem)

Zdbvr
Noobzor
Noobzor
Posts: 8
Joined: Sun Jan 30, 2022 10:34 am
Reputation: 2

Re: [Request] Zenith: The Last City

Post by Zdbvr »

anyone tried to edit rage value(like mana but for blade master) or ability cooldowns?

ZalaterX
What is cheating?
What is cheating?
Posts: 3
Joined: Mon Jan 31, 2022 10:16 am
Reputation: 0

Re: [Request] Zenith: The Last City

Post by ZalaterX »

Hey,

Did anyone try to do the Fire Rate on Mage Tank?
I'm trying to make it more rapid but no luck.

Zdbvr
Noobzor
Noobzor
Posts: 8
Joined: Sun Jan 30, 2022 10:34 am
Reputation: 2

Re: [Request] Zenith: The Last City

Post by Zdbvr »

kravitch wrote:
Mon Jan 31, 2022 10:20 pm
This script enables instant blaster charge (tested on support mage). I have Oculus version, but it should work on Steam too. It's a bit OP so don't go wild with it.

Code: Select all

[ENABLE]

aobscanmodule(left_charge,GameAssembly.dll,89 B3 D0 00 00 00 48 8B 7C)
alloc(newmem,$1000,left_charge)

label(code)
label(return)

newmem:

code:
  jmp return

left_charge:
  jmp newmem
  nop
return:
registersymbol(left_charge)

[DISABLE]

left_charge:
  db 89 B3 D0 00 00 00

unregistersymbol(left_charge)
dealloc(newmem)
whenever i try using this i get Error in script Script 1 : [string "[ENABLE]
..."]:1: unexpected symbol near '['

Nekoba
Noobzor
Noobzor
Posts: 7
Joined: Sat Jan 29, 2022 8:54 pm
Reputation: 0

Re: [Request] Zenith: The Last City

Post by Nekoba »

Open up the memory viewer and open up the auto assembler (Ctrl + A), paste it there and then run the script; cheers ^-^

Post Reply

Who is online

Users browsing this forum: -AdviZzzor-, arrow2733, JordanP, rakumaru88, Ziro99