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  Custom Magic Items (Variable Based)
Author  Carcerian
Submitted / Updated  08-28-2008 / 08-30-2008
Category  Inventory Item
Expansions  HOTU-1.69
Format  Module and Code
Type  Type - Combat
Includes  Custom
Description
Custom Magic Items
By Carcerian

A System allowing designers to create items with a number of effects specified in item variables.

Usage :

Import Erf.

Enable Tag Based Scripts.

Place sample items in game:

Death Burst, Prismatic Shield, Prismatic Ray, Faerie Fire Items, Magic Ray, Ray of Force

(Note : items will not function if sold from merchants, as merchant items do not remember required vars)

Examine ingame items for usage.

Notes :

////////////////////////////////////////////////////////////////////////////////
// - Code --------- Property ------------------------------------------------ //
// //
// ABM EffectAbilityDecrease/EffectAbilityIncrease
// ACM EffectACIncrease/EffectACDecrease
// BLI EffectBlindness
// CHA EffectCharmed
// CNC EffectConcealment
// CNF EffectConfused
// CRS EffectCurse
// CTD EffectCutsceneDominated
// CTG EffectCutsceneGhost
// CTI EffectCutsceneImmobilize
// CTP EffectCutsceneParalyze
// DAM EffectDamage
// DAD EffectDamageDecrease
// DAI EffectDamageIncrease
// DAR EffectDarkness
// DAZ EffectDazed
// DEF EffectDeaf
// DTH EffectDeath
// DIS EffectDisease
// DID EffectDamageImmunityDecrease
// DII EffectDamageImmunityIncrease
// DMA EffectDispelMagicAll
// DMB EffectDispelMagicBest
// DMN EffectDominated
// DOM CreateDoomEffectsLink
// DRD EffectDamageReduction
// DRS EffectDamageResistance
// DSH EffectDamageShield
// EDA EffectDisappearAppear
// ENT EffectEntangle
// ETH EffectEthereal
// EXP Explosion
// FRI EffectFrightened
// HAS EffectHaste
// HEA EffectHeal
// IMM EffectImmunity
// INV EffectInvisibility
// KOD EffectKnockdown
// MIS EffectMissChance
// MOD EffectModifyAttacks
// MSD EffectMovementSpeedDecrease
// MSA EffectMovementSpeedIncrease
// NEG EffectNegativeLevel
// PAR EffectParalyze
// PET EffectPetrify
// PSN EffectPoison
// POL EffectPolymorph
// REG EffectRegenerate
// REM RemoveSpecificEffect
// RES EffectResurrection
// SAN EffectSanctuary
// SIN EffectSeeInvisible
// SIL EffectSilence
// SKD EffectSkillDecrease
// SKI EffectSkillIncrease
// SLA EffectSpellLevelAbsorption
// SLE EffectSleep
// SLO EffectSlow
// SPF EffectSpellFailure
// SPI EffectSpellImmunity
// SRD EffectSpellResistanceDecrease
// SRI EffectSpellResistanceIncrease
// STD EffectSavingThrowDecrease
// STI EffectSavingThrowIncrease
// STN EffectStunned
// SUM EffectSummonCreature
// SWA EffectSwarm
// THP EffectTemporaryHitpoints
// TIM EffectTimeStop
// TUR EffectTurned
// TRD EffectTurnResistanceDecrease
// TRI EffectTurnResistanceIncrease
// TRU EffectTrueSeeing
// ULT EffectUltravision
// VFX EffectVisualEffect
// IFX ItemPropertyVisualEffect
//
////////////////////////////////////////////////////////////////////////////////

CONSTANTS USED

int DAMAGE_TYPE_BLUDGEONING = 1;
int DAMAGE_TYPE_PIERCING = 2;
int DAMAGE_TYPE_SLASHING = 4;
int DAMAGE_TYPE_MAGICAL = 8;
int DAMAGE_TYPE_ACID = 16;
int DAMAGE_TYPE_COLD = 32;
int DAMAGE_TYPE_DIVINE = 64;
int DAMAGE_TYPE_ELECTRICAL = 128;
int DAMAGE_TYPE_FIRE = 256;
int DAMAGE_TYPE_NEGATIVE = 512;
int DAMAGE_TYPE_POSITIVE = 1024;
int DAMAGE_TYPE_SONIC = 2048;

