View Full Version : A method to mod unit stats? Or mod out units?
Nahirean
05-21-2005, 07:09 PM
Hello,
Is there any way at all to modify unit stats? Damage, range etc?
Also is there any way at all to completely remove units from being purchased, like let's say I wanted to totally remove calvary from the game?
Nahirean
05-21-2005, 07:25 PM
Well, I am taking it upon myself.
I got the .pak file open and found A VOLUME of text files and scripts. Trouble is I do not understand spanish, but from what I can tell EVERYTHING is configurable. This is good, I am using a translator right now, but hopefully I will locate the file that has the unit statistics, and hopefully mod them to slow down battles and/or make them more interesting.
curtlegion
05-21-2005, 07:30 PM
what did you use to do this? thanks. :) :) :) :)
Nahirean
05-21-2005, 07:44 PM
what did you use to do this? thanks. :) :) :) :)
pak files are actually zip files. Winzip, Winrar, etc. I am having a lot of trouble finding the file I need.
Nahirean
05-21-2005, 07:50 PM
I am beginning to worry. I mean if everything under the sun ASIDE from unit stats is configurable, that's the most retarded way to build a game I've seen in a long time.
curtlegion
05-21-2005, 08:18 PM
pyro always is a little tuff at first spanish........ :confused: :confused: :confused:
Nahirean
05-21-2005, 08:25 PM
Does anyone have any input here? I have been pouring through these files, and I would like to know if I am wasting my time. I have found configuration files for everything from AI behavior, to animations, to difficulty settings, but NO unit data? Come on!
Nahirean
05-21-2005, 08:27 PM
I've found a file called Defgrafos.def which means "Graphs" but the file is not in a normal text format, so I have no idea what this stuff is.
Nahirean
05-21-2005, 09:27 PM
Well, I give up. I found a way to configure the attributes for Naval ships, but nothing for units.. wish someone that knew something about modding would chime in here, but folks seem more content to view my thread and laugh at my struggle.
:mad:
Berdan
05-21-2005, 10:34 PM
Well, I give up. I found a way to configure the attributes for Naval ships, but nothing for units.. wish someone that knew something about modding would chime in here, but folks seem more content to view my thread and laugh at my struggle.
:mad:
welcome to my world :cool:
Nahirean
05-21-2005, 11:58 PM
welcome to my world :cool:
So you're saying there's no way to do this?
warobserver
05-22-2005, 02:18 AM
So you're saying there's no way to do this?
the units configuration of sizes, shot range, move-speed ect is somewhere in the game directory, i don't know yet cuz i can get it right now though. But those data files must exist. i would like to join the modification u want. but i can't tell anything right now sorry dude. Good Luck. :)
wolfetone
05-22-2005, 06:31 AM
the units configuration of sizes, shot range, move-speed ect is somewhere in the game directory, i don't know yet cuz i can get it right now though. But those data files must exist. i would like to join the modification u want. but i can't tell anything right now sorry dude. Good Luck. :)
If you look up some of the mod suggestions for Praetorians (in re: to the meaning of the .pak files (being in Spanish and all) it shoudl be very similar to this game. :)
Sir Crow
05-22-2005, 08:37 AM
Is their a way of removing the icons beneath the selected units feet? In RTW they were called the 'marker arrows' and you just had to edit the text file saying 'false'. Is it that easy with IG?
Nahirean
05-22-2005, 09:39 AM
Is their a way of removing the icons beneath the selected units feet? In RTW they were called the 'marker arrows' and you just had to edit the text file saying 'false'. Is it that easy with IG?
Yes there is. I want to find unit stats. And I dont think it's as simple as the above poster made it out to be. I vigorously searched through these files. I looked at EVERY SINGLE text file, and there is no such file.
Akkra
05-22-2005, 08:38 PM
Nahirean, dont despair, many people would gladly thank you if you found a way to mod unit sizes and unit statistics, not the least of which would be yours truly.
I don't know anything about modding and i dont speak spanish, so i don't think i'd be of any help, but if you/berdan/someone else comes out with a way to do this then i'll buy you a round of drinks and a hooker!
anyway, good luck
Nahirean
05-22-2005, 09:00 PM
I think the answer is within one of those files that cannot be opened with a text editor. Since a dev is here, it'd be nice to get a real answer from a dev.
AOD-Bradford
05-23-2005, 10:07 AM
Hmmm... there is nothing actually stopping you accessing either the dynamic link libraries or the *.sb files
The *.sb files are used by the programers to 'lock' the files to the directories.
This is because the files themselves are called by a sub-routine that assigns data from an array at various points into the text it calls.
Or, the text returned from the file might be the result of, for example, a
fn(x)=INT(RND*8) command
where the value of x is for example, the name of the heir of your country. As is actually the case in the following *.sb file :-
"TextHerederos.sb"
(Found in the sub-directory "texto\english\management" inside the text.pak file)
As long as you edit only the text part and do not disturb the format, you are safe to play around here. Be warned though, miss even a 'period' at the start of a line and the game will crash as soon as a routine in the program tries to access it.
You MUST NOT change the Hex addresses contained in the files. :eek:
You can open these files with Wordpad (R) TM, or any similar program.
When Windows tells you it cannot recognize the file extension type, tell it you want to open it (Choose from list,) select Wordpad, and hey presto.
When you close the file DON'T save it first, just clik on the exit button and when Windows asks if you want to save changes, clik "Yes."
Regards as always,
:cool:
AOD-Bradford
AOD-Bradford
05-23-2005, 10:37 AM
I've found a file called Defgrafos.def which means "Graphs" but the file is not in a normal text format, so I have no idea what this stuff is.
These are not text files.
Go to this site for a full definition of file extensions.
FILE EXTENSIONS (http://filext.com/)
Regards as always,
:cool:
AOD-Bradford
Nahirean
05-23-2005, 12:27 PM
Hmmm... there is nothing actually stopping you accessing either the dynamic link libraries or the *.sb files
The *.sb files are used by the programers to 'lock' the files to the directories.
This is because the files themselves are called by a sub-routine that assigns data from an array at various points into the text it calls.
Or, the text returned from the file might be the result of, for example, a
fn(x)=INT(RND*8) command
where the value of x is for example, the name of the heir of your country. As is actually the case in the following *.sb file :-
"TextHerederos.sb"
(Found in the sub-directory "texto\english\management" inside the text.pak file)
As long as you edit only the text part and do not disturb the format, you are safe to play around here. Be warned though, miss even a 'period' at the start of a line and the game will crash as soon as a routine in the program tries to access it.
You MUST NOT change the Hex addresses contained in the files. :eek:
You can open these files with Wordpad (R) TM, or any similar program.
When Windows tells you it cannot recognize the file extension type, tell it you want to open it (Choose from list,) select Wordpad, and hey presto.
When you close the file DON'T save it first, just clik on the exit button and when Windows asks if you want to save changes, clik "Yes."
Regards as always,
:cool:
AOD-Bradford
I know this, but there is no .sb file that has unit stats that I can find.
lashernyc1
05-26-2005, 04:35 PM
In Games\GameMode\ModeloCombates.dt
The .sb file only refers to the .DT file. As for the DT file, it's gibberish when you open it up with notepad.
.DT is a Mac extension, or so brief research online is telling me, and the format doesnt appear to be exportable so far...heeelp!!
Nahirean
05-26-2005, 06:26 PM
In Games\GameMode\ModeloCombates.dt
The .sb file only refers to the .DT file. As for the DT file, it's gibberish when you open it up with notepad.
.DT is a Mac extension, or so brief research online is telling me, and the format doesnt appear to be exportable so far...heeelp!!
That's what I though too, we need to figure out how to check this file
Nahirean
05-26-2005, 06:32 PM
That's what I though too, we need to figure out how to check this file
Well I even opened it in a hex editor, and I still cannot make heads or tails with the .dt file..
Element-UK
05-28-2005, 02:27 AM
All games these days should be written in the Universal language English lol. Rule Brittania !
Nahirean
07-07-2005, 05:28 PM
Well I even opened it in a hex editor, and I still cannot make heads or tails with the .dt file..
Bump.
Come on guys, it's been a month. Why can't I get a response from the devs about this? Do you even give a crap about your customers? Just tell me how the freaking unit data file can be opened, and I'll personally code an application to do it!
elbasto
07-10-2005, 09:39 AM
Have you tried sending a message to one of the Administrators?
Nahirean
07-10-2005, 10:18 AM
Have you tried sending a message to one of the Administrators?
Yes. They just ignore me, make promises they never keep, and flat out LIE about "Not receiving" my PMs.
The moderators on this board don't deserve their positions. They should be removed. They don't have any concern for the community whatsoever.
Phillippe
07-10-2005, 02:03 PM
Calm down, they can still ban you, and we've not really got a good User-Forum going of similar size, yet.
[working on it]
Nahirean
07-10-2005, 03:01 PM
Calm down, they can still ban you, and we've not really got a good User-Forum going of similar size, yet.
[working on it]
If they ban me, so be it. I've broken no rules, I've only told the truth of it as I understand it to be. I want this game to be what they advertised, and that can only occur through modification.
leomasci
08-13-2006, 03:22 AM
hey guys, i've just discovered how to open that ****** .dt file... look at tafn fan sites, under imperial glory downloads there should be "dtedit"... the name says all!
vBulletin® v3.8.7, Copyright ©2000-2013, vBulletin Solutions, Inc.