Alangara_PRC8/_module/nss/blackringrod.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

24 lines
394 B
Plaintext

void main()
{
object oPC = GetItemActivator();
if (!GetIsPC(GetItemActivatedTarget())
){
SendMessageToPC(GetItemActivator(), "Improper use of item!");
return;}
if (GetGold(oPC) >= 100000)
{
oPC = GetItemActivatedTarget();
CreateItemOnObject("blackguildring", oPC);
oPC = GetItemActivator();
AssignCommand(oPC, TakeGoldFromCreature(99999, oPC, TRUE));
}
}