Page 12 of 18

Re: Football Manager 2022 | Steam 22.4.0

Posted: Thu Jul 07, 2022 5:17 pm
by epitqvist
tdg6661 wrote:
Thu Jul 07, 2022 2:41 pm
epitqvist wrote:
Thu Jul 07, 2022 1:40 pm
tdg6661 wrote:
Thu Jul 07, 2022 3:15 am
Because increasing attributes of any person requires increasing his CA too. So after editing, you may check Calculate RCA on Player Presets then edit the Player CA according to calculation.

Or you Freeze his Attributes by
Select Person -> Presets -> General --> Freeze Attributes
But, the player also will not develop.
I noticed that players stats drop after a few matches even when I pressed "freeze attributes" can I know why?
Check Print List -> Players w/ Freeze Attributes. Check if player is in the list or not.
It shows me that 0 players have frozen attributes even though I select a player and click on the freeze option

Re: Football Manager 2022 | Steam 22.4.0

Posted: Thu Jul 07, 2022 5:48 pm
by tdg6661
epitqvist wrote:
Thu Jul 07, 2022 5:17 pm
It shows me that 0 players have frozen attributes even though I select a player and click on the freeze option
I'm so sorry.
Forgot to turn that on.
Please open Freeze Attributes script,
Then replace line 5 with this:

Code: Select all

freezePersonAttributes(true)
Set false if you want to remove it from player.

Re: Football Manager 2022 | Steam 22.4.0

Posted: Thu Jul 07, 2022 8:21 pm
by BlaxHousefly
Howdy, just wanted to ask, is it possible to edit features like remove all unhappiness or destroy team? Been searching for numbers, but couldn't find them, so I suppose they are encoded into the lua script.

If I can ask, can you change the number for fitness and sharpness from 10000 to 32000? It turns them into super players. :) If possible for FM21, please.

Re: Football Manager 2022 | Steam 22.4.0

Posted: Fri Jul 08, 2022 1:04 am
by tdg6661
BlaxHousefly wrote:
Thu Jul 07, 2022 8:21 pm
Howdy, just wanted to ask, is it possible to edit features like remove all unhappiness or destroy team? Been searching for numbers, but couldn't find them, so I suppose they are encoded into the lua script.

If I can ask, can you change the number for fitness and sharpness from 10000 to 32000? It turns them into super players. :) If possible for FM21, please.
Just create new lua script record, paste this into that

Code: Select all

{$lua}
if syntaxcheck then return end
[Enable]
function removePlayerInjuries(addr)
	local Person = getAddressSafe(addr)
	if Person == nil or Person == 0 or not isPlayer(Person) then
		Person = readQword(addr)
	end
	if Person == nil or Person == 0 or not isPlayer(Person) then
		Person = readQword('ptrPerson')
	end
	if Person == nil or Person == 0 or not isPlayer(Person) then return end
	
	local Player = getPlayerFromPerson(Person)
	if Player == nil or Player == 0 then return nil end

  writeSmallInteger(Player+0x1F0, math.random(9500,10000))    -- Match Sharpness
  writeSmallInteger(Player+0x1F2, 0)                          -- Fatigue
  writeSmallInteger(Player+0x1F4, math.random(9500,10000)) 		-- Overall Physical Condition
  writeByte(Player+0x25B, 20) 																-- Morale
	
	return
end
removePlayerInjuries('ptrPerson')
enableAutoDisable(memrec, nil) -- auto deactivate this
[Disable]

Re: Football Manager 2022 | Steam 22.4.0

Posted: Sat Jul 09, 2022 4:14 am
by Dagdatine
What is the locate attributes box for

Re: Football Manager 2022 | Steam 22.4.0

Posted: Sat Jul 09, 2022 7:01 am
by tdg6661
Dagdatine wrote:
Sat Jul 09, 2022 4:14 am
What is the locate attributes box for
What do you mean?
Can you post a screenshot please?

Re: Football Manager 2022 | Steam 22.4.0

Posted: Sun Jul 10, 2022 12:00 am
by Dagdatine
well when I'm with the pc I'll send you. Another thing, is it possible to multiply or maximize the results of the training so that they improve faster

Re: Football Manager 2022 | Steam 22.4.0

Posted: Sun Jul 10, 2022 11:28 pm
by Dagdatine
tdg6661 wrote:
Sat Jul 09, 2022 7:01 am
Dagdatine wrote:
Sat Jul 09, 2022 4:14 am
What is the locate attributes box for
What do you mean?
Can you post a screenshot please?
Locate Player Attribute Rebalance

Re: Football Manager 2022 | Steam 22.4.0

Posted: Mon Jul 11, 2022 2:45 am
by tdg6661
Dagdatine wrote:
Sun Jul 10, 2022 11:28 pm
tdg6661 wrote:
Sat Jul 09, 2022 7:01 am
Dagdatine wrote:
Sat Jul 09, 2022 4:14 am
What is the locate attributes box for
What do you mean?
Can you post a screenshot please?
Locate Player Attribute Rebalance
This script was made by tfigment, I think this will
look player's training progress every month and do something about it. I'm not really sure, you can ask him instead.

Re: Football Manager 2022 | Steam 22.4.0

Posted: Wed Jul 13, 2022 2:19 am
by Dagdatine
performance always be 10 on each player

Re: Football Manager 2022 | Steam 22.4.0

Posted: Wed Jul 13, 2022 2:20 am
by Dagdatine
you can make training performance always be 10 for each player

Re: Football Manager 2022 | Steam 22.4.0

Posted: Mon Jul 18, 2022 11:34 pm
by who55yes
Hello, I followed your tutorial and everything seems to be working for the Gamepass version except height and weight, which as far as I've tested just display 0 on their values. Tried to use it on two different systems and had no other problems.

Hopefully someone else can test it and see if it works for them too. Thank you for the tutorial and the original table

Re: Football Manager 2022 | Steam 22.4.0

Posted: Tue Jul 19, 2022 5:48 pm
by Dagdatine
Hola te pregunto, ese mod chino que subiste en los comentarios anteriores tiene la función de que mejoren más rápido los jugadores, es posible implementar esa función en tu cheat, y si es posible poder variar esa velocidad de mejora

Re: Football Manager 2022 | Steam 22.4.0

Posted: Fri Jul 22, 2022 4:11 pm
by zaettics
Is it possible to change the date of when a newly built stadium is finished?

Re: Football Manager 2022 | Steam 22.4.0

Posted: Wed Jul 27, 2022 3:23 pm
by rxhunter
I am trying to make some script for my convenient use, is there any way to search club pointer address by their row/unique ID as parameter using simple lua script?