2f4063ce2e
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1757 fc73d0e0-1445-4013-8a0c-d673dee63da5
18 lines
382 B
C++
18 lines
382 B
C++
void bprint(float plev, string st, string s2){}
|
|
float PRINT_MEDIUM = 1;
|
|
#include "/../inventory.qc"
|
|
|
|
|
|
void() Invent_Draw =
|
|
{
|
|
local float i;
|
|
local float it;
|
|
local string itname;
|
|
|
|
for (i = 0; i < 16; i++)
|
|
{
|
|
it = getstati(32+i);
|
|
itname = GetItemName(ToIID(it));
|
|
drawstring('0 32 0' + (i * '0 8 0'), strcat(itname, " (", ftos(ToStatus(it)), ")"), '8 8 0', '1 1 1', 1);
|
|
}
|
|
};
|