Jump to content

Two problems


Campaigner

Recommended Posts

Problem 1; Equipable Gear with custom enchant

 

I'm attempting to make an amulet that turns the player into a ghost and a sword that is transparent like a ghost, similar to the Night Mother and Spectral Mudcrab. I know the spell they have on them that turns them into a ghost, and it's AbGhostNPC. How do I add this spell to items?

 

 

Problem 2; Companion

 

Similar to above, I'm trying to make a Bear with the AbGhostNPC spell, essential and on the Playerfaction. I want to make it permanently incapable of becoming hostile to the player, and I want to also make it capable of leveling up with me. I cannot right click to add anything into factions or spells for some reason.

 

 

Any idea what the problem is, and how to fix it?

Link to comment
Share on other sites

Problem 1; Equipable Gear with custom enchant

 

I'm attempting to make an amulet that turns the player into a ghost and a sword that is transparent like a ghost, similar to the Night Mother and Spectral Mudcrab. I know the spell they have on them that turns them into a ghost, and it's AbGhostNPC. How do I add this spell to items?

 

For the amulet: Make a scripted enchantment that will add the effect to the Player when equipped and remove it when unequipped. The script should look something like:

 

scn GhostAmuletScript

Begin OnEquip Player

Player.pms GhostEffect

end

Begin OnUnEquip Player

Player.sms GhostEffect

end

 

For the sword: I'm not 100% sure about this, but an enchantment might do it with the following script:

 

scn GhostSwordScript

Begin ScriptEffectStart

SwordID.pms GhostEffect

End

 

Note: You will need to use the EditorID of the sword for this to work (if it will work at all).

 

Problem 2; Companion

 

Similar to above, I'm trying to make a Bear with the AbGhostNPC spell, essential and on the Playerfaction. I want to make it permanently incapable of becoming hostile to the player, and I want to also make it capable of leveling up with me. I cannot right click to add anything into factions or spells for some reason.

 

 

Any idea what the problem is, and how to fix it?

You can't add factions/spells by right clicking. You need to drag them into the lists just as you would drag an item to add it to an inventory.

Link to comment
Share on other sites

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...