21 lines
663 B
Plaintext
21 lines
663 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: Name: farm_disp_sell
|
|
//:: Copyright (c) 2001 Bioware Corp.
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
Display the current sell price to the owner.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Adam Walenga
|
|
//:: Created On: September 7th, 2004
|
|
//:://////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
//Set the token for it.
|
|
SetCustomToken (602, IntToString (GetLocalInt (OBJECT_SELF, "Farm_Price")));
|
|
SetCustomToken (603, IntToString (GetLocalInt (OBJECT_SELF,
|
|
"Farm_Temp_Sell_Price")));
|
|
|
|
return TRUE; //Conditional.
|
|
}
|