Files
HeroesStone_PRC8/_module/nss/steel.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

16 lines
219 B
Plaintext

void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
object oTarget;
oTarget = OBJECT_SELF;
AssignCommand(oTarget, ActionStartConversation(oPC, "takesteel"));
CreateItemOnObject("steel", oPC);
}