Adding CEP1 merge content. Updated brownie model. Updated wemic heads & female torso. Updated hobgoblin.
75 lines
2.8 KiB
Plaintext
75 lines
2.8 KiB
Plaintext
Character Skin ReadMe
|
|
|
|
Implementation:
|
|
|
|
1. Import cskin.erf, if you would also like the default skins from pcpackv1, also import skins.erf
|
|
|
|
2. Apply these scripts to the events:
|
|
|
|
cskin_moduleload to the modules OnModuleLoad event.
|
|
cskin_onlevelup to the modules OnPlayerLevelUp event.
|
|
cskin_onenter to the OnEnter event of the area with the module's starting location.
|
|
|
|
Note:
|
|
|
|
Item Level Restrictions should be turned off, otherwise players will end up with hides in their inventory.
|
|
|
|
Configuration:
|
|
|
|
all script configuration is done in the cskin_include file, in the ConfigurePCRaceHides() function.
|
|
|
|
You will regonize this if you have configured the ECL scripts, there are two ways
|
|
|
|
Subrace field - add this line for each race:
|
|
|
|
SetHidesForRaceByString(string sRace,int iReference,string sLevels = "0");
|
|
|
|
where sRace is the subrace you want to add, it is not case sensitive but it is completely unforgiving of spelling errors.
|
|
iReference is the number you want to use in the skin resref, and will replace the value of RACIAL_TYPE_* in the resref descriptiong below.
|
|
sLevels are the levels the race should get news hides at, this is optional, if left blank the race will get the standard hide at all levels, otherwise specify levels delimated with a ':', example: SetHidesForRaceByString("DROW",75,"0:2:4:6:8:10:12:14:16:18") will set up Drow as a subrace to receive hides at even level increments and use the number 75 as the resref reference number.
|
|
|
|
with hak - add this line for each race:
|
|
|
|
SetHidesForRaceByInt(RACIAL_TYPE_*,"0:5:10:15");
|
|
|
|
Where Racial_type_* is the race you're adding and the second parameter is a list of the levels they get a new hide and it is deliminated by a ':'
|
|
|
|
Example:
|
|
|
|
SetHidesForRaceByInt(RACIAL_TYPE_DROW,"0:2:4:6:8:10:12:14:16:18");
|
|
|
|
This will set up the Drow race to get a hide at levels 0,2,4,6,8,10,12,14,16 and 18.
|
|
|
|
the hides:
|
|
|
|
The Hides must have a VERY SPECIFIC RESREF:
|
|
|
|
"skin_#_#"
|
|
|
|
The first pound is the integer value of the RACIAL_TYPE_* the hide matches with, the second # is the level it applies to.
|
|
|
|
"skin_28_0" is the resref for the hide a tiefling gets at level 0.
|
|
|
|
Note: Level 0 hides are defaults for races that do not change abilities on levelup. If a character is between levels, it will look DOWN the list to nearest they should get one and apply that.
|
|
|
|
Merging Files:
|
|
|
|
If any of the events listed above are already in use you will need to merge code into the files already present. The following is code snippets and may require slight changes to work in your particular situation. Generally it is fine to insert the code just before the closing bracet of the main() function.
|
|
|
|
All scripts must #include "cskin_include" before adding this code.
|
|
|
|
OnModuleLoad:
|
|
|
|
ConfigurePCRaceHides();
|
|
|
|
OnPlayerlevelup:
|
|
|
|
ApplyRacialSkin(GetPCLevellingUp());
|
|
|
|
onEnter:
|
|
|
|
object oPC = GetEnteringObject();
|
|
if(GetIsPC(oPC))
|
|
{
|
|
ApplyRacialSkin(oPC);
|
|
} |