Fixed all content filenames over 16 characters
Fixed all content filenames over 16 characters
This commit is contained in:
@@ -38,7 +38,7 @@ void main()
|
||||
FloatingTextStringOnCreature(sMessage, oPC, FALSE);
|
||||
}
|
||||
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shifter_debug");
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shift_debug");
|
||||
DelayCommand(1.0f, _prc_inc_PrintShape(oPC, oTemplate, DEBUG));
|
||||
}
|
||||
else if(GetCanShiftIntoCreature(oPC, SHIFTER_TYPE_SHIFTER, oTemplate))
|
||||
@@ -46,14 +46,14 @@ void main()
|
||||
StoreShiftingTemplate(oPC, SHIFTER_TYPE_SHIFTER, oTemplate);
|
||||
string sMessage = ReplaceString(GetStringByStrRef(57478+0x01000000), "%(SHAPENAME)", GetName(oTemplate)); //"Learned <shape>"
|
||||
FloatingTextStringOnCreature(sMessage, oPC, FALSE);
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shifter_debug");
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shift_debug");
|
||||
DelayCommand(1.0f, _prc_inc_PrintShape(oPC, oTemplate, DEBUG));
|
||||
}
|
||||
else
|
||||
{
|
||||
string sMessage = ReplaceString(GetStringByStrRef(57479+0x01000000), "%(SHAPENAME)", GetName(oTemplate)); //"Cannot learn <shape>"
|
||||
FloatingTextStringOnCreature(sMessage, oPC, FALSE);
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shifter_debug");
|
||||
//int bDebug = GetLocalInt(oPC, "prc_shift_debug");
|
||||
if (DEBUG || GetLocalInt(oPC, "prc_shifter_print"))
|
||||
DelayCommand(1.0f, _prc_inc_PrintShape(oPC, oTemplate, DEBUG));
|
||||
}
|
||||
|
@@ -26,10 +26,10 @@ void main()
|
||||
{
|
||||
object oPC = OBJECT_SELF;
|
||||
|
||||
int nShifterLevel = GetLocalInt(oPC, "prc_shifter_relevel");
|
||||
int nShifterLevel = GetLocalInt(oPC, "prc_shift_relvl");
|
||||
if (nShifterLevel < 1)
|
||||
nShifterLevel = 1;
|
||||
DeleteLocalInt(oPC, "prc_shifter_relevel");
|
||||
DeleteLocalInt(oPC, "prc_shift_relvl");
|
||||
SendMessageToPC(oPC, "Relevelling Shifter shapes starting with Shifter level " + IntToString(nShifterLevel));
|
||||
|
||||
//Set auto-granted shape level to current level (so we can learn a new shape on next level up)
|
Reference in New Issue
Block a user