Battledale_PRC8/_module/nss/ah_library_scale.nss
Jaysyn904 7b9e44ebbb Initial upload
Initial upload.  PRC8 has been added.  Module compiles, PRC's default AI & treasure scripts have been integrated.  Started work on top hak for SLA / Ability / Scripting modifications.
2024-03-11 23:44:08 -04:00

34 lines
1.0 KiB
Plaintext

void main()
{
object oObject=GetInventoryDisturbItem();
object oPC=GetLastDisturbed();
object oInv;
object oGoal=GetNearestObjectByTag("ah_library_uc_gs", OBJECT_SELF, 1);
int nWeight=GetWeight(oObject);
int nTotal=GetWeight(OBJECT_SELF);
int nGoal=GetLocalInt(oGoal,"ah_target_weight");
object oDoor=GetNearestObjectByTag("ah_weight_door", OBJECT_SELF, 1);
//string sTotal=IntToString(nTotal);
//location lLoc=GetLocation(GetWaypointByTag("trito_creaturespawn_wp"));
//object oObject2=GetFirstItemInInventory(oPedestal);
// If the using creature hasnt got enough intelligence, dont let them use the scales
if ((GetAbilityScore(oPC, ABILITY_INTELLIGENCE) <= 9))
{
AssignCommand(oPC, ActionSpeakString("*Scratches head and looks confused at the scales*", TALKVOLUME_TALK));
}
if ((GetInventoryDisturbType() == INVENTORY_DISTURB_TYPE_ADDED))
{
ActionSpeakString("The scale shows a weight of" + IntToString(nTotal) + "lbs", TALKVOLUME_TALK);
}
if ((nTotal) == (nGoal))
{
SetLocked(oDoor, FALSE);
ActionOpenDoor(oDoor);
}
}