19 lines
557 B
Plaintext
19 lines
557 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName sc_testcrafting
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 04/06/16 21:22:30
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the player has the required skills
|
|
if(GetHasSkill(SKILL_CRAFT_ARMOR, GetPCSpeaker()))
|
|
return FALSE;
|
|
if(GetHasSkill(SKILL_CRAFT_WEAPON, GetPCSpeaker()))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|