Advertisement
fagervan

fortnite.php

Sep 26th, 2019
3,779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php
  2. $url='http://beeline.org/fortnite/ip.cgi?mode=text';
  3. $x=file_get_contents($url);
  4. $ax=explode("\n",$x);
  5. echo "<pre>";
  6. unset($ax[0]);
  7. echo "/ip firewall address-list\n";
  8. foreach($ax as $row){
  9.     $ip=trim($row);
  10.     if (strlen($ip)>0)
  11. <------>echo "add list=fortnite address=$ip\n";
  12. }
  13. echo "\n";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement