11 lines
252 B
Plaintext
11 lines
252 B
Plaintext
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sSpoken = GetMatchedSubstring(0);
|
|
int nPrice = StringToInt(sSpoken);
|
|
string sPrice = IntToString(nPrice);
|
|
|
|
SetLocalInt(oPC, "HousePrice", nPrice);
|
|
SetCustomToken(822, sPrice);
|
|
}
|