My initial plan was to port the Homunculus system from Live 502 to ClassicAden 502. But, when the interface for Homunculus is enabled, it has some hardcoded function that tries to load the dat files which leads to a crash since those files dont exist in ClassicAden. I was hoping to do some injection hoping, forcing the client to load the files.
Question
BBanHammer
hello!
i am trying to give item via l2j telnet.. the problem is that sometime it works, but other times it doesnt (allways same command)
i never actually worked with l2j before so i really don't see where the problem is, if some1 does, please tell me
function giveItem($player) { global $CONFIG; $usetelnet = fsockopen($CONFIG['telnet_ip'],$CONFIG['telnet_port'], $errno, $errstr, 30); if($usetelnet) { $command = 'give '.$player.' '.$CONFIG['reward_item_id'].' '.$CONFIG['reward_item_count']; echo "<".$command."><br />"; fputs($usetelnet, $CONFIG['telnet_pass']); fputs($usetelnet, "\r\n"); fputs($usetelnet, $command); fputs($usetelnet, "\r\n"); fputs($usetelnet, "exit\r\n"); fclose($usetelnet); return true; } return false; }the code gives sometime SocketException.. from what i have read it's caused by misformed command line, anyone?
0 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now