 |
|
Member
|

08-30-2019
, 12:22
Re: [HELP]GunXPMod_Shop How To set Access Weapons in ul list :(
|
#3
|
[FONT="Arial Black"][/FONT
public display_items(id)
{
new szMotd[2048], szTitle[64], iPos = 0
format(szTitle, 63, "Items List")
iPos += format(szMotd[iPos], 2047-iPos, "<html><head><style type=^"text/css^">pre{color:#FFB000;}body{background:#000 000;margin-left:8px;margin-top:0px;}</style></head><pre><body>")
iPos += format(szMotd[iPos], 2047-iPos, "^n^n<b>%s</b>^n^n", szTitle)
iPos += format(szMotd[iPos], 2047-iPos, "# Item Name | Item Description | Item Cost^n")
for(new i = 1; i <= g_numberofitems; i++)
{
iPos += format(szMotd[iPos], 2047-iPos, "%d. %s | %s | %d^n", i, g_itemname[i], g_itemdesc[i], g_itemcost[i])
}
|
|
|
|