PWE_PRC8/_module/nss/ats_at_train_ta.nss
Jaysyn904 ee1dc35889 Initial Commit
Initial Commit
2025-04-03 10:29:41 -04:00

30 lines
778 B
Plaintext

/****************************************************
Action Taken Script : Train Blacksmith
ats_at_train_bs
Last Updated: August 25, 2002
***Ambrosia Tradeskill System***
Created by Mojo(Allen Sun)
This script belongs to the conversation file for
the master blacksmith npc. It is used to train
a player in the basics of blacksmithing.
****************************************************/
#include "ats_inc_common"
#include "ats_const_skill"
#include "ats_const_common"
#include "ats_const_recipe"
#include "ats_config"
#include "ats_inc_skill"
void main()
{
object oPlayer = GetPCSpeaker();
object oBook = CreateItemOnObject("ats_book_tailor");
ActionGiveItem(oBook, oPlayer);
ATS_RaiseTradeskill(oPlayer, CSTR_SKILLNAME_TAILOR, 5);
}