21 lines
501 B
Plaintext
21 lines
501 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: tr_skctrap_act_f
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Creates a deadly trap kit of the current 'trap type'
|
||
|
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By:
|
||
|
//:: Created On:
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
#include "tr_inc_skills"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
skillCTRAPCreateTrapKit(skillCTRAPGetCurrentTrapView(), GetPCSpeaker(), SKILL_TRAP_EPIC);
|
||
|
}
|
||
|
|