The Coder Posted August 16, 2012 Posted August 16, 2012 Hey, can someone give me a few quick steps into creating a randomizer item which I could add to Donator Packs? Thanks. (: Quote
rulerofzu Posted August 16, 2012 Posted August 16, 2012 If you have specific item numbers then $num = array(100, 175, 252); $item = $num[array_rand($num)]; return $item; Would do it. Quote
newttster Posted August 16, 2012 Posted August 16, 2012 SELECT * FROM [TABLE] ORDER BY RAND() LIMIT 1; Or what ruler said as well. Quote
The Coder Posted August 16, 2012 Author Posted August 16, 2012 A "randomizer" item? Care to elaborate? Its a item that when used has a variety of prizes, e.g from money ranged 3mill to 10 mill, crystals ranged from 50 crystals to 200 crystals and so on. :) If you don't have this item, you should create it, it will grab in so many donators. :) And thanks guys, I see what your trying to do, you mean when the DP is credited to the user, you will get a random prize along with it, correct if I am wrong? But I need an item which does this. :) Quote
Seker Posted August 16, 2012 Posted August 16, 2012 On the longer side of things, create a new item type. Then, just add a block of code to itemuse.php giving random outcomes. Quote
mixmaster Posted August 16, 2012 Posted August 16, 2012 Cool, Many thanks Seker. +1 :) nm ---------- Quote
newttster Posted August 17, 2012 Posted August 17, 2012 Something like this" if ($dpitem==whatever) $given=rand(1,4); { if($given==1) { $gain=rand(10,10 item_add($userid,itemx,$gain); echo"You were just given {$gain} of itemx."; } if($given==2) { $gain=rand(1,50) item_add($userid,itembb,$gain); echo"You were just given a {$gain} of itemb."; } if($given==3) { $gain=rand(10000,50000) $db->query("UPDATE users SET money=money+$gain WHERE userid=$userid"); echo"You were just given ${$gain} money."; } if($given==4) { $gain=rand(100,200) $db->query("UPDATE users SET crystals=crystals+$gain WHERE userid=$userid"); echo"You were just given ${$gain} money."; } } 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.