• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

Extract FIFA 14.exe Strings

beta990

Reserve Team
regularcat;3569781 said:
i have went through this when you uploaded it originally and it is missing a lot of strings.
You have right, I wrote a different script that can extract more strings, will be published soon.

Thanks. :)
 

beta990

Reserve Team
Hi guys,

If someone is interested how I export the lines in FIFA14.exe:
Code:
<?php
$filename = 'D:\BTSync\Hobby\FIFA 14\Tools\fifa14.exe';

$handle = fopen($filename, "rb");
$contents = fread($handle, filesize($filename));
fclose($handle);

$exp = explode("\x00", $contents);

foreach ($exp as $word) {
	$length = strlen(utf8_decode($word));
	if (strstr($word, 'AVAILABLE')) {
		echo $word."\n";
	}
}
As you can see, pretty simple (and stupid). :P

I'm a PHP-developer, so you need to have the latest PHP-package.

Some tips:
strlen = length > if ($length > 200) don't display, etc.
if (strstr($word, 'ENABLE')) {
I'm using the line above to find words/string, but it can be removed to just echo all the strings without matches.

Let me know if you need more info/help. :)
 

NilmarJunior

Youth Team
hey beta,
i have a problem concerning editing my player's attributes in career mode. with the method below i am able to edit most attributes of my players, except some like potential and skill moves. the reason for that is, that the game doesnt save those two stats, because they are also uneditable in the normal player-editor (where you can change stats ingame). i am just wondering if there is a code in your file that determines whether a specific attribute is being saved or not ;)

this is the METHOD
 


Top