Posts: 613
Threads: 127
Joined: Feb 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
Posts: 5,061
Threads: 548
Joined: Oct 2008
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;
}
Posts: 613
Threads: 127
Joined: Feb 2014
Got the answer...dammit. :P
Posts: 116
Threads: 15
Joined: Apr 2013
(12-02-2014, 10:49 PM)Miscr3ant Wrote: Got the answer...dammit. :P
Yeah, dammit. :D