mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Also: - Fixed typo Z_fill(e)TradeTitle - Fixed "not enough slots to accept change" message shows when "not enough money" should show instead
13 lines
313 B
Plaintext
13 lines
313 B
Plaintext
/**
|
|
* [_text] call Z_fillTradeTitle
|
|
*
|
|
* @param String _this select 0 (_text) -> The text you want in the label.
|
|
*
|
|
* Changes the indication of where you are selling/buying from in the trade window.
|
|
**/
|
|
private "_text";
|
|
#include "defines.hpp"
|
|
|
|
_text = _this select 0;
|
|
ctrlSetText [Z_AT_CONTAINERINDICATOR, _text];
|