|
You last visited: Today at 07:38
Advertisement
FIFA 17 - Career mode Trainer
Discussion on FIFA 17 - Career mode Trainer within the Fifa forum part of the Popular Games category.
04/18/2017, 19:51
|
#76
|
elite*gold: 70
Join Date: Aug 2011
Posts: 553
Received Thanks: 800
|
UPDATE - 18.04.2017
New lua script: "  "
Player training:
- "More efficient training" fixed.
- Added "Remove countdown"
DOWNLOAD:
Code:
https://mega.nz/#!YUshRKZT!Kd4x5JxD2zAGKDc8aTxYwF7FZSYd12TiPzTvkPNHKSk
Quote:
Originally Posted by carizma_009
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
|
#77
|
elite*gold: 0
Join Date: Mar 2017
Posts: 6
Received Thanks: 1
|
Quote:
Originally Posted by pawelek212
UPDATE - 18.04.2017
New lua script: "  "
|
Pawelek, can I copy a player's stats. I mean, a Player's Traits, Weak foot & Skill Moves etc...?
|
|
|
04/19/2017, 17:37
|
#78
|
elite*gold: 70
Join Date: Aug 2011
Posts: 553
Received Thanks: 800
|
Nope, only common stats atm. Sprint speed, Acceleration, Agility, Shot power, etc etc.
|
|
|
04/20/2017, 09:30
|
#79
|
elite*gold: 0
Join Date: Apr 2017
Posts: 2
Received Thanks: 0
|
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
|
#80
|
elite*gold: 70
Join Date: Aug 2011
Posts: 553
Received Thanks: 800
|
Quote:
Originally Posted by FifaUser1998
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
|
#81
|
elite*gold: 0
Join Date: Apr 2017
Posts: 2
Received Thanks: 0
|
Thanks for the advice and the fast reply.
I love your work
|
|
|
04/20/2017, 14:43
|
#82
|
elite*gold: 0
Join Date: Apr 2017
Posts: 3
Received Thanks: 0
|
Anyone know a way i can unlock edit player without having to access the internet ?
|
|
|
04/21/2017, 17:45
|
#83
|
elite*gold: 0
Join Date: Nov 2010
Posts: 12
Received Thanks: 0
|
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
|
#84
|
elite*gold: 70
Join Date: Aug 2011
Posts: 553
Received Thanks: 800
|
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
|
#85
|
elite*gold: 0
Join Date: Feb 2013
Posts: 3
Received Thanks: 0
|
hello thanks for this  .. is there a chance to edit the player contract details ?
|
|
|
04/22/2017, 22:30
|
#86
|
elite*gold: 0
Join Date: Apr 2017
Posts: 1
Received Thanks: 0
|
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
|
#87
|
elite*gold: 0
Join Date: May 2015
Posts: 18
Received Thanks: 1
|
What a fantastic job you did mate. Cheers from Brazil
|
|
|
04/24/2017, 00:15
|
#88
|
elite*gold: 0
Join Date: Apr 2017
Posts: 1
Received Thanks: 0
|
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
|
#89
|
elite*gold: 0
Join Date: Mar 2017
Posts: 6
Received Thanks: 0
|
Thank you again, how do I change the value of transfers.ini?
Amazing job
|
|
|
04/27/2017, 23:46
|
#90
|
elite*gold: 70
Join Date: Aug 2011
Posts: 553
Received Thanks: 800
|
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
|
|
|
All times are GMT +1. The time now is 07:39.
|
|