Page 5 of 20

Re: FIFA 17 - Career mode Table

Posted: Sun Apr 30, 2017 4:24 pm
by Aranaktu
iShorty wrote:
Sun Apr 30, 2017 3:04 pm
Can you post stadiums' ID too? :D

[Link]

Re: FIFA 17 - Career mode Table

Posted: Mon May 01, 2017 4:18 pm
by toilai48
Does anyone have a list of IDs for celebrations, fk styles, etc. ?
There was one in the old CE topic but has since been removed.

Re: FIFA 17 - Career mode Table

Posted: Tue May 02, 2017 9:49 am
by Aranaktu
hidexiii wrote: I found some information about your cheat table we can edit free kick style and penalty style, running celebra and finishing celebra. I tested and it's work you should try. you can see description in my attachment picture.
you can change like that:
free kick styles
0 Default
1 Far from ball (Roberto carlos) must be
2 90 degrees (beckham) must be
3 Hand high on hips (pirlo) must be
4 Hand low on hips (messi and must be cahalnoglu)
5 Straight run (lampard)
6 Slow buildup (Suarez and must be Pjanic)
7 Deep breath (ronaldo)
8 Technique (Juninho pernambucano)
9 Samba (Ronaldinho)
10 Wide stance (bale)
Penalty kick style:
1 Default
3 Stand tall
4 Deep breath (ronaldo)
5 Hand on hips, head down
6 Wide stance
7 Medium stance
8 Staggered stance
9 Wide stance, arm down
10 Relaxed

Re: FIFA 17 - Career mode Table

Posted: Wed May 03, 2017 5:16 pm
by geege132
Amazing work with this table!

I got two questions tho

In Unknownvalues; what does the 62 option do? I know its unknown, but maybe you might have an idea

Will there be an option to choose captain in the future, this would come in handly when playing Player Carreer Mode.

Thanks

Re: FIFA 17 - Career mode Table

Posted: Wed May 03, 2017 6:50 pm
by Aranaktu
Image

UPDATE - 03.05.2017
- Player Edit is now unlocked for everyone
- Now you can edit player stats via ingame player editor

Download:

Code: Select all

https://mega.nz/#!MB91UB4Z!ybXqtImBH_SYipUd5uS3nXdwmwFwh-lsa216V2HGfJk
geege132 wrote:
Wed May 03, 2017 5:16 pm
Amazing work with this table!

I got two questions tho

In Unknownvalues; what does the 62 option do? I know its unknown, but maybe you might have an idea

Will there be an option to choose captain in the future, this would come in handly when playing Player Carreer Mode.

Thanks
I have no idea what '62' is. I'm too lazy to compare values from FIFA database with that. :P
I'll add 'choose captain' to my long TODO list.

Re: FIFA 17 - Career mode Table

Posted: Wed May 03, 2017 8:57 pm
by geege132
Great!

Re: FIFA 17 - Career mode Table

Posted: Thu May 04, 2017 4:24 am
by iShorty
Newest version has bug Aranktu.
When you go to your formation then back, the main menu dissapeared and u only can save then exit.
Can you check and also where can i download all the older version?
Image

Re: FIFA 17 - Career mode Table

Posted: Thu May 04, 2017 11:20 am
by Aranaktu
UPDATE - 04.05.2017
- Hotfix ([Link]).

Code: Select all

https://mega.nz/#!MB91UB4Z!ybXqtImBH_SYipUd5uS3nXdwmwFwh-lsa216V2HGfJk
iShorty wrote:
Thu May 04, 2017 4:24 am
Can you check and also where can i download all the older version?
[Link]

Re: FIFA 17 - Career mode Table

Posted: Thu May 04, 2017 12:03 pm
by Simonetos
Hello my friend Aranaktu and congratulations for your excellent work!!! I have a question... How can I save all my choices in Cheat Engine so don't have to set them everytime again and again? Thank you for your time!!!

Re: FIFA 17 - Career mode Table

Posted: Thu May 04, 2017 3:17 pm
by Aranaktu
Simonetos wrote:
Thu May 04, 2017 12:03 pm
Hello my friend Aranaktu and congratulations for your excellent work!!! I have a question... How can I save all my choices in Cheat Engine so don't have to set them everytime again and again? Thank you for your time!!!
With .lua script.

Code: Select all

getAddressList().getMemoryRecordByDescription("x").Active=true
Where "x" is script name.

In Cheat Engine main window click on "Table" -> "Show cheat table lua script" or press "CTRL + ALT + L" -> Copy and paste this lua script (This is my lua script to activate Training everyday, 5 star skill moves etc.):

Code: Select all

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("In-Game Hacks").Active=true
    getAddressList().getMemoryRecordByDescription("Home - 5 stars skill moves").Active=true
    getAddressList().getMemoryRecordByDescription("Away - 5 stars skill moves").Active=true
    getAddressList().getMemoryRecordByDescription("transfer.ini").Active=true
end


AutoAttachTimer = createTimer(nil)
timer_onTimer(AutoAttachTimer, AutoAttach)
timer_setInterval(AutoAttachTimer, 1000)
timer_setEnabled(AutoAttachTimer, true)
-> Press "Execute script" button -> save cheat table.
And now when you will open the table it will ask you something like "this table contains lua script, do you want to execute it?" and just press "yes" or "yes to all" and you should be auto attached to the game process with activated scripts.

Re: FIFA 17 - Career mode Table

Posted: Fri May 05, 2017 3:08 pm
by josegp17
Aranaktu wrote:
Thu May 04, 2017 11:20 am
UPDATE - 04.05.2017
- Hotfix ([Link]).

Code: Select all

https://mega.nz/#!MB91UB4Z!ybXqtImBH_SYipUd5uS3nXdwmwFwh-lsa216V2HGfJk
iShorty wrote:
Thu May 04, 2017 4:24 am
Can you check and also where can i download all the older version?
[Link]
Send a message to inbox New CE table add JobOffers & TransfersTranfer.ini

Re: FIFA 17 - Career mode Table

Posted: Sat May 06, 2017 2:45 pm
by iShorty
Sorry if its out of topic. But what more we can do with table? i mean, more versions will come right?

Re: FIFA 17 - Career mode Table

Posted: Mon May 08, 2017 12:47 pm
by Voron
The last table works strange.
The Cheat Engine always lags when I activate it, for some reasons open "In-Game Hacks" section..
It seems that "Transfer Window" section stopped working - transfers don't happen at all!
After I made several saves it somehow activated one of the options of "Youth Players" section.
Does anyone has such problems?

Re: FIFA 17 - Career mode Table

Posted: Mon May 08, 2017 9:28 pm
by Aranaktu
Voron wrote:
Mon May 08, 2017 12:47 pm
The last table works strange.
The Cheat Engine always lags when I activate it, for some reasons open "In-Game Hacks" section..
It seems that "Transfer Window" section stopped working - transfers don't happen at all!
After I made several saves it somehow activated one of the options of "Youth Players" section.
Does anyone has such problems?
ohh.. I forgot to remove my lua script for auto activating things in table before I released it. I'll fix it tomorrow.
Meanwhile you can open table -> Press "CTRL + ALT + L" to edit lua script. -> replace:

Code: Select all

local UseAutoActivator = true
to:

Code: Select all

local UseAutoActivator = false
And save table. It should not activate anything anymore.

Re: FIFA 17 - Career mode Table

Posted: Wed May 10, 2017 4:58 pm
by DeanV255
Just a heads up that FIFA17 has updated and it appears to cause the game to crash when the table is activated. If you have the time to update the table that would be greatly appreciated thank you :)