PWE_PRC8/_module/nss/ats_at_mat_prev.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

34 lines
946 B
Plaintext

/****************************************************
Actions Taken Script : Previous Display
ats_at_cr_prev
Last Updated: August 15 2002
***Ambrosia Tradeskill System***
Created by Mojo(Allen Sun)
This script is responsible for advancing the menu
to the next display.
****************************************************/
#include "ats_inc_menu_mat"
void main()
{
object oPlayer = GetPCSpeaker();
int iArraySize = ATS_GetMaterialArraySize(oPlayer);
int iCurrentIndex = ATS_GetMaterialArrayIndex(oPlayer);
int iMakeableCount = ATS_GetMaterialMakeableCount(oPlayer);
if(iMakeableCount > 0)
{
int iCountAdjustment = iMakeableCount % 6;
if(iCountAdjustment == 0)
iCountAdjustment = 6;
ATS_SetMaterialMakeableCount(oPlayer, iMakeableCount - iCountAdjustment - 6);
}
ATS_SetMaterialArrayIndex(oPlayer, GetLocalInt(oPlayer, "ats_prev_craftmat_arrayindex"));
}