16 lines
490 B
Plaintext
16 lines
490 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: FileName tru_rez_tg
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Script Wizard
|
||
|
//:: Created On: 1/4/2003 2:05:32 PM
|
||
|
//:://////////////////////////////////////////////
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
// Remove some gold from the player
|
||
|
object oMod=GetModule();
|
||
|
int rezcost=GetLocalInt(oMod,"TRUEREZCOST");
|
||
|
TakeGoldFromCreature(rezcost, GetPCSpeaker(), TRUE);
|
||
|
}
|