Got rid of the rest of the DevCrit restrictions

Got rid of the rest of the DevCrit restrictions.
This commit is contained in:
Jaysyn904
2025-06-10 17:30:43 -04:00
parent 54eec336c5
commit 92dd37996f
28 changed files with 12 additions and 11 deletions

View File

@@ -5,15 +5,16 @@
#include "craft_inc"
#include "_trisla_fun_bin"
void main(){
void main()
{
/////////////////////////////////////////
//: Stats limits...which seems a little pointless now/////////
int _STR_ = 52;
/* int _STR_ = 52;
int _DEX_ = 52;
int _CON_ = 52;
int _INT_ = 52;
int _CHA_ = 52;
int _WIS_ = 52;
int _WIS_ = 52; */
/////////////////////////
//:vars/////////////////
@@ -28,7 +29,7 @@ int rulesRead;
///////////////////////////////
//REMOVAL OF DEV CRIT CRAPNESS FROM POOR SODS WHO PICKED IT ALREADY
int nF_ID = 495;
/* int nF_ID = 495;
for (nF_ID; nF_ID <= 532; ++nF_ID){
if (GetHasFeat(nF_ID, oPlayer)){
@@ -39,8 +40,8 @@ int rulesRead;
SendMessageToAllDMs("Dev Crit has been removed from player: " + sPlayerName);
a_XPSettingReset(oPlayer);
}
else{}
}
else{} */
//////////////
//RULES_SET///

View File

@@ -12,10 +12,10 @@ void a_XPSettingReset(object oPlayerHolder);
//FUNTIONS//
void a_XPSettingReset(object oPlayerHolder){
int oPC_XP = GetXP(oPlayerHolder);
/* int oPC_XP = GetXP(oPlayerHolder);
SetXP(oPlayerHolder,190000);
DelayCommand(0.5, FloatingTextStringOnCreature("The' feat *Devastating Critical* had to be removed from the server, please see the forum for more information", oPlayerHolder));
SetXP(oPlayerHolder, oPC_XP);
SetXP(oPlayerHolder, oPC_XP); */
}

View File

@@ -4,7 +4,7 @@
void main()
{
object oPlayer = GetPCLevellingUp();
/* object oPlayer = GetPCLevellingUp();
int nF_ID = 495;
for (nF_ID; nF_ID <= 532; ++nF_ID){
@@ -15,6 +15,6 @@ void main()
a_XPSettingReset(oPlayer);
}
else{}
}
} */
}

View File

@@ -9,5 +9,5 @@
void main()
{
ExecuteScript("prc_levelup", OBJECT_SELF);
ExecuteScript("dev_crit_onlvlup", OBJECT_SELF);
//ExecuteScript("dev_crit_onlvlup", OBJECT_SELF);
}