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