17 lines
407 B
Plaintext
17 lines
407 B
Plaintext
////////////////////////////////////////////////////////////////////////////////
|
|
// Dead and Wild Magic System - OnEnter
|
|
// wdm_mod_onenter
|
|
// By Don Anderson
|
|
// dandersonru@msn.com
|
|
//
|
|
// Place this script in the Module Enter Event
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wdm_inc"
|
|
|
|
void main()
|
|
{
|
|
WDM_RestoreMagic(GetEnteringObject(), TRUE);
|
|
}
|