MasterACE14 Posted October 27, 2007 Share Posted October 27, 2007 Evening Everyone, I have a simple equation, and I want to change it to what a friend suggested. and I'm hoping you lot will be able to help me here's the script: <?php $taken_money = (($player_strikeaction * $used_ammo) / 10); ?> heres what my friend said: try to use strike action * amount of used ammo *3/4 or 1 (it'd be random how much u'd get, anywhere from 3/4 of what amount of money someone has outside to 100%) short and sweet. Regards ACE Link to comment https://forums.phpfreaks.com/topic/74975-solved-a-simple-equation-now-time-to-add-the-randomness-d/ Share on other sites More sharing options...
Barand Posted October 27, 2007 Share Posted October 27, 2007 $randval = rand(75,100)/100; $result = $strikeaction * $at * $randval; Link to comment https://forums.phpfreaks.com/topic/74975-solved-a-simple-equation-now-time-to-add-the-randomness-d/#findComment-379161 Share on other sites More sharing options...
MasterACE14 Posted October 27, 2007 Author Share Posted October 27, 2007 Works flawlessly, Thanks mate Regards ACE Link to comment https://forums.phpfreaks.com/topic/74975-solved-a-simple-equation-now-time-to-add-the-randomness-d/#findComment-379165 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.