14 lines
268 B
Plaintext
14 lines
268 B
Plaintext
#include "sd_forge_util"
|
|
int StartingConditional()
|
|
{
|
|
int iCond = 2;
|
|
|
|
int iResult;
|
|
object oPC = GetLastSpeaker();
|
|
|
|
iResult = GetLocalInt(oPC, "ForgeItemCount");
|
|
iResult = (iResult>=((Forge_GetCurrentPage(oPC) * 10) + iCond));
|
|
|
|
return iResult;
|
|
}
|