@@ -56,36 +56,6 @@ int NWNX_Store_GetBlackMarket(object oStore);
5656// / @param nValue TRUE/FALSE.
5757void NWNX_Store_SetBlackMarket (object oStore, int nValue);
5858
59- // / @brief Return the gold amount
60- // / @param oStore The store object.
61- // / @return status, -1 on error
62- int NWNX_Store_GetGold (object oStore);
63-
64- // / @brief Set the gold amount
65- // / @param oStore The store object.
66- // / @param nValue Amount
67- void NWNX_Store_SetGold (object oStore, int nValue);
68-
69- // / @brief Return the identify cost
70- // / @param oStore The store object.
71- // / @return status, -1 on error
72- int NWNX_Store_GetIdentifyCost (object oStore);
73-
74- // / @brief Set the identify cost
75- // / @param oStore The store object.
76- // / @param nValue Cost
77- void NWNX_Store_SetIdentifyCost (object oStore, int nValue);
78-
79- // / @brief Return the MaxBuyPrice amount
80- // / @param oStore The store object.
81- // / @return status, -1 on error
82- int NWNX_Store_GetMaxBuyPrice (object oStore);
83-
84- // / @brief Set the MaxBuyPrice amount
85- // / @param oStore The store object.
86- // / @param nValue Amount
87- void NWNX_Store_SetMaxBuyPrice (object oStore, int nValue);
88-
8959// / @}
9060
9161int NWNX_Store_GetIsRestrictedBuyItem (object oStore, int nBaseItem)
@@ -158,45 +128,3 @@ void NWNX_Store_SetBlackMarket(object oStore, int nValue)
158128 NWNXPushObject (oStore);
159129 NWNXCall (NWNX_Store, " SetBlackMarket" );
160130}
161-
162- int NWNX_Store_GetGold (object oStore)
163- {
164- NWNXPushObject (oStore);
165- NWNXCall (NWNX_Store, " GetGold" );
166- return NWNXPopInt ();
167- }
168-
169- void NWNX_Store_SetGold (object oStore, int nValue)
170- {
171- NWNXPushInt (nValue);
172- NWNXPushObject (oStore);
173- NWNXCall (NWNX_Store, " SetGold" );
174- }
175-
176- int NWNX_Store_GetIdentifyCost (object oStore)
177- {
178- NWNXPushObject (oStore);
179- NWNXCall (NWNX_Store, " GetIdentifyCost" );
180- return NWNXPopInt ();
181- }
182-
183- void NWNX_Store_SetIdentifyCost (object oStore, int nValue)
184- {
185- NWNXPushInt (nValue);
186- NWNXPushObject (oStore);
187- NWNXCall (NWNX_Store, " SetIdentifyCost" );
188- }
189-
190- int NWNX_Store_GetMaxBuyPrice (object oStore)
191- {
192- NWNXPushObject (oStore);
193- NWNXCall (NWNX_Store, " GetMaxBuyPrice" );
194- return NWNXPopInt ();
195- }
196-
197- void NWNX_Store_SetMaxBuyPrice (object oStore, int nValue)
198- {
199- NWNXPushInt (nValue);
200- NWNXPushObject (oStore);
201- NWNXCall (NWNX_Store, " SetMaxBuyPrice" );
202- }
0 commit comments