Terraria 1.4 [Steam] [UPDATED]

Upload your cheat tables here (No requests)
Lonkle
What is cheating?
What is cheating?
Posts: 1
Joined: Sat Feb 01, 2020 8:41 pm
Reputation: 0

Re: Terraria 1.3.5.x [Steam]

Post by Lonkle »

I am unable to turn on Craft Anything, World Settings, Always Fish Crates, No Potion Sickness and No Mana Sickness. I am using a PC with an AMD CPU so this may be the problem. Please let me know if I can do anything to fix this.

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

cryptonat
Noobzor
Noobzor
Posts: 6
Joined: Mon Feb 19, 2018 3:59 pm
Reputation: 0

Re: Terraria 1.3.5.x [Steam]

Post by cryptonat »

Sorry if this necro isn't allowed. I figured it was still relevant to the original post and not worth a new topic. I'm still using the cheat table Terraria 1.3.5.3 v3.0 Intel.CT today, trying to get the achievements.

I'd rather not spend 80 hours doing the fishing achievements. So I came up with a script that changes the first item in your inventory (top left, slot 1) to the ID of the fish the Angler requires before he checks your inventory to see if you have it. Based on cheat table original cheat table, had to do a fix first.

The player pointer was broken, so I made some slight changes of the script "My Player Pointer (works online + offline)":

Code: Select all

define(drawHp,Terraria.Main::DrawInterface_Resources_Life+510) // CHANGE MADE HERE - Was originally 50c
define(drawHpAddr,DB 82 40 03 00 00)

[ENABLE]

assert(drawHp,drawHpAddr)
alloc(newmem,$1000)

label(code)
label(return)
label(player_ptr)

newmem:

code:
  mov [player_ptr],edx
  fild dword ptr [edx+00000340]
  jmp return

player_ptr:
dd 0

drawHp:
  jmp newmem
  nop
return:
registersymbol(player_ptr)

[DISABLE]

drawHp:
  db drawHpAddr
  // fild dword ptr [edx+00000340]

unregistersymbol(player_ptr)
dealloc(newmem)

As for my code, being built off the pointer:

FishPopper:

Code: Select all

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

newmem:
mov [[[[player_ptr]+BC]+8]+10C],edx
jmp originalcode

originalcode:
call Terraria.Player::FindItem

exit:
jmp returnhere

Terraria.Main::GUIChatDrawInner+20A0:
jmp newmem
returnhere:




[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
Terraria.Main::GUIChatDrawInner+20A0:
call Terraria.Player::FindItem
//Alt: db E8 BB 7D 7D FF
Just enable the player pointer, fast time, my FishPopper script and just hit quest in the Angler Dialogue every day at 4:31am.

Sure, there are probably better ways to go about this. Maybe calling AnglerReward directly... Not sure when the achievement count comes in and I didn't really look that far.

Hope this helps others.

zxcv1541
Noobzor
Noobzor
Posts: 8
Joined: Wed Jan 22, 2020 10:23 am
Reputation: 0

Re: Terraria 1.3.5.x [Steam]

Post by zxcv1541 »

Amcom wrote:
Wed Jan 29, 2020 6:54 am
Updated craft anything for AMD users on v0.11.6.2 of TML
but RecipeBrowser ON= is not work fix pls

LordTaterofTot
What is cheating?
What is cheating?
Posts: 1
Joined: Sun Feb 23, 2020 7:09 pm
Reputation: 0

Re: Terraria 1.3.5.x [Steam]

Post by LordTaterofTot »

can you add a damage modifier or a mount speed modifier,if you did,it would really help :)

Slayheim
Noobzor
Noobzor
Posts: 13
Joined: Sun Oct 13, 2019 11:19 am
Reputation: 1

Re: Terraria 1.3.5.x [Steam]

Post by Slayheim »

cryptonat wrote:
Sun Feb 02, 2020 11:00 pm
Sorry if this necro isn't allowed. I figured it was still relevant to the original post and not worth a new topic. I'm still using the cheat table Terraria 1.3.5.3 v3.0 Intel.CT today, trying to get the achievements.

I'd rather not spend 80 hours doing the fishing achievements. So I came up with a script that changes the first item in your inventory (top left, slot 1) to the ID of the fish the Angler requires before he checks your inventory to see if you have it. Based on cheat table original cheat table, had to do a fix first.

The player pointer was broken, so I made some slight changes of the script "My Player Pointer (works online + offline)":

Code: Select all

define(drawHp,Terraria.Main::DrawInterface_Resources_Life+510) // CHANGE MADE HERE - Was originally 50c
define(drawHpAddr,DB 82 40 03 00 00)

[ENABLE]

assert(drawHp,drawHpAddr)
alloc(newmem,$1000)

label(code)
label(return)
label(player_ptr)

newmem:

code:
  mov [player_ptr],edx
  fild dword ptr [edx+00000340]
  jmp return

player_ptr:
dd 0

drawHp:
  jmp newmem
  nop
return:
registersymbol(player_ptr)

[DISABLE]

drawHp:
  db drawHpAddr
  // fild dword ptr [edx+00000340]

