Thay - Realm of the Red Wizards
PC Merchants, Lore, and Appraise - Printable Version

+- Thay - Realm of the Red Wizards (https://thaypw.com)
+-- Forum: Meta (https://thaypw.com/forumdisplay.php?fid=3)
+--- Forum: The Tavern (https://thaypw.com/forumdisplay.php?fid=10)
+---- Forum: [Archived - The Tavern] (https://thaypw.com/forumdisplay.php?fid=63)
+---- Thread: PC Merchants, Lore, and Appraise (/showthread.php?tid=2589)



PC Merchants, Lore, and Appraise - Miscr3ant - 12-02-2014

Based on this tidbit below, is that a natural Lore, or adjusted? And if natural, is Skill Focus: Lore considered natural? Also, what about Bard levels; counts...don't count?

6. Set the price the merchant will charge to identify items. For this option to be enabled, you (the merchant owner) will need a Lore skill rank of 15 or higher


RE: PC Merchants, Lore, and Appraise - Balanor - 12-02-2014

Here's the script. I'll let you all woprk on your scripting knowledge and figure out the answers yourselves... :D

Code:
//::///////////////////////////////////////////////
//:: Merchants of Borgo 1.4
//:: mob_sc_has_lore
//:: Copyright (c) 2007 CarfaxAbbey.net
//:://////////////////////////////////////////////
/*
    Starting Conditional that determines whether
    or not the owner of the store has enough
    Lore skill to modify identification.
*/
//:://////////////////////////////////////////////
//:: Revised By: Diavlen ([email protected])
//:: Created On: October 8, 2007
//:: Revised On: December 29, 2007
//:://////////////////////////////////////////////
#include "mob_lib"

int StartingConditional()
{
  object oPC = GetPCSpeaker();
  if (REQUIRE_LORE_4_ID)   {
    int nLore = GetSkillRank(SKILL_LORE, oPC, TRUE);
    if (nLore < MIN_LORE) return FALSE;
    else return TRUE;
  }
  else return TRUE;
}



RE: PC Merchants, Lore, and Appraise - Miscr3ant - 12-02-2014

Got the answer...dammit. :P


RE: PC Merchants, Lore, and Appraise - WillowWhite - 12-03-2014

(12-02-2014, 10:49 PM)Miscr3ant Wrote: Got the answer...dammit. :P

Yeah, dammit. :D