15 lines
350 B
Plaintext
15 lines
350 B
Plaintext
|
void main()
|
||
|
{
|
||
|
if (GetTag(GetItemActivated()) == "ohswhtkeygen")
|
||
|
{
|
||
|
|
||
|
object oTarget = GetItemActivatedTarget();
|
||
|
if (!GetIsObjectValid(oTarget))
|
||
|
return;
|
||
|
// Apply effects
|
||
|
AssignCommand(oTarget, ClearAllActions());
|
||
|
CreateItemOnObject("ohstowerkey", oTarget);
|
||
|
CreateItemOnObject("whiteapprentice", oTarget);
|
||
|
}
|
||
|
}
|