Clear out experimental .35 files

Clear out experimental .35 files
This commit is contained in:
Jaysyn904
2024-02-11 13:04:14 -05:00
parent 2112b92e24
commit 618cd42b82
22356 changed files with 0 additions and 1248956 deletions

View File

@@ -1,28 +0,0 @@
//::///////////////////////////////////////////////
//:: Disciple of Asmodeus Learn Secret
//:: prc_doa_lrnscrt.nss
//::///////////////////////////////////////////////
/*
Gives them a +10 bonus to Lore for 1 round a day.
*/
//:://////////////////////////////////////////////
//:: Created By: Stratovarius
//:: Created On: 27.2.2006
//:://////////////////////////////////////////////
#include "prc_alterations"
void main()
{
object oPC = OBJECT_SELF;
effect eLore = EffectSkillIncrease(SKILL_LORE, 10);
effect eVis = EffectVisualEffect(VFX_IMP_MAGICAL_VISION);
effect eDur = EffectVisualEffect(VFX_DUR_CESSATE_POSITIVE);
effect eLink = EffectLinkEffects(eVis, eDur);
eLink = EffectLinkEffects(eLink, eLore);
//Apply linked and VFX effects
SPApplyEffectToObject(DURATION_TYPE_TEMPORARY, eLink, oPC, RoundsToSeconds(1),TRUE,-1,99);
SPApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, oPC);
}