Jump to content

A poison mod


taionlol

Recommended Posts

Is there a mod that can apply poison to mobs without engaging in combat through means of pickpocket? Ideally, I'd like to sneak behind the NPC, apply a poison to kill him (damage health), or weaken him (drain strength) without having to draw my blade.

The idea is somewhat similar to poison apple, except it does not require NPC to eat it.

Thanks
Link to comment
Share on other sites

  • 3 weeks later...

perhaps if you make an item with zero weight and atouch this script will work

 

 

 

ScriptName poisonousobjscr

ref pvictim
ref me
short doonce

begin gamemode
if doonce == 0
set me to getself
set pvictim to getcontainer

endif

if pvictim.IsActor == 1 && pvictim != player && pvictim.GetDead == 0 && doonce == 0


pvictim.AddSpell AbApplePoison
set doonce to 1
message "success"



endif

if pvictim.GetDead == 1
RemoveMe
endif

end

 

 

Also i can try sth similar with a spell (without being an attack)

Edited by kastano
Link to comment
Share on other sites

  • 3 weeks later...
  • Recently Browsing   0 members

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