35 lines
1.1 KiB
Plaintext
35 lines
1.1 KiB
Plaintext
// _____
|
|
//----------------------------------------------------------------. / __
|
|
// Script made by Spy fort, alias. Teh 1337Zor©. . . . . . . . . .|;; / / |
|
|
// Reserved space for later notes; _______________________|;;;.~' / |
|
|
// + Random ASCII art cause I'm ________|Spy fort, not Soy fort.|;-------|---|
|
|
// bored \_./\._.|_______________________|;;;'-. \ |
|
|
//:............................../ | \ / / LAL |I'm so 1337...|;; \ \__|
|
|
//- - -.--.--.---.---.----.----.-----.-----.------.------.-------.' \_____
|
|
|
|
#include "nw_i0_plot"
|
|
|
|
void main()
|
|
{
|
|
// Variables;
|
|
object oPC;
|
|
effect eEffect;
|
|
// End of Variables
|
|
|
|
if (GetIsObjectValid(GetItemActivatedTarget())
|
|
)
|
|
|
|
{
|
|
SendMessageToPC(GetItemActivator(), "Improper use of item!");
|
|
return;}
|
|
|
|
// Meaning behind the variables;
|
|
oPC = GetItemActivator();
|
|
eEffect = EffectSummonCreature("summ_pixie", VFX_FNF_SUMMON_MONSTER_1, 1.0);
|
|
// End of the meaning.
|
|
|
|
// Duration.
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oPC);
|
|
}
|
|
// Teh Endzor?
|