Advertisement
jmarler

Untitled

Apr 28th, 2013
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.83 KB | None | 0 0
  1. cat original/acrobatics.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > acrobatics.mcmmo
  2. cat original/all.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > all.mcmmo
  3. cat original/archery.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > archery.mcmmo
  4. cat original/axes.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > axes.mcmmo
  5. cat original/excavation.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > excavation.mcmmo
  6. cat original/fishing.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > fishing.mcmmo
  7. cat original/fixem | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > fixem
  8. cat original/herbalism.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > herbalism.mcmmo
  9. cat original/mining.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > mining.mcmmo
  10. cat original/original | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > original
  11. cat original/repair.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > repair.mcmmo
  12. cat original/swords.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > swords.mcmmo
  13. cat original/taming.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > taming.mcmmo
  14. cat original/unarmed.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > unarmed.mcmmo
  15. cat original/woodcutting.mcmmo | perl -n -e '($user, $stat) = split(/:/); $newstat = int((($stat/1000) * 99)); if ($newstat < 1) { $newstat=1; } print $user . ":" . $newstat. "\n";' > woodcutting.mcmmo
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement