#326 disable ability to buy items from merchant

クローズ
3 年 前image によって開かれました · 2 コメント
image3 年 前 にコメントしました

This will disable the 'buy' option of an item on a merchant if in the item script:

function buy_display_flags(Item, Spawn)
    return 128
end

same can be done with buyback items:

function buyback_display_flags(Item, Spawn)
    return 128
end
This will disable the 'buy' option of an item on a merchant if in the item script: ``` function buy_display_flags(Item, Spawn) return 128 end ``` same can be done with buyback items: ``` function buyback_display_flags(Item, Spawn) return 128 end ```
image3 年 前 にコメントしました
共同編集者

![](https://cdn.discordapp.com/attachments/684934458738212962/823300826205257788/unknown.png)
image3 年 前 にコメントしました
共同編集者

based on these flags, as far as I know other than no buy and no buyback (why would you use no buyback on the main buy page I don't know).. are the only ones available. Rest are for the sales tab

#define DISPLAY_FLAG_RED_TEXT           1 // old clients
#define DISPLAY_FLAG_NO_GUILD_STATUS    8
#define DISPLAY_FLAG_NO_BUYBACK         16
#define DISPLAY_FLAG_NOT_FOR_SALE       64
#define DISPLAY_FLAG_NO_BUY             128 // disables buying on merchant 'buy' list
based on these flags, as far as I know other than no buy and no buyback (why would you use no buyback on the main buy page I don't know).. are the only ones available. Rest are for the sales tab ``` #define DISPLAY_FLAG_RED_TEXT 1 // old clients #define DISPLAY_FLAG_NO_GUILD_STATUS 8 #define DISPLAY_FLAG_NO_BUYBACK 16 #define DISPLAY_FLAG_NOT_FOR_SALE 64 #define DISPLAY_FLAG_NO_BUY 128 // disables buying on merchant 'buy' list ```
image この課題がコミット 3 年 前 から参照されました
image 3 年 前 に閉じられました
会話に参加するには サインイン してください。
読み込み中…
キャンセル
保存
まだコンテンツがありません