I've got those lines in my file. $your_powerkills=round($powerkill);$your_steal=round($pmp[10]*.15); $his_powerkills=round($powerkill2);$his_steal=round($pimp[14]*.15); Code (markup): What I want is: if($game_info['roundstyle'] == small) Code (markup): THEN $your_powerkills=round($powerkill);$your_steal=round($pmp[10]*.15)*3; $his_powerkills=round($powerkill2);$his_steal=round($pimp[14]*.15)*3; Code (markup): Will be used (notice I added *3 in the end) BUT if roundstyle is not smallthen the lines without *3 will work as normal.. So if the roundstyle == smallthen it will use the lines with *3 and if not it will use without them. Please help me quickly. I'll send you $5 on paypal if you get it correct for me
if($game_info['roundstyle'] == "small") { $your_powerkills=round($powerkill);$your_steal=round($pmp[10]*.15)*3; $his_powerkills=round($powerkill2);$his_steal=round($pimp[14]*.15)*3; } else { $your_powerkills=round($powerkill);$your_steal=round($pmp[10]*.15); $his_powerkills=round($powerkill2);$his_steal=round($pimp[14]*.15); }