API GetStationMerchInfo

From Vendetta Lua
Revision as of 22:01, 25 January 2009 by Chefkoch (talk | contribs) (split)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

GetStationMerchInfo

Definition: GetStationMerchInfo(int merchid) -> { neededlevels = {int l1 .. l5}, int price, string longdesc, float mass, string sortgroup, int volume, string extendeddesc, string type, string meshfile, bool usable, int itemid, string icon }
Description:
get info about items this station sells
Arguments:
merchid id of sold items (1-n), where n = GetNumStationMerch()
Example:
<source lang="lua"> for item = 1, GetNumStationMerch() do

   local haveitem = GetStationMerchInfo(item);
   console_print("Station has item: ".. haveitem.name);

end </source>