20 lines
489 B
Plaintext
20 lines
489 B
Plaintext
/****************************************************
|
|
Action Taken Script : Armor craft type selection
|
|
ats_at_cr_armor
|
|
|
|
Last Updated: August 25, 2002
|
|
|
|
***Ambrosia Tradeskill System***
|
|
Created by Mojo(Allen Sun)
|
|
|
|
This script sets the current craft type for a
|
|
player to armorcrafting.
|
|
****************************************************/
|
|
#include "ats_const_recipe"
|
|
#include "ats_inc_menu"
|
|
|
|
void main()
|
|
{
|
|
ATS_SetCurrentCraftType(GetPCSpeaker(), ATS_CRAFT_TYPE_ARMOR);
|
|
}
|