Initial upload
Initial upload
This commit is contained in:
33
_module/nss/scribe_descption.nss
Normal file
33
_module/nss/scribe_descption.nss
Normal file
@@ -0,0 +1,33 @@
|
||||
|
||||
void main()
|
||||
{
|
||||
// Vars
|
||||
object oPC = GetPCSpeaker(), oListener = OBJECT_SELF;
|
||||
object o = GetNearestObjectByTag("describer", oListener);
|
||||
string sNN = GetLocalString(oListener, "NN");
|
||||
string sID = GetLocalString(oPC, "ONID");
|
||||
object oItem;
|
||||
|
||||
oItem = GetFirstItemInInventory(o);
|
||||
|
||||
//Let's find the item and set the description!
|
||||
while(GetIsObjectValid(oItem))
|
||||
{
|
||||
SetDescription(oItem, sNN, TRUE);
|
||||
//Return the item!
|
||||
AssignCommand(o, ActionGiveItem(oItem, oPC));
|
||||
//Reset the chest and the PC.
|
||||
SetLocalInt(oPC, "DESC_USER", 0);
|
||||
SetLocalInt(o, "IN_USE", 0);
|
||||
|
||||
oItem = GetNextItemInInventory(o);
|
||||
}
|
||||
|
||||
effect eVis = EffectVisualEffect(VFX_IMP_GOOD_HELP, FALSE);
|
||||
ApplyEffectToObject(DURATION_TYPE_INSTANT, eVis, o, 0.0f);
|
||||
|
||||
SetPlotFlag(oListener, FALSE);
|
||||
DestroyObject(oListener, 0.0f);
|
||||
|
||||
//Script End
|
||||
}
|
Reference in New Issue
Block a user