mirror of
http://prc.nwn.ee:3000/Jaysyn/PRC8.git
synced 2025-12-16 15:17:16 -05:00
21 lines
603 B
Plaintext
21 lines
603 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Weapon Spawn Script for Martial Classes
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Spawns in a magical SPECIFIC weapon suited for that class.
|
|
Will spawn in either a generic or specific, depending on the
|
|
value.
|
|
|
|
NOTE: Only works on containers
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Andrew, Brent
|
|
//:: Created On: February 2002
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
ExecuteScript("nw_o2_classweap", OBJECT_SELF);
|
|
}
|