Page 1 of 4

Plants vs Zombies (GOTY) [+25] BY TheInsaneHacker

Posted: Tue Sep 03, 2019 11:45 am
by TheInsaneHacker
Here is my Plants vs zombies mod.
Made for the Game Of The Year version.

Options:

- Auto Collect Sun and Coins
- Infinite sun
- Instant recharge
- Invincible plants
- Place anywhere
- Hit anywhere (very rare)
- Hungry Chompers
- No Zombies (Zombies cannot spawn)
- Instant Activate Potato Mine
- Disable Cooldown for Cob Cannon
- Disable/Heal Ground Damage
- Disable Magnet-shroom Cooldown
- Infinite lawnmowers
- Plants Don't get more Expensive in Endless Mode
- One hit kill all zombies
- Slow bullets
- Unhittable zombies
- High gravity bullets
- Plants shoot backwards
- Freeze bullets
- Infinite coins
- Infinite chocolate
- Infinite tree of wisdom fertilizer
- Speedhack (4x slower), lets you slow down the game (with hotkeys)
- Speedhack (5x faster), lets you speed up the game (with hotkeys)

Update (2.0)
- Infinite coins bug fix

Update (3.0)
- Added a second one hit kill script, this one works when you are in other levels like bowling or whack a zombie.
!Remember that you CANNOT enable both one hit kill scripts at the same time!

Update (4.0)
- Fixed display value stuck at 0 when infinite sun script is enabled.

Update (5.0)
- I changed all the existing scripts, they will enable and disable faster now.
- Fixed the display value of the tree of wisdom fertilizer and chocolate.
- Added speedhack, now you can speed up and slow down the game with hotkeys (thanks to STN)

Update (6.0)
- Added the hit anywhere feature
- Added slow bullets
- Added unhittable zombies
- Added high gravity bullets
- Plants shoot backwards when enabled
- Added a freeze bullets option

Update (7.0)
- Invincible plants update (This will also work in the zombotany minigame now)
- Added No zombies
- Added inf lawnmowers
- Added hungry Chompers
- Reduced the CT file size

Update (8.0) Final:
- Added Auto Collect Sun and Coins (finally found this cheat, it took me a long time)
- Added Instant Activate Potato Mine
- Added Disable Cooldown for Cob Cannon
- Added Disable/Heal Ground Damage
- Added Disable Magnet-shroom Cooldown
- Added Plants Don't get more Expensive in Endless Mode
- Fixed the One Hit Kill all Zombies script. It's just one script that works for the normal levels and for the walnut bowling levels now.

Note:
When you want to use the no zombies script in the Dr.Zomboss revenge minigame, you have to wait until the first zombie is dropped and then enable the sript. Otherwise the game will crash.

Have fun :D .
All feedback is welcome! :)
Pm me for other cheat requests.

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Sat Sep 14, 2019 7:16 pm
by TheInsaneHacker
I've fixed the infintie coins bug :D.
Please let me know if you've noticed any bugs

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Mon Sep 16, 2019 3:56 am
by ZoanChrome
TheInsaneHacker wrote:
Tue Sep 03, 2019 11:45 am
Here is my Plants vs zombies mod.
If you have any requests for other games, let me know in the comments.

Options:

-Instant recharge
-Infinite sun
-Invincible plants
-Instant kill all zombies
-Place anywhere
-Infinite coins
-Infinite tree of wisdom fertilizer
- Infinite chocolate

Update (2.0)
- Deleted the hotkeys (annoying)
- Infinite coins bug fix

Have fun :D .
so uh, Instant kill all zombies is basically one hit kill (to zombie) or the zombies die after enabled?
also in Walnut Bowling, Conehead and Buckethead zombie won't be damaged when Instant kill all zombies enabled
will update while playing campaign (again)
Thanks for the table

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Mon Sep 16, 2019 4:35 am
by Cheater69
Wow... I love that Place Anywhere feature. I can spam one square of grass with limitless plants. :)
Thank you very much. It works amazing. :D

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Mon Sep 16, 2019 3:37 pm
by TheInsaneHacker
Fixed the one hit kill zombies when bowling bug :D.

Let me know when you run into some bugs/glitches.

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Tue Sep 17, 2019 1:53 am
by ZoanChrome
TheInsaneHacker wrote:
Mon Sep 16, 2019 3:37 pm
Fixed the one hit kill zombies when bowling bug :D.

