Jump to content
MakeWebGames

Recommended Posts

Posted

I used a mod from here that looks great... drop down windows for items in items market..

BUT to have to click through all 30 categories to find out theres nothing for sale is a drag..

Any suggestion for a way to have an event, like hosp or jail, to show the number of added items, so players know whether or not to waste their time clicking categories...

(note at this time I have five players... hahahaha)

Posted

So what, do you mean like it one massive table in a way? Like in one column name, info, category and price?

That would take a lot of scrolling though? Maybe if you could make it like on some things, when you click the top of the colum, is alphabetically or numeretically (lol) listed :)

Posted

See as it stands its drop down menus on items... in the mod I ran from here with....

from your inventory you can put items up for sale... (I'll probably figure this out...I ask first and then dwell on it and usually get lucky...like and idiot savant) in that action of clicking to place an item up for sale... on the items page an event counter could list the number of items in item market (12) just once... the over all number... like jail and hosp does in the menu... this way players know if no items exist in drop down and they can save time checking every item category to find nothing.. perhaps after a person has thousands of players there are always items... I wont see that large of a following so....

Posted

Something like

$getItems = $db->query('SELECT COUNT(`itemID`) FROM `itemMarket`');
if($db->num_rows($getItems)) {
   $itemCount = $db->fetch_single($getItems);
} else {
   $itemCount = 0;
}

echo 'Current items for sale in the item market ('.number_format($itemCount).')';

You'll have to change the query information to match with your current item market.

One thing, I really did misread your title, I thought your item market needed more pizzas!

Guest mr_shuuu
Posted

response

pizza's hummm they could cause indigestion... could scold and even explode..... yeahhhh why didnt I think of that

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...