AOC_PRC8/_module/nss/mag_chain.nss

17 lines
393 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:24:16 -04:00
void main()
{
object oPC = GetLastUsedBy();
object oMod = GetModule();
if (GetLocalInt(oMod, "mod_mode")==1)
{
ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE);
ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE);
DelayCommand(2.0, ActionStartConversation(oPC, "portal"));
}
else
{
PlaySound("sim_cntresist");
FloatingTextStringOnCreature("Only availible in campaign manager mode", oPC);
}
}