jeeppimp Posted March 4, 2008 Posted March 4, 2008 Trying to add (Will's) to my Lucky Boxes when picked! I want it to be sent dir to inventory, can some one show me how please? case 4: $will=rand(1,5); print "Outcome (gained {$will} will)"; $db->query("UPDATE users SET will=will+{$will} where userid=$userid"); break; Quote
_Eagle Posted March 4, 2008 Posted March 4, 2008 Re: about Lucky Boxes? Trying to add (Will's) to my Lucky Boxes when picked! I want it to be sent dir to inventory, can some one show me how please? case 4: $will=rand(1,5); print "Outcome (gained {$will} will)"; $db->query("UPDATE users SET will=will+{$will} where userid=$userid"); break; Well, whatever your Will item ID is, you would change the query to... case 4: $will=rand(1,5); print"Outcome(gained ".$will." Will Potions"; $db->query("INSERT INTO inventory VALUES('',willitemnr,$userid,$will)"); break; Just change the 'willitemnr' to your Will Item ID and you should be all set. Quote
jeeppimp Posted March 5, 2008 Author Posted March 5, 2008 Re: about Lucky Boxes? _Eagle thanks a million! Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.