generated from Jaysyn/ModuleTemplate
16 lines
631 B
Plaintext
16 lines
631 B
Plaintext
/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
Forsettii's Quest Builder System.
|
|
Version 1.0
|
|
Created for Layonara Online
|
|
Forsettii Forsettii@yahoo.com
|
|
April 7, 2004
|
|
Give More Gold Script.
|
|
Variables: more_gold - Used in haggling to give more gold.
|
|
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
int iGold = GetLocalInt(OBJECT_SELF, "more_gold");
|
|
GiveGoldToCreature(oPC, iGold);
|
|
}
|