unregistersymbol(player_ptr)
dealloc(newmem)

As for my code, being built off the pointer:

FishPopper:

Code: Select all

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

newmem:
mov [[[[player_ptr]+BC]+8]+10C],edx
jmp originalcode

originalcode:
call Terraria.Player::FindItem

exit:
jmp returnhere

Terraria.Main::GUIChatDrawInner+20A0:
jmp newmem
returnhere:




[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
Terraria.Main::GUIChatDrawInner+20A0:
call Terraria.Player::FindItem
//Alt: db E8 BB 7D 7D FF
Just enable the player pointer, fast time, my FishPopper script and just hit quest in the Angler Dialogue every day at 4:31am.

Sure, there are probably better ways to go about this. Maybe calling AnglerReward directly... Not sure when the achievement count comes in and I didn't really look that far.

Hope this helps others.
Error in Line 9 for FishPopper

okami_x
Table Makers
Table Makers
Posts: 95
Joined: Fri May 25, 2018 12:38 am
Reputation: 75

Re: Terraria 1.3.5.x [Steam]

Post by okami_x »

Terraria 1.4 release is getting close so I wanted to tell everyone that i will start updating the table as soon as i can.

The plan is to make sure everything works and then I will consider adding new scripts.

Regarding the state of the current table, i have a working Projectile editor script for Steam 1.3.5.3
The current editor allows me to change projectile Damage, ID, Size, AI, Speed, Bounce, Duration and Gravity.
I can change the projectile after bounce, this means I could make an arrow bounce and turn into star.
I can also make the projectile that spawns random.
Summons are also projectiles so I can make them shoot something while they follow me. (Imagine a turret that follows the player).

I don't have plans to release this script yet. It needs a lot of work and it will need an update for 1.4.
This means that most likely I wont add the Projectile Editor to the 1.4 table since its something i made for fun and personal use only.

datboi332
What is cheating?
What is cheating?
Posts: 3
Joined: Wed May 06, 2020 11:55 am
Reputation: 0

Re: Terraria 1.3.5.x [Steam]

Post by datboi332 »

For some reason the Full bright doesnt work in the 1.3.5.3 v3.0 Intel

User avatar
NumberXer0
Expert Cheater
Expert Cheater
Posts: 1028
Joined: Sun Mar 12, 2017 2:17 pm
Reputation: 92

Re: Terraria 1.3.5.x [Steam]

Post by NumberXer0 »

Hmm..does anyone know of a table/trainer/mod that had an "Unlimited Item Use" style cheat? I know there are cheats to modify individual amounts and ones to craft without resources..but thats not really what I'm looking for.

I know its less useful as a cheat, but I like to still play the game. Let's say I need 4 copper bars to make something, I want to actually need to get 4 to craft..BUT..then I would like those to not be used up. This lessens the grind, but still requires you to put the effort in. Its been done in plenty of other games already, in Starbound as well, which is the same type of game.

Has anyone come across anything like this for Terraria?

rudm09
Expert Cheater
Expert Cheater
Posts: 142
Joined: Sun Aug 26, 2018 5:44 pm
Reputation: 57

Re: Terraria 1.3.5.x [Steam]

Post by rudm09 »

Hello the new update is out so i humbly request an update for the table!Thanks

glyth
Expert Cheater
Expert Cheater
Posts: 184
Joined: Tue Aug 29, 2017 4:30 am
Reputation: 5

Re: Terraria 1.3.5.x [Steam]

Post by glyth »

i second a new update

smashbro596
Expert Cheater
Expert Cheater
Posts: 231
Joined: Fri Apr 14, 2017 6:20 pm
Reputation: 45

Re: Terraria 1.3.5.x [Steam]

Post by smashbro596 »

1.4 launched. small request: unlock all journey mode recipes

leviathanxv
Noobzor
Noobzor
Posts: 13
Joined: Sat Apr 11, 2020 4:57 pm
Reputation: 2

Re: Terraria 1.3.5.x [Steam]

Post by leviathanxv »

Since 1.4 dropped, we have to update this, they seem to have changed every value, no old script works without crashes.

chrisreddot3
Expert Cheater
Expert Cheater
Posts: 452
Joined: Sun Mar 24, 2019 1:38 am
Reputation: 80

Re: Terraria 1.3.5.x [Steam]

Post by chrisreddot3 »

update to 1.4 pls

Carrnage
Cheater
Cheater
Posts: 45
Joined: Sun Jun 25, 2017 1:36 am
Reputation: 5

Re: Terraria 1.3.5.x [Steam]

Post by Carrnage »

Health can still be found through a simple 4 byte scan, anyone know the trick for item values?

penilex
Noobzor
Noobzor
Posts: 9
Joined: Fri Nov 15, 2019 7:04 pm
Reputation: 1

Re: Terraria 1.3.5.x [Steam]

Post by penilex »

Carrnage wrote:
Sun May 17, 2020 7:34 am
Health can still be found through a simple 4 byte scan, anyone know the trick for item values?
hi ! pending a update, try Terrasavr is a web-based profile viewer & editor here :
Spoiler
[Link]
but we still need a upgrade of CT :roll:

Post Reply