11 lines
250 B
Plaintext
11 lines
250 B
Plaintext
|
#include "sd_forge_util"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
int iCurrentPage = Forge_GetCurrentPage(GetLastSpeaker()) + 1;
|
||
|
|
||
|
iResult = ((iCurrentPage * 10) < (GetLocalInt(GetLastSpeaker(), "ForgeItemCount")));
|
||
|
return iResult;
|
||
|
}
|