Here php based on the billing api.
Suggest you run this localhost(on the server!) and make it unaccesable by everyone but you.
Ofcourse i used this for other perpuses hehe :P
PHP Code:
<?php
$Server_IP = '127.0.0.1';//IP
$m_idPlayer = (INT)000000;//player id start
$ItemID = 26456;//Item id
$ItemCnt = 99;//item count
$MaxPlayerId = 100000;
for($i = 0; $i < $MaxPlayerId ; $i ++)
{
$m_idPlayer ++;
$socket = socket_create(AF_INET, SOCK_STREAM, SOL_TCP);
$packet = pack("VVVVV", 01, $m_idPlayer, 0, $ItemID, $ItemCnt) . str_pad("IIIIIIIIIIIIIIIIIIIIII", 21, ' ') . pack("V", 1);
if(socket_connect($socket, $Server_IP, 29000))
{
socket_write($socket, $packet, strlen($packet));
}
socket_close($socket);
}
?>
Credits to yannickmamma for the base tough(I think it was him)