• 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!

Creating Bump Files

hayman

Club Supporter
Hey fellow forumusers!

I wanted to upload all my fifa13 faces into 14. After converting some of them it was a hell of a job to create all the bump files.

So that's why I created a bat file to do this automaticly.

====================

Update: version 1.1 online 16-12-2013

Now it's really simple to create bump files with BUMPER.

Options:

Delete fifa 13.rx3 files
Rename rx3.14 files into rx3
Manual BUMP (insert player ID)
Automatic BUMP



How does it work?

run the Fifa 14 Bump creator.bat (make sure the head_x_bump is in the same folder).

Put all the files together in the folder where you have your converted rx3 files (and your old fifa 13.rx3 files).

If you want you can delete the old rx3 files with one click.

Choose the "change 14 files into real ones" option, it will change the converted head_1_0.rx3.14 into regular rx3 files.

You can select options manual (enter the id) of automatic. The last one will create bump files for all the RX3 files you converted.

=====================

You can download it from my dropbox: https://www.dropbox.com/s/gmlz29jk14s1tcc/Bumper 1.1.rar

So now it's really simple to create bump files, not just one but loads of them :D

 

hayman

Club Supporter
By the way: is there an option to convert multiple files, instead of using the moddingway converter file by file manual? It would be great if we can convert all files in one folder :D
 

uomomagnetico

Senior Squad
hayman;3596999 said:
By the way: is there an option to convert multiple files, instead of using the moddingway converter file by file manual? It would be great if we can convert all files in one folder :D

yeah it would be great!!
 

hayman

Club Supporter
It's all that's left for the ultimate converter ;) I have no clue on converting and the codex, so for me it's impossible.
 

Danielxz

Reserve Team
thanks man!
I have a small and easy request can you make a bat file that installs faces and deletes the bump file xD
it kinda sucks when we make a new face and want to test ingame and that mustache ruins it, we have to close game delete and restart
 

hayman

Club Supporter
Danielxz;3597126 said:
thanks man!
I have a small and easy request can you make a bat file that installs faces and deletes the bump file xD
it kinda sucks when we make a new face and want to test ingame and that mustache ruins it, we have to close game delete and restart

Open notepad and type the text

Code:
del head_*_bump.rx3

Save it as delete.bat (all types, not txt), the bat file will delete ALL your bump files without notice.

Use the line:
Code:
echo Enter number to delete
set /p nummer=
del head_%nummer%_bump.rx3

This way you can enter a player ID and that BUMP will be deleted.

If you want something else please tell me exacly what your looking for..
 

hayman

Club Supporter
This is the code for the current bumper.bat

Code:
echo off
:begin
echo Select an option:
echo =============
echo -
echo 1) Delete fifa 13.rx3 files 
echo 2) Rename rx3.14 files into rx3
echo 3) Manual BUMP (insert player ID)
echo 4) Automatic BUMP
echo 5) Exit
echo -

set /p op=Type option:
if "%op%"=="1" goto op1
if "%op%"=="2" goto op2
if "%op%"=="3" goto op3
if "%op%"=="4" goto op4
if "%op%"=="5" goto op5

echo Please Pick an option:
goto begin

:op1
echo you picked delete rx3 files
echo press escape to cancel and exit
@pause
del head_*_0.rx3
del head_*_1.rx3
goto begin

:op2
echo you picked Rename files 
REN *.14 *.
@pause
goto begin

:op3
echo you picked Manual
echo Enter player ID
set /p nummer=
copy head_x_bump.rx3 head_%nummer%_bump.rx3
@pause 
cls
goto begin

:op4
echo you picked automatic
for /f "tokens=2 delims=_" %%a in ('dir head_*_*.rx3 /b /a-d ') do copy  "head_x_bump.rx3" "head_%%a_bump.rx3" >nul

echo Files automaticly changed
@pause
goto begin

:op5
echo Exit?
@pause
goto end




:end
 


Top