Neverwinter Vault

Expand AllContract All -Site -My Profile -Features

Neverwinter Nights 2

-NWN2 Files -NWN2 Game Info -NWN2 Resources -NWN2 Community

Neverwinter Nights

-NWN Files -NWN Game Info -NWN Resources -NWN Community

Vault Network
RPG Vault
VN Boards
IGN Vault
Vault Wiki
· Age of Conan
· Anarchy Online
· Asheron's Call
· Dark Age of Camelot
· City of Heroes
· D&D
· EVE Online
· EverQuest
· EverQuest 2
· Final Fantasy
· Guild Wars
· Lineage 2
· Lord of the Rings Online
· Middle Earth
· Neverwinter Nights
· Pirates of the Burning Sea
· Rise of the Argonauts
· Star Wars Galaxies
· Tabula Rasa
· The Matrix Online
· The Witcher
· Titan Quest
· Two Worlds
· Vanguard
· Warhammer
· World of Warcraft

Planet Network
Planet Hub

IGN
Games
Cheats
Entertainment

The Web   The Site  



NWN SCRIPTS

- Jump to comments -
Title  El's Druid Shape Controls
Author  El
Submitted / Updated  10-29-2005 / 11-22-2006
Category  Spells
Expansions  Requires Both Expansions (SoU & HotU)
Format  Module and Code
Type  Type - Combat
Includes  Custom
Description
I love Druids. Just wanted to get that out of the way first. Anyway, Bioware really disappointed me by not allowing for more shapes. SO I fixed it. Druids can now remap their hotkeys with this submission. I also added a slew of epic and secret shapes, but feel free to tinker around with what unlocks when by removing the scripts attached to the "TextAppearsWhen" handlers in the dialog tree.

Why is this so great? It lets you remap your wildshape hotkeys. You want to be a bear, that's fine. Default will keep the hotkeys the way they are. But! if you want to set your Bear shape to instead turn you into a Dog or a Rat, you can do that, too.

You use the Badger shape to remap the other 4 radial options.

DETAILS:

1 Conversation file. This controls all the assignment of wild shapes.

Tons of 'unlock' items. I did this for the module this system was created for: Mythos.

Secret shapes range from alternate base races to kobolds, goblins, even Beholders, Imps, and Celestials, and more. There are a total of about fifty different unique shapes to choose from.

More standard shapes: Deer, Stag, rats, ravens, dogs, bats. Oh, and chickens.

Epic shapes (level 21) are currently locked by having to have an item on you, but it's pretty easy to remove those locks. Child, Werewolf, Wererat, and Werecat are all available.

Included content:

Quick-import .erf file

Demo Module for testing it out.

New Polymorph.2da file. This goes in your override directory. If this is for PWs, it goes in the server's override folder. This adds and re-references some shapes. There's tons of good stuff in there for you all to enjoy.

If I missed anything or there are any bugs, my email is in the readme.

Files

NameTypeSizeDownloads
el_druid_shapes.rarel_druid_shapes.rar
Submitted: 10-29-2005 / Last Updated: 10-29-2005
rar92.67Kb463
Complete .erf with everything you need to play with this system. No haks are required.
SCORE OUT OF 10
10
1 votes
View Stats
Cast Your Vote!

PORTFOLIO
Add this entry to your portfolio so you can track it
Manage your existing portfolios or create a new one.
SCREENS
No Images




You Must Be Logged In to Participate.
Comments (10):

Posted by El the Bull at 2005-11-05 07:38:32    
It goes in your C:\NeverwinterNights\NWN\override folder
_________________________
MYTHOS: The Isle of Legend --Live now!

Posted by Golem1 at 2005-11-03 09:01:32    Voted 10.00 on 11/01/05
Ok, ive downloaded, imported etc, but Im not sure which override 2 put it in!

Posted by Golem1 at 2005-11-03 08:44:24    Voted 10.00 on 11/01/05
oh, real sorry 4 the double post. Read the rest again and saw. Thanks for this, it's really cool!

Posted by Golem1 at 2005-11-03 08:43:21    Voted 10.00 on 11/01/05
What line number? Sorry if I'm being stupid, but I'm not that used to doin stuff with models.