int DAMAGE_BONUS_1 = 1;
int DAMAGE_BONUS_2 = 2;
int DAMAGE_BONUS_3 = 3;
int DAMAGE_BONUS_4 = 4;
int DAMAGE_BONUS_5 = 5;
int DAMAGE_BONUS_1d4 = 6;
int DAMAGE_BONUS_1d6 = 7;
int DAMAGE_BONUS_1d8 = 8;
int DAMAGE_BONUS_1d10 = 9;
int DAMAGE_BONUS_2d6 = 10;
int DAMAGE_BONUS_2d8 = 11;
int DAMAGE_BONUS_2d4 = 12;
int DAMAGE_BONUS_2d10 = 13;
int DAMAGE_BONUS_1d12 = 14;
int DAMAGE_BONUS_2d12 = 15;
int DAMAGE_BONUS_6 = 16;
int DAMAGE_BONUS_7 = 17;
int DAMAGE_BONUS_8 = 18;
int DAMAGE_BONUS_9 = 19;
int DAMAGE_BONUS_10 = 20;
int DAMAGE_BONUS_11 = 21;
int DAMAGE_BONUS_12 = 22;
int DAMAGE_BONUS_13 = 23;
int DAMAGE_BONUS_14 = 24;
int DAMAGE_BONUS_15 = 25;
int DAMAGE_BONUS_16 = 26;
int DAMAGE_BONUS_17 = 27;
int DAMAGE_BONUS_18 = 28;
int DAMAGE_BONUS_19 = 29;
int DAMAGE_BONUS_20 = 30;

float RADIUS_SIZE_SMALL = 1.67f;
float RADIUS_SIZE_MEDIUM = 3.33f;
float RADIUS_SIZE_LARGE = 5.0f;
float RADIUS_SIZE_HUGE = 6.67f;
float RADIUS_SIZE_GARGANTUAN = 8.33f;
float RADIUS_SIZE_COLOSSAL = 10.0f;

int SHAPE_SPELLCYLINDER = 0;
int SHAPE_CONE = 1;
int SHAPE_CUBE = 2;
int SHAPE_SPELLCONE = 3;
int SHAPE_SPHERE = 4;

Files

NameTypeSizeDownloads
_Custom_Magic_Items.zip_Custom_Magic_Items.zip
Submitted: 08-28-2008 / Last Updated: 08-28-2008
zip66.01Kb240
Custom Magic Item System Zip (Contains Erf, Mod and Txt)
SCORE OUT OF 10
9.5
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

Custom Magic Items


Death Burst


Faerie Fire


Prismatic Ray


Prismatic Shield





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

Posted by Builder__Anthony at 2010-04-01 17:42:21    Voted 9.50 on 04/01/10
I think theres some uses for it.You could use the premade items which are pretty cool or go full into the direction of a custom item.I didnt see any problems with it and liked the 3 differnt colored beam effect that came out of that one item.I never really seen a beam change color like that..Nice job.

Posted by olcottr at 2009-10-31 01:57:58    
I recently read a game accessory which gave magic items that would give different abilities depending on what feats you had. For instance, Adroit: When making an attack or full attack action, the wielder of an adroit weapon may take a penalty of up to �5 on his attack roll and add the same number as a dodge bonus to his Armor Class. This number cannot exceed the wielder�s
base attack bonus. This ability functions in all ways as the Combat Expertise feat.
The wielder of an adroit weapon that actually possesses the Combat Expertise feat may add twice the number he subtracts from his attack roll to his Armor Class. In addition, such a wielder may take a penalty to his attack roll up to 5 plus his Dexterity modifier when using an adroit weapon. The adroit
ability may only be added to melee weapons.

Posted by Saduj at 2008-08-29 09:30:33    
If anyone has any questions or suggestions post away!

If you come up with any cool, funny or interesting custom magic items, post the effect codes here and once i get a few will add to system example items or make an expansion pack.

Enjoy!
_________________________
Carcerian/Saduj's Submissions: (169 Portrait/Soundset Unlocker) (12 NWN Fonts) (30 NWN Fonts) (Auto-Emotes) (Custom Dragon Disciples) (Dynamic Wildshape) (Keyring) (NPC Schedules) (Sacred Shields) (Spawning Undead) (Shayans Subrace Engine for 169)

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 Gameworlds


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