Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. if ($block[10] => 65){
  2. $ri = 1;
  3. $repeat = $block[10] / 64;
  4. $remainder = $block[10] % 64;
  5. while($ri <= $repeat){
  6. echo run_cmd("give ".$block[8]." ".$block[9]." ".$block[10]);
  7. $ri = $ri + 1;
  8. }
  9. echo run_cmd("give ".$block[8]." ".$block[9]." ".$remainder);
  10. }else{
  11. echo run_cmd("give ".$block[8]." ".$block[9]." ".$block[10]);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement