Osrs ocl
From NWNWiki
osrs_ocl is a script used by OSRS when handling the OnClientLeave event.
/////////////////////////////////////////////////////////////////////////////
//
// file:
// osrs_ocl
//
// purpose:
// OnClientLeave event script.
//
/////////////////////////////////////////////////////////////////////////////
// the include file for Open Source Rule Set events
#include "osrs_inc"
/////////////////////////////////////////////////////////////////////////////
void main()
{
// determine what type of object is calling this script
int iCallingClass = osrs_GetCallerEventClass(OBJECT_SELF);
switch(iCallingClass)
{
///////////////////////////////// module
case I_OSRS_EVENT_CLASS_MODULE:
// Module::OnClientLeave Pre-event
if (!osrs_mo_ocl_pre())
{
return;
}
// Module::OnClientLeave event
if (!osrs_mo_ocl())
{
return;
}
// Module::OnClientLeave post-event
osrs_mo_ocl_post();
break;
}
}
