34 lines
972 B
Plaintext
34 lines
972 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, "focussplinter2") == OBJECT_INVALID )
|
|
{
|
|
// Give "focussplinter1" to the PC.
|
|
CreateItemOnObject("focussplinter2", 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);
|
|
}
|
|
}
|
|
|