14 lines
556 B
Plaintext
14 lines
556 B
Plaintext
////////////////////////////////////////////////////////////////////////////
|
|
// Real Time Strategy - NWN - OnLoadModule
|
|
//==========================================================================
|
|
// By Deva Bryson Winblood. 02/25/2003
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
ExecuteScript("rts_set_defaults",OBJECT_SELF);
|
|
DelayCommand(60.0,ExecuteScript("rmg_main",OBJECT_SELF));
|
|
DelayCommand(70.0,ExecuteScript("slaver_and_slave",OBJECT_SELF));
|
|
//ExecuteScript("rts_build_data",OBJECT_SELF);
|
|
}
|