Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
20 lines
339 B
Plaintext
20 lines
339 B
Plaintext
#include "database_inc"
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
object pres5PC = GetPCSpeaker();
|
|
|
|
if(GetGold(pres5PC)>4999)
|
|
{
|
|
TakeGoldFromCreature(5000, pres5PC, TRUE);
|
|
SetLocalInt(pres5PC, "X1_AllowShadow", 0);
|
|
DBSetPrestigePermisson (pres5PC,CLASS_TYPE_SHADOWDANCER);
|
|
SendMessageToPC(pres5PC, "You have unlocked the Shadowdancer Prestige Class");
|
|
}
|
|
else
|
|
{
|
|
}
|
|
}
|