Generals & Rulers
- Illusion11316
- Cheater
- Posts: 26
- Joined: Fri Dec 29, 2017 12:25 am
- Reputation: 19
Generals & Rulers
Game Name: Generals & Rulers
Game Engine: Unity
Game Version: 1.0?
Options Required: Gold And Other u can find
Game/Steam Website:
Note: I dunno how to find the values anyway, can someone share information about Unity ?
Game Engine: Unity
Game Version: 1.0?
Options Required: Gold And Other u can find
Game/Steam Website:
Note: I dunno how to find the values anyway, can someone share information about Unity ?
Re: Generals & Rulers
When the game use Unity -> With hope not modified you can use the "Mono Feature" in Cheat engine. This helps a lot to find everything with only 1 address.Illusion11316 wrote: ↑Sun Jun 02, 2019 10:46 amNote: I dunno how to find the values anyway, can someone share information about Unity ?
e.G you search for Ammo, when you find it, you go to this function and press on the opcode "Find out what address this instruction access", a "list" pop up and you should see your Ammo-address with the Value for example 5, then you open structure dissect and you find everything.
You can find the same also in a normal Structure, but with a unity structure its all easier
Unity Structure:
Spoiler
[Link]
Spoiler
[Link]
Re: Generals & Rulers
Gold should be in Assembly C sharp?
Re: Generals & Rulers
UnlockAllCampaigns
NoResourcesDecreasing
ScienceUpgradeAlwaysAvailable
Code: Select all
[ENABLE]
CampaignDataProvider:IsCampaignAvailable:
ret
[DISABLE]
CampaignDataProvider:IsCampaignAvailable:
push ebp
Code: Select all
[ENABLE]
ResourceManagment:RemoveResource:
ret
[DISABLE]
ResourceManagment:RemoveResource:
push ebp
Code: Select all
[ENABLE]
Science:IsUpgradeUpgradeAvailable:
ret
[DISABLE]
Science:IsUpgradeUpgradeAvailable:
push ebp
Re: Generals & Rulers
The game is using anti-cheat toolkit - I'll let you google it to discover how to bypass it.Illusion11316 wrote: ↑Sun Jun 02, 2019 10:46 amNote: I dunno how to find the values anyway, can someone share information about Unity ?
Re: Generals & Rulers
Copy/past the code in notepad++ and save it with .ct extension
Religion
Religion
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CheatTable CheatEngineTableVersion="28">
<CheatEntries>
<CheatEntry>
<ID>13</ID>
<Description>"Religion"</Description>
<Options moHideChildren="1"/>
<LastState/>
<VariableType>Auto Assembler Script</VariableType>
<AssemblerScript>{ Game : Generals And Rulers
Version: 06012019
Date : 2019-06-08
Author : fantomas
}
define(address,ReligionsInfo:SetInfo+12c)
define(bytes,48 63 40 10 48 89 85 00 FF FF FF)
[ENABLE]
assert(address,bytes)
alloc(newmem,$100,ReligionsInfo:SetInfo+12c)
alloc(religion_ptr, 8)
registersymbol(religion_ptr)
label(code)
label(return)
newmem:
cmp [rax+28C],1 //player
jne code
mov [religion_ptr],rax
code:
movsxd rax,dword ptr [rax+10]
mov [rbp-00000100],rax
jmp return
address:
jmp newmem
nop
nop
nop
nop
nop
nop
return:
[DISABLE]
address:
db bytes
// movsxd rax,dword ptr [rax+10]
// mov [rbp-00000100],rax
unregistersymbol(religion_ptr)
dealloc(newmem)
dealloc(religion_ptr)
{
// ORIGINAL CODE - INJECTION POINT: ReligionsInfo:SetInfo+12c
07B608A2: 41 BA D0 CE 2E 89 - mov r10d,892ECED0
07B608A8: FF 50 D0 - call qword ptr [rax-30]
07B608AB: 48 8B C8 - mov rcx,rax
07B608AE: 48 8B 85 E8 FE FF FF - mov rax,[rbp-00000118]
07B608B5: 48 89 48 10 - mov [rax+10],rcx
07B608B9: 49 8B 47 10 - mov rax,[r15+10]
07B608BD: 48 8B C8 - mov rcx,rax
07B608C0: 83 39 00 - cmp dword ptr [rcx],00
07B608C3: 48 85 C0 - test rax,rax
07B608C6: 0F 84 A5 06 00 00 - je ReligionsInfo:SetInfo+7d1
// ---------- INJECTING HERE ----------
07B608CC: 48 63 40 10 - movsxd rax,dword ptr [rax+10]
07B608D0: 48 89 85 00 FF FF FF - mov [rbp-00000100],rax
// ---------- DONE INJECTING ----------
07B608D7: 48 8B 46 10 - mov rax,[rsi+10]
07B608DB: 48 89 85 F0 FE FF FF - mov [rbp-00000110],rax
07B608E2: 4D 85 FF - test r15,r15
07B608E5: 0F 84 7F 06 00 00 - je ReligionsInfo:SetInfo+7ca
07B608EB: B9 A0 FC ED 68 - mov ecx,68EDFCA0
07B608F0: 48 8D 64 24 00 - lea rsp,[rsp+00]
07B608F5: 90 - nop
07B608F6: 49 BB 60 0F 36 00 00 00 00 00 - mov r11,System:Object:__icall_wrapper_ves_icall_object_new_specific
07B60900: 41 FF D3 - call r11
07B60903: 48 8B D0 - mov rdx,rax
}
</AssemblerScript>
<CheatEntries>
<CheatEntry>
<ID>12</ID>
<Description>"staticData"</Description>
<DropDownList ReadOnly="1" DisplayValueAsItem="1">1:Catholicism
2:Orthodoxy
3:Islam
4:Confucianism
5:Hinduism
6:Buddhism
7:Atheism
8:Paganism
9:Other
</DropDownList>
<VariableType>4 Bytes</VariableType>
<Address>[religion_ptr]+10</Address>
</CheatEntry>
</CheatEntries>
</CheatEntry>
</CheatEntries>
<UserdefinedSymbols/>
</CheatTable>
- Illusion11316
- Cheater
- Posts: 26
- Joined: Fri Dec 29, 2017 12:25 am
- Reputation: 19
Re: Generals & Rulers
Because that it was very hard to find it with my skillfantomas wrote: ↑Sat Jun 08, 2019 10:19 amThe game is using anti-cheat toolkit - I'll let you google it to discover how to bypass it.Illusion11316 wrote: ↑Sun Jun 02, 2019 10:46 amNote: I dunno how to find the values anyway, can someone share information about Unity ?
Re: Generals & Rulers
any tables yet??
script doesn't work's
script doesn't work's
Re: Generals & Rulers
The Scripts works for mefantomas wrote: ↑Sat Jun 08, 2019 10:19 amThe game is using anti-cheat toolkit - I'll let you google it to discover how to bypass it.Illusion11316 wrote: ↑Sun Jun 02, 2019 10:46 amNote: I dunno how to find the values anyway, can someone share information about Unity ?
Re: Generals & Rulers
This is the error for science and resource:
[string "[enable]..."]:1:unexpected symbol near '['
And for religion :
"not al code is injectable"
alloc(newmem,$100,ReligionsInfo:SetInfo+12c)
Re: Generals & Rulers
1:Somewhere from [ seems to be a mistake
2:Looks like you try to attach it to your cheat table without mono feature activated?
Re: Generals & Rulers
Re: Generals & Rulers
I convert it into a table, and I changed something for Religion. When its not working I think you have a different version or so.
Table by Fantomas
Table by Fantomas
- Attachments
-
- GeneralsAndRulers.CT
- (6.81 KiB) Downloaded 241 times
-
- What is cheating?
- Posts: 1
- Joined: Mon Jul 01, 2019 2:21 pm
- Reputation: 0
Re: Generals & Rulers
How do i use i really dont know how i have the cheat table and everything but how do i use the cheats in game it doesn't seem to really work even when i check it please help.
Who is online
Users browsing this forum: Alienmonkey, CraftyTifa, Jsdf1995, RockoTrex