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

22 lines
428 B
Plaintext

#include "tha_housing_cost"
#include "rr_persist"
void main()
{
object oPC = GetPCSpeaker();
int iGold = GetGold(oPC);
if(iGold >= MED_HOUSE_COST)
{
TakeGoldFromCreature(MED_HOUSE_COST,oPC,TRUE);
CreateItemOnObject("med_house_key",oPC);
SPI(oPC,"home_owner",TRUE);
}
else
FloatingTextStringOnCreature("You do not have enough gold for that!",oPC,FALSE);
return;
}