FIFA 17 - Career mode Trainer

04/18/2017 19:51 Aranaktu#76
UPDATE - 18.04.2017
New lua script: "[Only registered and activated users can see links. Click Here To Register...]"
Player training:
- "More efficient training" fixed.
- Added "Remove countdown"

DOWNLOAD:
Code:
https://mega.nz/#!YUshRKZT!Kd4x5JxD2zAGKDc8aTxYwF7FZSYd12TiPzTvkPNHKSk
Quote:
Originally Posted by carizma_009 View Post
Thank you pawelek212.

Bypass 15 Year Career Mode Limit? (2031 retiring)

Is there a way to do this this year? As far as I know it wasn't possible in FIFA 17.
Idk, it might be possible, but it's not easy for sure.
04/19/2017 16:37 RAJ DM#77
Quote:
Originally Posted by pawelek212 View Post
UPDATE - 18.04.2017
New lua script: "[Only registered and activated users can see links. Click Here To Register...]"
Pawelek, can I copy a player's stats. I mean, a Player's Traits, Weak foot & Skill Moves etc...?
04/19/2017 17:37 Aranaktu#78
Nope, only common stats atm. Sprint speed, Acceleration, Agility, Shot power, etc etc.
04/20/2017 09:30 FifaUser1998#79
I have a question:

Could you tell me how I can modify the "More efficient training" script so the training is even more efficient.

By the way I love the cheat table you made.
04/20/2017 11:12 Aranaktu#80
Quote:
Originally Posted by FifaUser1998 View Post
Could you tell me how I can modify the "More efficient training" script so the training is even more efficient.
You need to increase ATTRIBUTE_GROWTH_CAP:
Code:
  mov [attr_cap], #300 // ATTRIBUTE_GROWTH_CAP
And probably you need also to increase modifiers:
Code:
  
mov [rbx+rax*4+00000344],(float)10.0
mov [rbx+rax*4+00000358],(float)10.0
mov [rbx+rax*4+00000368],(float)10.0
04/20/2017 13:24 FifaUser1998#81
Thanks for the advice and the fast reply.

I love your work
04/20/2017 14:43 flxtcha#82
Anyone know a way i can unlock edit player without having to access the internet ?
04/21/2017 17:45 danip01#83
UPDATE - 16.04.2017
Added lua code for auto attaching to the game process and auto activating your favourite scripts.


can someone explain how to do this ?
so id ont have to activate all the scripts every time i start to play
04/21/2017 19:46 Aranaktu#84
Here is mine script, you should understand the pattern.
Code:
function AutoAttach()
	local ProcessName = "FIFA17.exe"
	local ProcessName_Trial = "FIFA17_TRIAL.exe"
	local UseAutoActivator = true

	local ProcIDNormal = getProcessIDFromProcessName(ProcessName)
	local ProcIDTrial = getProcessIDFromProcessName(ProcessName_Trial)

	if ProcIDNormal ~= nil then
		openProcess(ProcessName)
		timer_setEnabled(AutoAttachTimer, false)
		AutoActivator(UseAutoActivator)
	elseif ProcIDTrial ~= nil then
		openProcess(ProcessName_Trial)
		timer_setEnabled(AutoAttachTimer, false)
		AutoActivator(UseAutoActivator)
	end
end

function AutoActivator(UseAutoActivator)
	if UseAutoActivator ~= true then
		return
	end
    getAddressList().getMemoryRecordByDescription("ActivateItFirst").Active=true
    getAddressList().getMemoryRecordByDescription("Training sim - A").Active=true
    getAddressList().getMemoryRecordByDescription("Training Everyday").Active=true
    getAddressList().getMemoryRecordByDescription("Reveal player data").Active=true
    getAddressList().getMemoryRecordByDescription("SCOUT_REPORT_PLAYERS = 15").Active=true
    getAddressList().getMemoryRecordByDescription("Only 16yo players").Active=true
    getAddressList().getMemoryRecordByDescription("Reveal ovr and pot").Active=true
    getAddressList().getMemoryRecordByDescription("PRIMARY_ATTRIBUTES_RANGE = [10, 20]").Active=true
    getAddressList().getMemoryRecordByDescription("SECONDARY_ATTRIBUTES_RANGE = [10, 20]").Active=true
    getAddressList().getMemoryRecordByDescription("Disable Morale").Active=true
    getAddressList().getMemoryRecordByDescription("5 star skill moves on all players").Active=true
end


AutoAttachTimer = createTimer(nil)
timer_onTimer(AutoAttachTimer, AutoAttach)
timer_setInterval(AutoAttachTimer, 1000)
timer_setEnabled(AutoAttachTimer, true)
04/22/2017 08:56 thom124#85
hello thanks for this :) .. is there a chance to edit the player contract details ?
04/22/2017 22:30 Chief_Stealth#86
Hey :-D How Can I Edit the transfers.ini i find no way to save it in Cheat Engine. Everytime the change reset himself.
04/23/2017 17:50 markfaviere#87
What a fantastic job you did mate. Cheers from Brazil ;)
04/24/2017 00:15 Hoegsberg22#88
Thanks for all the cool stuff you do :)

Would it be possible to make a Trainer, so that you also can edit your team - like changing its name and stuff
Thanks in advance :)
04/24/2017 19:28 TheFriki#89
Thank you again, how do I change the value of transfers.ini?
Amazing job
04/27/2017 23:46 Aranaktu#90
UPDATE - 27.04.2017
Added more 'In-Game Hacks':
- Freezing/Reseting Match timer + End current match half
- Pointer for home and away team score
- Home/Away team Always Tired
- Home/Away team Never Tired
- Home/Away team Injured
- Home/Away team Never Injured (Didn't tested)

DOWNLOAD:
Code:
https://mega.nz/#!QAM21QKT!Y6u1ApdjibkjaAMOm3UvCdFNZi0szvS11dCpYNsaIac