14 lines
288 B
Plaintext
14 lines
288 B
Plaintext
|
void main()
|
||
|
{
|
||
|
if (GetTag(GetItemActivated()) == "tmfkeygen")
|
||
|
{
|
||
|
|
||
|
object oTarget = GetItemActivatedTarget();
|
||
|
if (!GetIsObjectValid(oTarget))
|
||
|
return;
|
||
|
// Apply effects
|
||
|
AssignCommand(oTarget, ClearAllActions());
|
||
|
CreateItemOnObject("tmfkey", oTarget);
|
||
|
}
|
||
|
}
|