Rimworld V1.0.2282

Upload your cheat tables here (No requests)
Post Reply
Mezspirit
Novice Cheater
Novice Cheater
Posts: 18
Joined: Fri Nov 23, 2018 10:25 am
Reputation: 35

Rimworld V1.0.2282

Post by Mezspirit »

Redid the codes to work without Activate mono features this time. I left some things in CT for debugging or anyone who wants to pick it up and do some codes from there.

I'm not very experienced and might not be interested in adding more to table. Good Luck, have fun.

Max Skills:
Click on a pawn you want first, and then activate the script. Beware that it affects other pawns you don't control too. So once you have a selected a pawn and the code takes affect, deactivate the script and then deselect the pawn by clicking on empty space.

Item Select:
Click on an item that can stack or has life or quality to it, and then activate it.

Quality Pointer:
Click on an item or furniture that has a qualify modifier (awful - legendary) to it, and then activate it.

Game Base Pointer:
This is for people to mess around with its pointer addresses and stuff. It's to explore the game's data structures. Just activate when you get into the game's map.
|
V
Reasearch Progress:
Once you have activated the Game Base Pointer, this one's pointer address should be filled up. Right click on this and "Browse this memory region" or click on it and press "Ctrl+B". You'll be in the Memory View and should be looking at the hex view in floats. This is done by right clicking -> "Display Type" -> "Float" or otherwise just press "Ctrl+9"

From there change the fade time to be longer or more, do a research and then look at the hex view to find the float value that has changed (Highlighted in red). Change that changed value you found to -1 to the total view of that researched project and let the game continue as the pawn completes it. Very sorry it is a messy of way of doing thnigs.


Update
Scripts can now be activated without the "Activate mono feature" this time. Worked on the Quality Pointer again due to other variables intersecting with the aobscan.

How to use this cheat table?
  1. Install Cheat Engine
  2. Double-click the .CT file in order to open it.
  3. Click the PC icon in Cheat Engine in order to select the game process.
  4. Keep the list.
  5. Activate the trainer options by checking boxes or setting values from 0 to 1
Attachments
RimWorldWin64.CT
V1.0.2282 Changed the scripts to activate without mono feature. Added some more pointers in Item Select and Game Base Pointer for debugging.
(21.64 KiB) Downloaded 6118 times

MrReny
Cheater
Cheater
Posts: 25
Joined: Sun Jul 29, 2018 8:27 pm
Reputation: 10

Re: Rimworld V1.0.2282

Post by MrReny »

here some code for Needs:

Code: Select all

[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048,RimWorld:Need:get_CurLevel+b) 
label(returnhere)
label(originalcode)
label(exit)

newmem:
mov [rax+28],(float)1//this is allocated memory, you have read,write,execute access
//place your code here

originalcode:
movss xmm0,[rax+28]

exit:
jmp returnhere

RimWorld:Need:get_CurLevel+b:
jmp newmem
returnhere:


 
 
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
RimWorld:Need:get_CurLevel+b:
movss xmm0,[rax+28]
//Alt: db F3 0F 10 40 28
boost all needs for all pawns on 100%, maybe enemy too(dont tested)

sry for my english

jawi
Novice Cheater
Novice Cheater
Posts: 16
Joined: Sun Nov 11, 2018 6:46 am
Reputation: 18

Re: Rimworld V1.0.2282

Post by jawi »

Hi! Here is my contribution. Please, disable scripts if you want to load savegame.
Attachments
RimWorldWin64.CT
(86.35 KiB) Downloaded 1043 times

Special
Expert Cheater
Expert Cheater
Posts: 110
Joined: Thu Mar 02, 2017 9:26 pm
Reputation: 20

Re: Rimworld V1.0.2282

Post by Special »

Latest version is 1.0.2408 rev747 on Steam, any chance a cool person could update this?

Deep Thought
Novice Cheater
Novice Cheater
Posts: 15
Joined: Thu Feb 08, 2018 1:24 pm
Reputation: 3

Re: Rimworld V1.0.2282

Post by Deep Thought »

Bump what Special said - please hook us up with an update

berlysnip
What is cheating?
What is cheating?
Posts: 1
Joined: Wed Apr 19, 2017 10:17 am
Reputation: 0

Re: Rimworld V1.0.2282

Post by berlysnip »

can you update this table sir ? :mrgreen: :mrgreen:

andre2539
Noobzor
Noobzor
Posts: 12
Joined: Wed Sep 18, 2019 9:19 am
Reputation: 3

Re: Rimworld V1.0.2282

Post by andre2539 »

berlysnip wrote:
Sat Feb 29, 2020 11:52 am
can you update this table sir ? :mrgreen: :mrgreen:

viewtopic.php?f=2&t=11692#p123855 this is works with the new update

nilmar
What is cheating?
What is cheating?
Posts: 2
Joined: Sat Dec 07, 2019 12:17 pm
Reputation: 0

Re: Rimworld V1.0.2282

Post by nilmar »

Mezspirit wrote:
Wed Jun 26, 2019 3:14 am
Redid the codes to work without Activate mono features this time. I left some things in CT for debugging or anyone who wants to pick it up and do some codes from there.

I'm not very experienced and might not be interested in adding more to table. Good Luck, have fun.

Max Skills:
Click on a pawn you want first, and then activate the script. Beware that it affects other pawns you don't control too. So once you have a selected a pawn and the code takes affect, deactivate the script and then deselect the pawn by clicking on empty space.

Item Select:
Click on an item that can stack or has life or quality to it, and then activate it.

Quality Pointer:
Click on an item or furniture that has a qualify modifier (awful - legendary) to it, and then activate it.

Game Base Pointer:
This is for people to mess around with its pointer addresses and stuff. It's to explore the game's data structures. Just activate when you get into the game's map.
|
V
Reasearch Progress:
Once you have activated the Game Base Pointer, this one's pointer address should be filled up. Right click on this and "Browse this memory region" or click on it and press "Ctrl+B". You'll be in the Memory View and should be looking at the hex view in floats. This is done by right clicking -> "Display Type" -> "Float" or otherwise just press "Ctrl+9"

From there change the fade time to be longer or more, do a research and then look at the hex view to find the float value that has changed (Highlighted in red). Change that changed value you found to -1 to the total view of that researched project and let the game continue as the pawn completes it. Very sorry it is a messy of way of doing thnigs.


Update
Scripts can now be activated without the "Activate mono feature" this time. Worked on the Quality Pointer again due to other variables intersecting with the aobscan.
Please Update for 1.1

runejade
Cheater
Cheater
Posts: 36
Joined: Sun Sep 13, 2020 5:33 pm
Reputation: 3

Re: Rimworld V1.0.2282

Post by runejade »

none of the cheat tables work as of now, may i ask that new ones be made. i am not skilled enough atm to make any appropriate tables myself

Alaswing
Cheater
Cheater
Posts: 29
Joined: Mon Mar 12, 2018 9:34 pm
Reputation: 3

Re: Rimworld V1.0.2282

Post by Alaswing »

hello good sirs, can anyone please update this table?

Post Reply

Who is online

Users browsing this forum: AhrefsBot, asderasder444, FunFastEfficienttt, Google Adsense [Bot], neochinoko, thejogger1998, WhoAmI