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

26 lines
649 B
Plaintext

/****************************************************
Starting Condition Script : Train Jewelcrafting
ats_sc_train_jc
Last Updated: 16 August 2002
***Ambrosia Tradeskill System***
Created by Mojo(Allen Sun)
Assisted by Pelemele Malef'carum (Shawn Perreault)
This script is responsible for checking to see the
player has enough gold available to train in
bowyering.
****************************************************/
int StartingConditional()
{
object oPlayer = GetPCSpeaker();
if(GetGold(oPlayer) >= 50)
{
TakeGoldFromCreature(50, oPlayer);
return TRUE;
}
else
return FALSE;
}