NWNDS/nwnds_module/ka_givesapphire.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -04:00

20 lines
341 B
Plaintext

int nInt;
void main()
{
object oPC = GetPCSpeaker();
if (GetGold(oPC) >= 50000)
{
AssignCommand(oPC, TakeGoldFromCreature(50000, oPC, TRUE));
CreateItemOnObject("largefinelycutsa", oPC);
}
else
{
AssignCommand(GetObjectByTag("Korik"), ActionSpeakString("Do not try and cheat me fool! I am wise to such tricks!"));
}
}