Well, I used a CSF editor that messed up the Tactical Overview and tooltips, so I switched to the XCC Mixer. It does many things that are helpful in modding. As far as making a tooltip........
Under the commandset.ini you will have something that looks like this-
CommandSet AmericaDozerCommandSet
1 = Command_ConstructAmericaPowerPlant
2 = Command_ConstructAmericaStrategyCenter
3 = Command_ConstructAmericaBarracks
4 = Command_ConstructAmericaSupplyDropZone
5 = Command_ConstructAmericaSupplyCenter
6 = Command_ConstructAmericaParticleCannonUplink
7 = Command_ConstructAmericaPatriotBattery
8 = Command_ConstructAmericaCommandCenter
9 = Command_ConstructAmericaFireBase
11 = Command_ConstructAmericaWarFactory
13 = Command_ConstructAmericaAirfield
14 = Command_DisarmMinesAtPosition
End
The Command_ConstructAmericaPowerPlant line points to the commandbutton.ini
Under the commandbutton.ini, there is a piece of code headed "CommandButton Command_ConstructAmericaPowerPlant" The code looks like this-
CommandButton Command_ConstructAmericaPowerPlant
Command = DOZER_CONSTRUCT
Object = AmericaPowerPlant
TextLabel = CONTROLBAR:ConstructAmericaPowerPlant
ButtonImage = SAPowerPlant
ButtonBorderType = BUILD ; Identifier for the User as to what kind of button this is
DescriptLabel = CONTROLBAR:ToolTipUSABuildPowerPlant
End
The descript label and text label refer to the CSF file.
In the string table editor (CSF editor) on the left are selections. To edit the descript label for CONTROLBAR:ToolTipUSABuildPowerPlant, you must go under CONTROLBAR (location stated at beginning of label) Find the CONTROLBAR:ToolTipUSABuildPowerPlant descript label and click on it and click edit. There you will be able to edit what the tooltip says.
|