20 lines
497 B
Plaintext
20 lines
497 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Vanilla NWN On Rested
|
||
|
//:: nw_ai_onrested
|
||
|
//:: Copyright (c) 2002 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Determines the course of action to be taken
|
||
|
after having just rested.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Don Moar
|
||
|
//:: Created On: April 28, 2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
// enter desired behaviour here
|
||
|
|
||
|
return;
|
||
|
|
||
|
}
|