Further file organization

Further file organization
This commit is contained in:
Jaysyn904
2023-08-23 22:11:00 -04:00
parent 3062876237
commit d87fe14826
22364 changed files with 0 additions and 3253 deletions

View File

@@ -0,0 +1,25 @@
//::///////////////////////////////////////////////
//:: Soulknife: Conversation - Save settings
//:: psi_sk_conv_save
//::///////////////////////////////////////////////
/*
Saves the new mindblade enhancement selections
and queues an event to OnRest for them to
come to effect.
*/
//:://////////////////////////////////////////////
//:: Created By: Ornedan
//:: Created On: 07.04.2005
//:://////////////////////////////////////////////
#include "psi_inc_soulkn"
#include "inc_utility"
void main()
{
object oPC = GetPCSpeaker();
SetLocalInt(oPC, MBLADE_FLAGS + "_Q", GetLocalInt(oPC, MBLADE_FLAGS + "_T"));
AddEventScript(oPC, EVENT_ONPLAYERREST_FINISHED, "psi_sk_event", FALSE, FALSE);
}