View Single Post
  #2  
Old 09-21-2016, 09:03 PM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 68,093
Dinocanid is on a distinguished road
Default

I'd like to help, but what problems are you having? Are you getting any error messages or anything? As for adding how much of an item a user has, you can use:

PHP Code:
$item "nameofitem"
                
$hasitem $mysidia->db->select("inventory", array("quantity"), "itemname ='{$item}' and owner='{$mysidia->user->username}'")->fetchColumn(); 
                if(
$hasitem){ 
                    
$document->add(new Comment("You have $hasitem {$item}!")); 
It will show as:
You have [itemamount] [itemname]!
Reply With Quote