Alangara_PRC8/_module/nss/focussplinter3.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

34 lines
971 B
Plaintext

void main()
{
effect eVFX;
object oSelf = OBJECT_SELF;
// Get the creature who triggered this event.
object oPC = GetLastUsedBy();
// Abort if the PC does not have the item "alchymihammer" equipped.
if ( GetItemPossessedBy(oPC, "alchymihammer") == OBJECT_INVALID )
{
FloatingTextStringOnCreature("You need a specific tool to mine this crystal !", oPC);
return;
}
// If the PC does not have the item "focussplinter1".
if ( GetItemPossessedBy(oPC, "focussplinter3") == OBJECT_INVALID )
{
// Give "focussplinter1" to the PC.
CreateItemOnObject("focussplinter3", oPC);
// Apply a visual effect.
eVFX = EffectVisualEffect(VFX_FNF_ELECTRIC_EXPLOSION);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVFX, oSelf);
}
else
{
// Have text appear over the PC's head.
FloatingTextStringOnCreature("You seem unable to mine more splinters !", oPC);
}
}