Posted by El the Bull at 2005-11-01 18:32:45    
My polymorph already has entries for male and female human forms, so you could just use it and reference the lines in your polymorph call (use the line number and not my POLYMORPH_TYPE_XXXX entry because, for some reason, the toolset doesn't load those).
_________________________
MYTHOS: The Isle of Legend --Live now!

Posted by El the Bull at 2005-11-01 12:14:52    
ugh, the line of code above didn't come out right...

ApplyEffectToObject( DURATION_TYPE_PERMANENT, EffectPolymorph( [ new line's number ] ), OBJECT_SELF );
_________________________
MYTHOS: The Isle of Legend --Live now!

Posted by El the Bull at 2005-11-01 12:13:26    
If you want him to polymorph into a human, just add a line at the end of your polymorph.2da file. It's not hard to do at all. Just copy the last line, paste it, rename the line number, and adjust the fields for appearance and portrait. The other fields manipulate base STR, CON, DEX, and up to 3 spell-like abilities they can have in the polymorphed form.

Once you have your new line, you save your polymorph.2da in your override folder with the new line number, you put in the ActionsTaken handler for one of the dialog nodes something along the lines of

ApplyEffectToObject(DURATION_TYPE_PERMANENT, EffectPolymorph( ), OBJECT_SELF );

And the dragon will turn into your new human. I would advise using one of the NPC_HUMAN appearances. For the appropriate portait, you look under appearances.2da and just play a matching game, or you can set it to be whatever you like.
_________________________
MYTHOS: The Isle of Legend --Live now!

Posted by Golem1 at 2005-11-01 08:27:06    Voted 10.00 on 11/01/05
Sorry about that REALLY long comment. This is a double post I know, but this time I'm commenting on your script. IT IS SO COOL! I have loads of druid characters and really, I don't actually use equipment on them cos I spend so much time polymorphed! Thanks for this script, its so cool.

Posted by Golem1 at 2005-11-01 08:25:08    Voted 10.00 on 11/01/05
Ramas;
You need, at least I think, two scripts (or at least one whole script and an addition onto one of your existing scripts). You will also need, I'm afraid, to change your black dragon idea to a Red/Green/Blue. First of all you should create a human NPC with all the stats of your dragon and the appearance of the human form you want, and place him where you want your dragon to be. Then, put the scipt below on the 'oncliententer' under module properties (or add it to the existing script). Set your NPC's tag to 'Dragon'.
void main()
{

object oPC = GetEnteringObject();

if (!GetIsPC(oPC)) return;

object oTarget;
oTarget = GetObjectByTag("Dragon");

effect eEffect;
eEffect = EffectPolymorph(POLYMORPH_TYPE_ANCIENT_GREEN_DRAGON);

eEffect = SupernaturalEffect(eEffect);

ApplyEffectToObject(DURATION_TYPE_PERMANENT, eEffect, oTarget);
}
Next, you need the script to change the man back into a Human (the NPC).
You would need the code as follows:
void main()
{

object oPC = GetPCSpeaker();

object oTarget;
oTarget = OBJECT_SELF;

effect eEffect;
eEffect = GetFirstEffect(oTarget);
while (GetIsEffectValid(eEffect))
{
if (GetEffectType(eEffect)==EFFECT_TYPE_POLYMORPH) RemoveEffect(oTarget, eEffect);
eEffect = GetNextEffect(oTarget);
}

}
Put this one on the conversation editor under actions taken. I'll post this in an erf. under creatures if you want.



Posted by Ramas Obarskyr ( 209.206.xxx.xxx ) at 2005-10-31 22:32:16    
Great scripting. I happen to like using sorcerers which are like druids in their wild natures and crazy powers. I have a question though. I'm working on a module right now with a custom black dragon as one of the plot NPCs and I'm trying to figure out how to get him to polymorph into human form during a conversation. How do I do that? What would that script look like?

You must be Logged In to post comments in this section.

 
Most recent posts on the MMO General Boards
Analyst: Star Wars: The Old Republic Could...Analyst: Star Wars: The Old Republic Could Sell 3M: more numbers
- last reply by Acao on Aug 15, 2011 06:15 PM
which class will your first character be
- last reply by Blisteringballs on Aug 15, 2011 05:50 PM
New Community Content!
- posted by Vault_News on Aug 15, 2011 05:00 PM
New Community Content!
- posted by Vault_News on Aug 15, 2011 04:00 PM
NWN Idea Database Update
- posted by Vault_News on Aug 15, 2011 03:46 PM
Missing Votes for NWN2 Hall of Fame
- posted by Vault_News on Aug 15, 2011 03:40 PM
Missing Votes for NWN Hall of Fame
- posted by Vault_News on Aug 15, 2011 03:39 PM
Random Questions and game altering suggest...Random Questions and game altering suggestions!!!
- last reply by ArkadyTepes on Aug 15, 2011 03:22 PM
State of the game?
- last reply by LyricOpera on Aug 15, 2011 01:37 PM
Yesterday streaming, now demanding downloa...Yesterday streaming, now demanding download :(
- last reply by Sinane-tk on Aug 15, 2011 10:23 AM
 

   


IGN Entertainment
By continuing past this page, and by your continued use of this site, you agree to be bound by and abide by the User Agreement.
Copyright 1996-2011, IGN Entertainment, Inc. | Support | Privacy Policy | User Agreement | RSS Feeds
IGN’s enterprise databases running Oracle, SQL and MySQL are professionally monitored and managed by Pythian Remote DBA.


NWN2 Hall of Fame

HOF NWN2 Prefab Blueprints


View all Hall of Fame entries


Neverwinter Nights 2

TOP NWN2 Modules

NEW Modules

NEW Reviews

NEW INTL. Modules

TOP Hakpaks

TOP Gameworlds

TOP Tutorials

TOP Prefab:Areas

TOP Blueprints

TOP Plugins

TOP UI

TOP Other

TOP Visual Effects

TOP Scripts

TOP Tools

TOP Movies

TOP Models

TOP Characters





Hall of Fame

HOF NWN Modules


View all Hall of Fame entries


TOP NWN Modules

NEW NWN Modules

NEW Reviews

TOP Intl. Modules

TOP NWN Hakpaks

TOP NWN Gameworlds

TOP NWN Models

TOP NWN Portraits

TOP NWN Scripts

TOP NWN Prefabs

TOP NWN Other

TOP NWN Movies

TOP Sounds

TOP NWN Textures

TOP NWN Creatures

TOP NWN Characters