<?php
$url='http://beeline.org/fortnite/ip.cgi?mode=text';
$x=file_get_contents($url);
$ax=explode("\n",$x);
echo "<pre>";
unset($ax[0]);
echo "/ip firewall address-list\n";
foreach($ax as $row){
$ip=trim($row);
if (strlen($ip)>0)
<------>echo "add list=fortnite address=$ip\n";
}
echo "\n";