17 lines
528 B
Plaintext
17 lines
528 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name: farm_cadd_100
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Add 100 gold pieces to the current sell price.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Adam Walenga
|
|
//:: Created On: September 7th, 2004
|
|
//:://////////////////////////////////////////////
|
|
void main()
|
|
{
|
|
SetLocalInt (OBJECT_SELF, "Farm_Temp_Sell_Price", GetLocalInt (OBJECT_SELF,
|
|
"Farm_Temp_Sell_Price") + 100);
|
|
}
|