12 lines
364 B
Plaintext
12 lines
364 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oBBS = GetLocalObject(GetModule(), "BBS_" + GetTag(OBJECT_SELF));
|
|
int PageSize = GetLocalInt(oBBS, "PageSize");
|
|
int PageIndex = GetLocalInt(GetPCSpeaker(), "PageIndex");
|
|
int TotalItems = GetCampaignInt("DB_BBS",GetTag(oBBS) + "#C");
|
|
if (TotalItems > (PageIndex + 1) * PageSize) {
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|