Author Topic: Invisible creatures, potion that turns them 'invisible'  (Read 312 times)

Legacy_Sprinkles22

  • Newbie
  • *
  • Posts: 6
  • Karma: +0/-0
Invisible creatures, potion that turns them 'invisible'
« on: July 03, 2013, 03:22:03 am »


                Hi there! I'm trying to create the notion that there are invisible creatures in my module that can only be seen when I have a potion in my inventory. I realize this is pretty complex.

I'm willing to try complex as well as shortcuts, such as possibly having triggers that spawn creatures as long as I have a potion equipped or even just in my inventory.

Any ideas? Thanks!
               
               

               
            

Legacy_Ansalon II Admin

  • Newbie
  • *
  • Posts: 42
  • Karma: +0/-0
Invisible creatures, potion that turns them 'invisible'
« Reply #1 on: July 03, 2013, 07:46:15 am »


               

Sprinkles22 wrote...

 Hi there! I'm trying to create the notion that there are invisible creatures in my module that can only be seen when I have a potion in my inventory. I realize this is pretty complex.

I'm willing to try complex as well as shortcuts, such as possibly having triggers that spawn creatures as long as I have a potion equipped or even just in my inventory.

Any ideas? Thanks!


I'm pretty sure that is not possible. you would also need to diable all the spells and potions that allow someone to see invisability.

---
Ansalon II - A Dragonlance Megaworld.
http://nwn.starfire3d.com
               
               

               


                     Modifié par Ansalon II Admin, 03 juillet 2013 - 06:48 .
                     
                  


            

Legacy_Failed.Bard

  • Hero Member
  • *****
  • Posts: 1409
  • Karma: +0/-0
Invisible creatures, potion that turns them 'invisible'
« Reply #2 on: July 03, 2013, 01:46:36 pm »


               

Sprinkles22 wrote...

 Hi there! I'm trying to create the notion that there are invisible creatures in my module that can only be seen when I have a potion in my inventory. I realize this is pretty complex.

I'm willing to try complex as well as shortcuts, such as possibly having triggers that spawn creatures as long as I have a potion equipped or even just in my inventory.

Any ideas? Thanks!

 

  If this is in a single player mod, you could just have the PC gain see invisibility when they get close to him.  In a MP environment you could use NWNX to change theie visibility state for the PC only.

  Regardless, either way it would be accomplished by creating an AOE on the invisible creature, with the OnEnter script for it checking for the presence of the potion, and applying whichever means of making them visible is appropriate for your module.
               
               

               
            

Legacy_WhiZard

  • Hero Member
  • *****
  • Posts: 2149
  • Karma: +0/-0
Invisible creatures, potion that turns them 'invisible'
« Reply #3 on: July 03, 2013, 07:55:02 pm »


               You could also work the darkness end of invisibility, for example, give the creatures permanent EffectInvisibility(INVISIBILITY_TYPE_DARKNESS); and allow an item to give ultravision.
               
               

               
            

Legacy_Sprinkles22

  • Newbie
  • *
  • Posts: 6
  • Karma: +0/-0
Invisible creatures, potion that turns them 'invisible'
« Reply #4 on: July 05, 2013, 02:46:27 am »


               Oh, thanks so much WhiZard! That's a great idea. Still working on implementation