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,16 +0,0 @@
int StartingConditional()
{
object oPC = GetPCSpeaker();
// Get the target's name and set it as the approrpriate custom item.
SetCustomToken(101, GetName(GetLocalObject(oPC, "SP_CREATETATOO_TARGET")));
// Get the caster level and calculate SR from that and set it as the
// appropriate conversation custom item.
int nCasterLevel = GetLocalInt(oPC, "SP_CREATETATOO_LEVEL");
int nSR = 10 + (nCasterLevel / 6);
string s = IntToString(nSR);
SetCustomToken(102, s);
return TRUE;
}