Amon_PRC8/_module/nss/_trisla_fun_bin.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

22 lines
703 B
Plaintext

/*Trislas tinned Amon function bin.
Basic functions used a lot can now be made up and called apon from here rather than other devs
rewriting the same thing, in a slightly diffent way in may other places*/
//VARS GLOBAL *only use global if have no other option, too many rethink it*//
//PROTOTYPES//
void a_XPSettingReset(object oPlayerHolder);
//FUNTIONS//
void a_XPSettingReset(object 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);
}