Let me know when you run into some bugs/glitches.
I think it will work with adventure Wall-nut bowling, i haven't tested it yet
It doesn't work for mini game Wall-nut bowling, both one hit kill options make conehead and buckethead zombies still invincible,
unlike the version 2.0 instant kill all zombies, the options still activated even after disabled, need restart stage to disable the effect

oh, and a little extra, here's some simple speedhack scripts, because alt+tab to cheat engine to set speedhack is troublesome for lazy me (credits: STN)
Fast Forward (hotkeys Mouse Button 4)

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>109</ID>
      <Description>"Speedhack (Fast Speed)"</Description>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat

luacall(speedhack_setSpeed(2)) //Fast Speed

[DISABLE]
//code from here till the end of the code will be used to disable the cheat

luacall(speedhack_setSpeed(1)) //Normal Speed
</AssemblerScript>
      <Hotkeys>
        <Hotkey>
          <Action>Toggle Activation</Action>
          <Keys>
            <Key>5</Key>
          </Keys>
          <ID>0</ID>
          <ActivateSound>Activate</ActivateSound>
          <DeactivateSound>Deactivate</DeactivateSound>
        </Hotkey>
      </Hotkeys>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
Slow Speed (hotkeys Mouse Button 5)

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<CheatTable>
  <CheatEntries>
    <CheatEntry>
      <ID>110</ID>
      <Description>"Speedhack (Slow Speed)"</Description>
      <LastState/>
      <VariableType>Auto Assembler Script</VariableType>
      <AssemblerScript>[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat

luacall(speedhack_setSpeed(0.3)) //Slow Speed

[DISABLE]
//code from here till the end of the code will be used to disable the cheat

luacall(speedhack_setSpeed(1)) //Normal Speed
</AssemblerScript>
      <Hotkeys>
        <Hotkey>
          <Action>Toggle Activation</Action>
          <Keys>
            <Key>6</Key>
          </Keys>
          <ID>0</ID>
          <ActivateSound>Activate</ActivateSound>
          <DeactivateSound>Deactivate</DeactivateSound>
        </Hotkey>
      </Hotkeys>
    </CheatEntry>
  </CheatEntries>
</CheatTable>
I use it mainly to have more time placing plants before stage start (planting marigolds and gold magnets to gain coins while playing), and fast forward the stage

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Tue Sep 17, 2019 10:35 am
by TheInsaneHacker
Oh, The one hit kill feature does work for me. I don't know why you have troubles with it, but thanks for the speedhack script.

Just remember that you can enable 1 one hit kill script at a time.

Thanks for the support everyone!

Re: Plants vs zombies (GOTY) +8 BY TheInsaneHacker

Posted: Sat Sep 28, 2019 1:44 pm
by TheInsaneHacker
Update 5.0 is out!

Re: Plants vs zombies (GOTY) +10 BY TheInsaneHacker

Posted: Sun Oct 13, 2019 6:57 pm
by TheInsaneHacker
First of all, thanks for the support everyone, I really appreciate it.

I think I have fixed everything now, but if you still have found some bugs, glitches or if you have any suggestions for more options, please let me know. :)

Re: Plants vs zombies (GOTY) +10 BY TheInsaneHacker

Posted: Sun Oct 13, 2019 7:06 pm
by Cheater69
How about a Hit Anywhere code too? :)

Re: Plants vs zombies (GOTY) +16 BY TheInsaneHacker

Posted: Thu Oct 17, 2019 12:33 pm
by TheInsaneHacker
There you go Hit anywhere with some other features. I hope you like it. :D :)

Re: Plants vs Zombies (GOTY) [+19] BY TheInsaneHacker

Posted: Tue Nov 19, 2019 6:36 pm
by TheInsaneHacker
Update 7.0! Hope you like it. :D

Re: Plants vs Zombies (GOTY) [+19] BY TheInsaneHacker

Posted: Mon Feb 24, 2020 4:23 pm
by TheInsaneHacker
Released Update 8.0 in the first post. I have Added some features and fix the one hit kill zombies script. (see Update (8.0))
I know the "auto-collect" cheat already exist on this forum, but I was really happy that I found it (it took me a lot of time).

This will be my last update for this game. :D

Plants vs Zombies (GOTY) [+25] BY TheInsaneHacker

Posted: Wed May 20, 2020 10:53 am
by ruiyao369
thanks for your updating!!!!

Plants vs Zombies (GOTY) [+25] BY TheInsaneHacker

Posted: Wed May 20, 2020 12:59 pm
by Kurei
Thanks for updating. Really appreciate it. Hope they release PvZ 2 in steam too =(